├── .gitignore ├── ==16.2.0 ├── Include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── accu.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── internal │ │ ├── ceval.h │ │ ├── condvar.h │ │ ├── context.h │ │ ├── gil.h │ │ ├── hamt.h │ │ ├── hash.h │ │ ├── import.h │ │ ├── mem.h │ │ ├── pygetopt.h │ │ ├── pystate.h │ │ └── warnings.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── metagrammar.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── pgen.h │ ├── pgenheaders.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pyatomic.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h ├── Lib │ ├── __future__.py │ ├── __pycache__ │ │ ├── __future__.cpython-37.pyc │ │ ├── _bootlocale.cpython-37.pyc │ │ ├── _collections_abc.cpython-37.pyc │ │ ├── _weakrefset.cpython-37.pyc │ │ ├── abc.cpython-37.pyc │ │ ├── base64.cpython-37.pyc │ │ ├── bisect.cpython-37.pyc │ │ ├── codecs.cpython-37.pyc │ │ ├── copy.cpython-37.pyc │ │ ├── copyreg.cpython-37.pyc │ │ ├── enum.cpython-37.pyc │ │ ├── fnmatch.cpython-37.pyc │ │ ├── functools.cpython-37.pyc │ │ ├── genericpath.cpython-37.pyc │ │ ├── hashlib.cpython-37.pyc │ │ ├── heapq.cpython-37.pyc │ │ ├── hmac.cpython-37.pyc │ │ ├── imp.cpython-37.pyc │ │ ├── io.cpython-37.pyc │ │ ├── keyword.cpython-37.pyc │ │ ├── linecache.cpython-37.pyc │ │ ├── locale.cpython-37.pyc │ │ ├── ntpath.cpython-37.pyc │ │ ├── operator.cpython-37.pyc │ │ ├── os.cpython-37.pyc │ │ ├── posixpath.cpython-37.pyc │ │ ├── random.cpython-37.pyc │ │ ├── re.cpython-37.pyc │ │ ├── reprlib.cpython-37.pyc │ │ ├── shutil.cpython-37.pyc │ │ ├── site.cpython-37.pyc │ │ ├── sre_compile.cpython-37.pyc │ │ ├── sre_constants.cpython-37.pyc │ │ ├── sre_parse.cpython-37.pyc │ │ ├── stat.cpython-37.pyc │ │ ├── struct.cpython-37.pyc │ │ ├── tarfile.cpython-37.pyc │ │ ├── tempfile.cpython-37.pyc │ │ ├── token.cpython-37.pyc │ │ ├── tokenize.cpython-37.pyc │ │ ├── types.cpython-37.pyc │ │ ├── warnings.cpython-37.pyc │ │ └── weakref.cpython-37.pyc │ ├── _bootlocale.py │ ├── _collections_abc.py │ ├── _dummy_thread.py │ ├── _weakrefset.py │ ├── abc.py │ ├── base64.py │ ├── bisect.py │ ├── codecs.py │ ├── collections │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── abc.cpython-37.pyc │ │ └── abc.py │ ├── copy.py │ ├── copyreg.py │ ├── distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ └── distutils.cfg │ ├── encodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── aliases.cpython-37.pyc │ │ │ ├── cp1252.cpython-37.pyc │ │ │ ├── cp437.cpython-37.pyc │ │ │ ├── idna.cpython-37.pyc │ │ │ ├── latin_1.cpython-37.pyc │ │ │ ├── mbcs.cpython-37.pyc │ │ │ ├── utf_16_be.cpython-37.pyc │ │ │ ├── utf_16_le.cpython-37.pyc │ │ │ └── utf_8.cpython-37.pyc │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1125.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp273.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp65001.py │ │ ├── cp720.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp858.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── gbk.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_t.py │ │ ├── koi8_u.py │ │ ├── kz1048.py │ │ ├── latin_1.py │ │ ├── mac_arabic.py │ │ ├── mac_centeuro.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── oem.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── unicode_internal.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ ├── enum.py │ ├── fnmatch.py │ ├── functools.py │ ├── genericpath.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── imp.py │ ├── importlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── abc.cpython-37.pyc │ │ │ ├── machinery.cpython-37.pyc │ │ │ └── util.cpython-37.pyc │ │ ├── _bootstrap.py │ │ ├── _bootstrap_external.py │ │ ├── abc.py │ │ ├── machinery.py │ │ ├── resources.py │ │ └── util.py │ ├── io.py │ ├── keyword.py │ ├── linecache.py │ ├── locale.py │ ├── no-global-site-packages.txt │ ├── ntpath.py │ ├── operator.py │ ├── orig-prefix.txt │ ├── os.py │ ├── posixpath.py │ ├── random.py │ ├── re.py │ ├── reprlib.py │ ├── rlcompleter.py │ ├── shutil.py │ ├── site-packages │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-37.pyc │ │ ├── easy_install.py │ │ ├── pip-19.0.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __main__.cpython-37.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── build_env.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locations.cpython-37.pyc │ │ │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ │ │ ├── pyproject.cpython-37.pyc │ │ │ │ │ ├── resolve.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── autocompletion.cpython-37.pyc │ │ │ │ │ │ ├── base_command.cpython-37.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-37.pyc │ │ │ │ │ │ ├── main_parser.cpython-37.pyc │ │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ │ └── status_codes.cpython-37.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── completion.cpython-37.pyc │ │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ ├── hash.cpython-37.pyc │ │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ │ ├── list.cpython-37.pyc │ │ │ │ │ │ ├── search.cpython-37.pyc │ │ │ │ │ │ ├── show.cpython-37.pyc │ │ │ │ │ │ ├── uninstall.cpython-37.pyc │ │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index.py │ │ │ │ ├── locations.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── candidate.cpython-37.pyc │ │ │ │ │ │ ├── format_control.cpython-37.pyc │ │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ │ └── link.cpython-37.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ └── prepare.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── constructors.cpython-37.pyc │ │ │ │ │ │ ├── req_file.cpython-37.pyc │ │ │ │ │ │ ├── req_install.cpython-37.pyc │ │ │ │ │ │ ├── req_set.cpython-37.pyc │ │ │ │ │ │ ├── req_tracker.cpython-37.pyc │ │ │ │ │ │ └── req_uninstall.cpython-37.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ │ ├── deprecation.cpython-37.pyc │ │ │ │ │ │ ├── encoding.cpython-37.pyc │ │ │ │ │ │ ├── filesystem.cpython-37.pyc │ │ │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ │ │ ├── hashes.cpython-37.pyc │ │ │ │ │ │ ├── logging.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ │ ├── outdated.cpython-37.pyc │ │ │ │ │ │ ├── packaging.cpython-37.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-37.pyc │ │ │ │ │ │ ├── temp_dir.cpython-37.pyc │ │ │ │ │ │ ├── typing.cpython-37.pyc │ │ │ │ │ │ └── ui.cpython-37.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ └── ui.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── bazaar.cpython-37.pyc │ │ │ │ │ │ ├── git.cpython-37.pyc │ │ │ │ │ │ ├── mercurial.cpython-37.pyc │ │ │ │ │ │ └── subversion.cpython-37.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ ├── distro.cpython-37.pyc │ │ │ │ ├── ipaddress.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ ├── retrying.cpython-37.pyc │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _cmd.cpython-37.pyc │ │ │ │ │ ├── adapter.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── controller.cpython-37.pyc │ │ │ │ │ ├── filewrapper.cpython-37.pyc │ │ │ │ │ ├── heuristics.cpython-37.pyc │ │ │ │ │ ├── serialize.cpython-37.pyc │ │ │ │ │ └── wrapper.cpython-37.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── file_cache.cpython-37.pyc │ │ │ │ │ │ └── redis_cache.cpython-37.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __main__.cpython-37.pyc │ │ │ │ │ └── core.cpython-37.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── big5freq.cpython-37.pyc │ │ │ │ │ ├── big5prober.cpython-37.pyc │ │ │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ │ │ ├── enums.cpython-37.pyc │ │ │ │ │ ├── escprober.cpython-37.pyc │ │ │ │ │ ├── escsm.cpython-37.pyc │ │ │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-37.pyc │ │ │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ │ │ ├── universaldetector.cpython-37.pyc │ │ │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── chardetect.cpython-37.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── ansi.cpython-37.pyc │ │ │ │ │ ├── ansitowin32.cpython-37.pyc │ │ │ │ │ ├── initialise.cpython-37.pyc │ │ │ │ │ ├── win32.cpython-37.pyc │ │ │ │ │ └── winterm.cpython-37.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── database.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locators.cpython-37.pyc │ │ │ │ │ ├── manifest.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── metadata.cpython-37.pyc │ │ │ │ │ ├── resources.cpython-37.pyc │ │ │ │ │ ├── scripts.cpython-37.pyc │ │ │ │ │ ├── util.cpython-37.pyc │ │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── shutil.cpython-37.pyc │ │ │ │ │ │ ├── sysconfig.cpython-37.pyc │ │ │ │ │ │ └── tarfile.cpython-37.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── shutil.py │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ └── tarfile.py │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ │ ├── distro.py │ │ │ │ ├── html5lib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _ihatexml.cpython-37.pyc │ │ │ │ │ ├── _inputstream.cpython-37.pyc │ │ │ │ │ ├── _tokenizer.cpython-37.pyc │ │ │ │ │ ├── _utils.cpython-37.pyc │ │ │ │ │ ├── constants.cpython-37.pyc │ │ │ │ │ ├── html5parser.cpython-37.pyc │ │ │ │ │ └── serializer.cpython-37.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _base.cpython-37.pyc │ │ │ │ │ │ ├── datrie.cpython-37.pyc │ │ │ │ │ │ └── py.cpython-37.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-37.pyc │ │ │ │ │ │ ├── lint.cpython-37.pyc │ │ │ │ │ │ ├── optionaltags.cpython-37.pyc │ │ │ │ │ │ ├── sanitizer.cpython-37.pyc │ │ │ │ │ │ └── whitespace.cpython-37.pyc │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── genshi.cpython-37.pyc │ │ │ │ │ │ └── sax.cpython-37.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ │ └── etree_lxml.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ ├── etree_lxml.cpython-37.pyc │ │ │ │ │ └── genshi.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── codec.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── idnadata.cpython-37.pyc │ │ │ │ │ ├── intranges.cpython-37.pyc │ │ │ │ │ ├── package_data.cpython-37.pyc │ │ │ │ │ └── uts46data.cpython-37.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── linklockfile.cpython-37.pyc │ │ │ │ │ ├── mkdirlockfile.cpython-37.pyc │ │ │ │ │ ├── pidlockfile.cpython-37.pyc │ │ │ │ │ ├── sqlitelockfile.cpython-37.pyc │ │ │ │ │ └── symlinklockfile.cpython-37.pyc │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _version.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ └── fallback.cpython-37.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _in_process.cpython-37.pyc │ │ │ │ │ ├── build.cpython-37.pyc │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── colorlog.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── envbuild.cpython-37.pyc │ │ │ │ │ └── wrappers.cpython-37.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── bar.cpython-37.pyc │ │ │ │ │ ├── counter.cpython-37.pyc │ │ │ │ │ ├── helpers.cpython-37.pyc │ │ │ │ │ └── spinner.cpython-37.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── writer.cpython-37.pyc │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __version__.cpython-37.pyc │ │ │ │ │ ├── _internal_utils.cpython-37.pyc │ │ │ │ │ ├── adapters.cpython-37.pyc │ │ │ │ │ ├── api.cpython-37.pyc │ │ │ │ │ ├── auth.cpython-37.pyc │ │ │ │ │ ├── certs.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cookies.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ ├── hooks.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── packages.cpython-37.pyc │ │ │ │ │ ├── sessions.cpython-37.pyc │ │ │ │ │ ├── status_codes.cpython-37.pyc │ │ │ │ │ ├── structures.cpython-37.pyc │ │ │ │ │ └── utils.cpython-37.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _collections.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── connectionpool.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── fields.cpython-37.pyc │ │ │ │ │ ├── filepost.cpython-37.pyc │ │ │ │ │ ├── poolmanager.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ └── response.cpython-37.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-37.pyc │ │ │ │ │ │ ├── appengine.cpython-37.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ │ │ │ ├── securetransport.cpython-37.pyc │ │ │ │ │ │ └── socks.cpython-37.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ │ │ │ └── low_level.cpython-37.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ └── makefile.cpython-37.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── _implementation.cpython-37.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── queue.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ │ ├── retry.cpython-37.pyc │ │ │ │ │ ├── ssl_.cpython-37.pyc │ │ │ │ │ ├── timeout.cpython-37.pyc │ │ │ │ │ ├── url.cpython-37.pyc │ │ │ │ │ └── wait.cpython-37.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── labels.cpython-37.pyc │ │ │ │ ├── mklabels.cpython-37.pyc │ │ │ │ ├── tests.cpython-37.pyc │ │ │ │ └── x_user_defined.cpython-37.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ └── py31compat.py │ │ ├── setuptools-40.8.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _deprecation_warning.cpython-37.pyc │ │ │ │ ├── archive_util.cpython-37.pyc │ │ │ │ ├── build_meta.cpython-37.pyc │ │ │ │ ├── config.cpython-37.pyc │ │ │ │ ├── dep_util.cpython-37.pyc │ │ │ │ ├── depends.cpython-37.pyc │ │ │ │ ├── dist.cpython-37.pyc │ │ │ │ ├── extension.cpython-37.pyc │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ ├── glob.cpython-37.pyc │ │ │ │ ├── launch.cpython-37.pyc │ │ │ │ ├── lib2to3_ex.cpython-37.pyc │ │ │ │ ├── monkey.cpython-37.pyc │ │ │ │ ├── msvc.cpython-37.pyc │ │ │ │ ├── namespaces.cpython-37.pyc │ │ │ │ ├── package_index.cpython-37.pyc │ │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ │ ├── py27compat.cpython-37.pyc │ │ │ │ ├── py31compat.cpython-37.pyc │ │ │ │ ├── py33compat.cpython-37.pyc │ │ │ │ ├── sandbox.cpython-37.pyc │ │ │ │ ├── site-patch.cpython-37.pyc │ │ │ │ ├── ssl_support.cpython-37.pyc │ │ │ │ ├── unicode_utils.cpython-37.pyc │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ └── windows_support.cpython-37.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── alias.cpython-37.pyc │ │ │ │ │ ├── bdist_egg.cpython-37.pyc │ │ │ │ │ ├── bdist_rpm.cpython-37.pyc │ │ │ │ │ ├── bdist_wininst.cpython-37.pyc │ │ │ │ │ ├── build_clib.cpython-37.pyc │ │ │ │ │ ├── build_ext.cpython-37.pyc │ │ │ │ │ ├── build_py.cpython-37.pyc │ │ │ │ │ ├── develop.cpython-37.pyc │ │ │ │ │ ├── dist_info.cpython-37.pyc │ │ │ │ │ ├── easy_install.cpython-37.pyc │ │ │ │ │ ├── egg_info.cpython-37.pyc │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ ├── install_egg_info.cpython-37.pyc │ │ │ │ │ ├── install_lib.cpython-37.pyc │ │ │ │ │ ├── install_scripts.cpython-37.pyc │ │ │ │ │ ├── py36compat.cpython-37.pyc │ │ │ │ │ ├── register.cpython-37.pyc │ │ │ │ │ ├── rotate.cpython-37.pyc │ │ │ │ │ ├── saveopts.cpython-37.pyc │ │ │ │ │ ├── sdist.cpython-37.pyc │ │ │ │ │ ├── setopt.cpython-37.pyc │ │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ │ ├── upload.cpython-37.pyc │ │ │ │ │ └── upload_docs.cpython-37.pyc │ │ │ │ ├── alias.py │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── develop.py │ │ │ │ ├── dist_info.py │ │ │ │ ├── easy_install.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── py36compat.py │ │ │ │ ├── register.py │ │ │ │ ├── rotate.py │ │ │ │ ├── saveopts.py │ │ │ │ ├── sdist.py │ │ │ │ ├── setopt.py │ │ │ │ ├── test.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_docs.py │ │ │ ├── config.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── glibc.py │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── pep425tags.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── wheel-0.33.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ └── wheel │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __main__.cpython-37.pyc │ │ │ ├── bdist_wheel.cpython-37.pyc │ │ │ ├── metadata.cpython-37.pyc │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ ├── pkginfo.cpython-37.pyc │ │ │ ├── util.cpython-37.pyc │ │ │ └── wheelfile.cpython-37.pyc │ │ │ ├── bdist_wheel.py │ │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── convert.cpython-37.pyc │ │ │ │ ├── pack.cpython-37.pyc │ │ │ │ └── unpack.cpython-37.pyc │ │ │ ├── convert.py │ │ │ ├── pack.py │ │ │ └── unpack.py │ │ │ ├── metadata.py │ │ │ ├── pep425tags.py │ │ │ ├── pkginfo.py │ │ │ ├── util.py │ │ │ └── wheelfile.py │ ├── site.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── stat.py │ ├── struct.py │ ├── tarfile.py │ ├── tempfile.py │ ├── token.py │ ├── tokenize.py │ ├── types.py │ ├── warnings.py │ └── weakref.py ├── Scripts │ ├── activate │ ├── activate.bat │ ├── activate.ps1 │ ├── activate.xsh │ ├── activate_this.py │ ├── deactivate.bat │ ├── easy_install-3.7.exe │ ├── easy_install.exe │ ├── pip.exe │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ ├── python3.dll │ ├── python37.dll │ ├── pythonw.exe │ └── wheel.exe └── tcl │ ├── tcl8.6 │ ├── auto.tcl │ ├── clock.tcl │ ├── encoding │ │ ├── ascii.enc │ │ ├── big5.enc │ │ ├── cp1250.enc │ │ ├── cp1251.enc │ │ ├── cp1252.enc │ │ ├── cp1253.enc │ │ ├── cp1254.enc │ │ ├── cp1255.enc │ │ ├── cp1256.enc │ │ ├── cp1257.enc │ │ ├── cp1258.enc │ │ ├── cp437.enc │ │ ├── cp737.enc │ │ ├── cp775.enc │ │ ├── cp850.enc │ │ ├── cp852.enc │ │ ├── cp855.enc │ │ ├── cp857.enc │ │ ├── cp860.enc │ │ ├── cp861.enc │ │ ├── cp862.enc │ │ ├── cp863.enc │ │ ├── cp864.enc │ │ ├── cp865.enc │ │ ├── cp866.enc │ │ ├── cp869.enc │ │ ├── cp874.enc │ │ ├── cp932.enc │ │ ├── cp936.enc │ │ ├── cp949.enc │ │ ├── cp950.enc │ │ ├── dingbats.enc │ │ ├── ebcdic.enc │ │ ├── euc-cn.enc │ │ ├── euc-jp.enc │ │ ├── euc-kr.enc │ │ ├── gb12345.enc │ │ ├── gb1988.enc │ │ ├── gb2312-raw.enc │ │ ├── gb2312.enc │ │ ├── iso2022-jp.enc │ │ ├── iso2022-kr.enc │ │ ├── iso2022.enc │ │ ├── iso8859-1.enc │ │ ├── iso8859-10.enc │ │ ├── iso8859-13.enc │ │ ├── iso8859-14.enc │ │ ├── iso8859-15.enc │ │ ├── iso8859-16.enc │ │ ├── iso8859-2.enc │ │ ├── iso8859-3.enc │ │ ├── iso8859-4.enc │ │ ├── iso8859-5.enc │ │ ├── iso8859-6.enc │ │ ├── iso8859-7.enc │ │ ├── iso8859-8.enc │ │ ├── iso8859-9.enc │ │ ├── jis0201.enc │ │ ├── jis0208.enc │ │ ├── jis0212.enc │ │ ├── koi8-r.enc │ │ ├── koi8-u.enc │ │ ├── ksc5601.enc │ │ ├── macCentEuro.enc │ │ ├── macCroatian.enc │ │ ├── macCyrillic.enc │ │ ├── macDingbats.enc │ │ ├── macGreek.enc │ │ ├── macIceland.enc │ │ ├── macJapan.enc │ │ ├── macRoman.enc │ │ ├── macRomania.enc │ │ ├── macThai.enc │ │ ├── macTurkish.enc │ │ ├── macUkraine.enc │ │ ├── shiftjis.enc │ │ ├── symbol.enc │ │ └── tis-620.enc │ ├── history.tcl │ ├── http1.0 │ │ ├── http.tcl │ │ └── pkgIndex.tcl │ ├── init.tcl │ ├── msgs │ │ ├── af.msg │ │ ├── af_za.msg │ │ ├── ar.msg │ │ ├── ar_in.msg │ │ ├── ar_jo.msg │ │ ├── ar_lb.msg │ │ ├── ar_sy.msg │ │ ├── be.msg │ │ ├── bg.msg │ │ ├── bn.msg │ │ ├── bn_in.msg │ │ ├── ca.msg │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── de_at.msg │ │ ├── de_be.msg │ │ ├── el.msg │ │ ├── en_au.msg │ │ ├── en_be.msg │ │ ├── en_bw.msg │ │ ├── en_ca.msg │ │ ├── en_gb.msg │ │ ├── en_hk.msg │ │ ├── en_ie.msg │ │ ├── en_in.msg │ │ ├── en_nz.msg │ │ ├── en_ph.msg │ │ ├── en_sg.msg │ │ ├── en_za.msg │ │ ├── en_zw.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── es_ar.msg │ │ ├── es_bo.msg │ │ ├── es_cl.msg │ │ ├── es_co.msg │ │ ├── es_cr.msg │ │ ├── es_do.msg │ │ ├── es_ec.msg │ │ ├── es_gt.msg │ │ ├── es_hn.msg │ │ ├── es_mx.msg │ │ ├── es_ni.msg │ │ ├── es_pa.msg │ │ ├── es_pe.msg │ │ ├── es_pr.msg │ │ ├── es_py.msg │ │ ├── es_sv.msg │ │ ├── es_uy.msg │ │ ├── es_ve.msg │ │ ├── et.msg │ │ ├── eu.msg │ │ ├── eu_es.msg │ │ ├── fa.msg │ │ ├── fa_in.msg │ │ ├── fa_ir.msg │ │ ├── fi.msg │ │ ├── fo.msg │ │ ├── fo_fo.msg │ │ ├── fr.msg │ │ ├── fr_be.msg │ │ ├── fr_ca.msg │ │ ├── fr_ch.msg │ │ ├── ga.msg │ │ ├── ga_ie.msg │ │ ├── gl.msg │ │ ├── gl_es.msg │ │ ├── gv.msg │ │ ├── gv_gb.msg │ │ ├── he.msg │ │ ├── hi.msg │ │ ├── hi_in.msg │ │ ├── hr.msg │ │ ├── hu.msg │ │ ├── id.msg │ │ ├── id_id.msg │ │ ├── is.msg │ │ ├── it.msg │ │ ├── it_ch.msg │ │ ├── ja.msg │ │ ├── kl.msg │ │ ├── kl_gl.msg │ │ ├── ko.msg │ │ ├── ko_kr.msg │ │ ├── kok.msg │ │ ├── kok_in.msg │ │ ├── kw.msg │ │ ├── kw_gb.msg │ │ ├── lt.msg │ │ ├── lv.msg │ │ ├── mk.msg │ │ ├── mr.msg │ │ ├── mr_in.msg │ │ ├── ms.msg │ │ ├── ms_my.msg │ │ ├── mt.msg │ │ ├── nb.msg │ │ ├── nl.msg │ │ ├── nl_be.msg │ │ ├── nn.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── pt_br.msg │ │ ├── ro.msg │ │ ├── ru.msg │ │ ├── ru_ua.msg │ │ ├── sh.msg │ │ ├── sk.msg │ │ ├── sl.msg │ │ ├── sq.msg │ │ ├── sr.msg │ │ ├── sv.msg │ │ ├── sw.msg │ │ ├── ta.msg │ │ ├── ta_in.msg │ │ ├── te.msg │ │ ├── te_in.msg │ │ ├── th.msg │ │ ├── tr.msg │ │ ├── uk.msg │ │ ├── vi.msg │ │ ├── zh.msg │ │ ├── zh_cn.msg │ │ ├── zh_hk.msg │ │ ├── zh_sg.msg │ │ └── zh_tw.msg │ ├── opt0.4 │ │ ├── optparse.tcl │ │ └── pkgIndex.tcl │ ├── package.tcl │ ├── parray.tcl │ ├── safe.tcl │ ├── tclIndex │ ├── tm.tcl │ ├── tzdata │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Nelson │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Punta_Arenas │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Famagusta │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── East-Saskatchewan │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Astrakhan │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Saratov │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Ulyanovsk │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── SystemV │ │ │ ├── AST4 │ │ │ ├── AST4ADT │ │ │ ├── CST6 │ │ │ ├── CST6CDT │ │ │ ├── EST5 │ │ │ ├── EST5EDT │ │ │ ├── HST10 │ │ │ ├── MST7 │ │ │ ├── MST7MDT │ │ │ ├── PST8 │ │ │ ├── PST8PDT │ │ │ ├── YST9 │ │ │ └── YST9YDT │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ ├── Pacific-New │ │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ └── Zulu │ └── word.tcl │ └── tk8.6 │ ├── bgerror.tcl │ ├── button.tcl │ ├── choosedir.tcl │ ├── clrpick.tcl │ ├── comdlg.tcl │ ├── console.tcl │ ├── demos │ ├── README │ ├── anilabel.tcl │ ├── aniwave.tcl │ ├── arrow.tcl │ ├── bind.tcl │ ├── bitmap.tcl │ ├── browse │ ├── button.tcl │ ├── check.tcl │ ├── clrpick.tcl │ ├── colors.tcl │ ├── combo.tcl │ ├── cscroll.tcl │ ├── ctext.tcl │ ├── dialog1.tcl │ ├── dialog2.tcl │ ├── en.msg │ ├── entry1.tcl │ ├── entry2.tcl │ ├── entry3.tcl │ ├── filebox.tcl │ ├── floor.tcl │ ├── fontchoose.tcl │ ├── form.tcl │ ├── goldberg.tcl │ ├── hello │ ├── hscale.tcl │ ├── icon.tcl │ ├── image1.tcl │ ├── image2.tcl │ ├── images │ │ ├── earth.gif │ │ ├── earthmenu.png │ │ ├── earthris.gif │ │ ├── flagdown.xbm │ │ ├── flagup.xbm │ │ ├── gray25.xbm │ │ ├── letters.xbm │ │ ├── noletter.xbm │ │ ├── ouster.png │ │ ├── pattern.xbm │ │ ├── tcllogo.gif │ │ └── teapot.ppm │ ├── items.tcl │ ├── ixset │ ├── knightstour.tcl │ ├── label.tcl │ ├── labelframe.tcl │ ├── license.terms │ ├── mclist.tcl │ ├── menu.tcl │ ├── menubu.tcl │ ├── msgbox.tcl │ ├── nl.msg │ ├── paned1.tcl │ ├── paned2.tcl │ ├── pendulum.tcl │ ├── plot.tcl │ ├── puzzle.tcl │ ├── radio.tcl │ ├── rmt │ ├── rolodex │ ├── ruler.tcl │ ├── sayings.tcl │ ├── search.tcl │ ├── spin.tcl │ ├── square │ ├── states.tcl │ ├── style.tcl │ ├── tclIndex │ ├── tcolor │ ├── text.tcl │ ├── textpeer.tcl │ ├── timer │ ├── toolbar.tcl │ ├── tree.tcl │ ├── ttkbut.tcl │ ├── ttkmenu.tcl │ ├── ttknote.tcl │ ├── ttkpane.tcl │ ├── ttkprogress.tcl │ ├── ttkscale.tcl │ ├── twind.tcl │ ├── unicodeout.tcl │ ├── vscale.tcl │ └── widget │ ├── dialog.tcl │ ├── entry.tcl │ ├── focus.tcl │ ├── fontchooser.tcl │ ├── iconlist.tcl │ ├── icons.tcl │ ├── images │ ├── README │ ├── logo.eps │ ├── logo100.gif │ ├── logo64.gif │ ├── logoLarge.gif │ ├── logoMed.gif │ ├── pwrdLogo.eps │ ├── pwrdLogo100.gif │ ├── pwrdLogo150.gif │ ├── pwrdLogo175.gif │ ├── pwrdLogo200.gif │ ├── pwrdLogo75.gif │ └── tai-ku.gif │ ├── license.terms │ ├── listbox.tcl │ ├── megawidget.tcl │ ├── menu.tcl │ ├── mkpsenc.tcl │ ├── msgbox.tcl │ ├── msgs │ ├── cs.msg │ ├── da.msg │ ├── de.msg │ ├── el.msg │ ├── en.msg │ ├── en_gb.msg │ ├── eo.msg │ ├── es.msg │ ├── fr.msg │ ├── hu.msg │ ├── it.msg │ ├── nl.msg │ ├── pl.msg │ ├── pt.msg │ ├── ru.msg │ └── sv.msg │ ├── obsolete.tcl │ ├── optMenu.tcl │ ├── palette.tcl │ ├── panedwindow.tcl │ ├── pkgIndex.tcl │ ├── safetk.tcl │ ├── scale.tcl │ ├── scrlbar.tcl │ ├── spinbox.tcl │ ├── tclIndex │ ├── tearoff.tcl │ ├── text.tcl │ ├── tk.tcl │ ├── tkfbox.tcl │ ├── ttk │ ├── altTheme.tcl │ ├── aquaTheme.tcl │ ├── button.tcl │ ├── clamTheme.tcl │ ├── classicTheme.tcl │ ├── combobox.tcl │ ├── cursors.tcl │ ├── defaults.tcl │ ├── entry.tcl │ ├── fonts.tcl │ ├── menubutton.tcl │ ├── notebook.tcl │ ├── panedwindow.tcl │ ├── progress.tcl │ ├── scale.tcl │ ├── scrollbar.tcl │ ├── sizegrip.tcl │ ├── spinbox.tcl │ ├── treeview.tcl │ ├── ttk.tcl │ ├── utils.tcl │ ├── vistaTheme.tcl │ ├── winTheme.tcl │ └── xpTheme.tcl │ ├── unsupported.tcl │ └── xmfbox.tcl ├── MAJOR PROJECT_report.pdf ├── Procfile ├── README.md ├── app.py ├── desktop.ini ├── ls ├── major project.pptx ├── requirements.txt ├── static └── style.css ├── templates ├── chart.html └── search.html └── twitter_sentiment_analysis.py /.gitignore: -------------------------------------------------------------------------------- 1 | secret.py 2 | envs 3 | output.csv 4 | test.data 5 | __pycache__ -------------------------------------------------------------------------------- /==16.2.0/Include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/Python-ast.h -------------------------------------------------------------------------------- /==16.2.0/Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/Python.h -------------------------------------------------------------------------------- /==16.2.0/Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/abstract.h -------------------------------------------------------------------------------- /==16.2.0/Include/accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/accu.h -------------------------------------------------------------------------------- /==16.2.0/Include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/asdl.h -------------------------------------------------------------------------------- /==16.2.0/Include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/ast.h -------------------------------------------------------------------------------- /==16.2.0/Include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/bitset.h -------------------------------------------------------------------------------- /==16.2.0/Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/bltinmodule.h -------------------------------------------------------------------------------- /==16.2.0/Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/boolobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/bytearrayobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/bytes_methods.h -------------------------------------------------------------------------------- /==16.2.0/Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/bytesobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/cellobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/ceval.h -------------------------------------------------------------------------------- /==16.2.0/Include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/classobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/code.h -------------------------------------------------------------------------------- /==16.2.0/Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/codecs.h -------------------------------------------------------------------------------- /==16.2.0/Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/compile.h -------------------------------------------------------------------------------- /==16.2.0/Include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/complexobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/context.h -------------------------------------------------------------------------------- /==16.2.0/Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/datetime.h -------------------------------------------------------------------------------- /==16.2.0/Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/descrobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/dictobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/dtoa.h -------------------------------------------------------------------------------- /==16.2.0/Include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/dynamic_annotations.h -------------------------------------------------------------------------------- /==16.2.0/Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/enumobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/errcode.h -------------------------------------------------------------------------------- /==16.2.0/Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/eval.h -------------------------------------------------------------------------------- /==16.2.0/Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/fileobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/fileutils.h -------------------------------------------------------------------------------- /==16.2.0/Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/floatobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/frameobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/funcobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/genobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/graminit.h -------------------------------------------------------------------------------- /==16.2.0/Include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/grammar.h -------------------------------------------------------------------------------- /==16.2.0/Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/import.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/ceval.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/condvar.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/context.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/gil.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/hamt.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/hash.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/import.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/mem.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/pygetopt.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/pystate.h -------------------------------------------------------------------------------- /==16.2.0/Include/internal/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/internal/warnings.h -------------------------------------------------------------------------------- /==16.2.0/Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/intrcheck.h -------------------------------------------------------------------------------- /==16.2.0/Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/iterobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/listobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/longintrepr.h -------------------------------------------------------------------------------- /==16.2.0/Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/longobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/marshal.h -------------------------------------------------------------------------------- /==16.2.0/Include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/memoryobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/metagrammar.h -------------------------------------------------------------------------------- /==16.2.0/Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/methodobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/modsupport.h -------------------------------------------------------------------------------- /==16.2.0/Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/moduleobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/namespaceobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/node.h -------------------------------------------------------------------------------- /==16.2.0/Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/object.h -------------------------------------------------------------------------------- /==16.2.0/Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/objimpl.h -------------------------------------------------------------------------------- /==16.2.0/Include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/odictobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/opcode.h -------------------------------------------------------------------------------- /==16.2.0/Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/osdefs.h -------------------------------------------------------------------------------- /==16.2.0/Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/osmodule.h -------------------------------------------------------------------------------- /==16.2.0/Include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/parsetok.h -------------------------------------------------------------------------------- /==16.2.0/Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/patchlevel.h -------------------------------------------------------------------------------- /==16.2.0/Include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pgen.h -------------------------------------------------------------------------------- /==16.2.0/Include/pgenheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pgenheaders.h -------------------------------------------------------------------------------- /==16.2.0/Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/py_curses.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyarena.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyatomic.h -------------------------------------------------------------------------------- /==16.2.0/Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pycapsule.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyconfig.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyctype.h -------------------------------------------------------------------------------- /==16.2.0/Include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pydebug.h -------------------------------------------------------------------------------- /==16.2.0/Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pydtrace.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyerrors.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyexpat.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyfpe.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyhash.h -------------------------------------------------------------------------------- /==16.2.0/Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pylifecycle.h -------------------------------------------------------------------------------- /==16.2.0/Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pymacconfig.h -------------------------------------------------------------------------------- /==16.2.0/Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pymacro.h -------------------------------------------------------------------------------- /==16.2.0/Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pymath.h -------------------------------------------------------------------------------- /==16.2.0/Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pymem.h -------------------------------------------------------------------------------- /==16.2.0/Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pyport.h -------------------------------------------------------------------------------- /==16.2.0/Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pystate.h -------------------------------------------------------------------------------- /==16.2.0/Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pystrcmp.h -------------------------------------------------------------------------------- /==16.2.0/Include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pystrhex.h -------------------------------------------------------------------------------- /==16.2.0/Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pystrtod.h -------------------------------------------------------------------------------- /==16.2.0/Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pythonrun.h -------------------------------------------------------------------------------- /==16.2.0/Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pythread.h -------------------------------------------------------------------------------- /==16.2.0/Include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/pytime.h -------------------------------------------------------------------------------- /==16.2.0/Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/rangeobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/setobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/sliceobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/structmember.h -------------------------------------------------------------------------------- /==16.2.0/Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/structseq.h -------------------------------------------------------------------------------- /==16.2.0/Include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/symtable.h -------------------------------------------------------------------------------- /==16.2.0/Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/sysmodule.h -------------------------------------------------------------------------------- /==16.2.0/Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/token.h -------------------------------------------------------------------------------- /==16.2.0/Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/traceback.h -------------------------------------------------------------------------------- /==16.2.0/Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/tupleobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/typeslots.h -------------------------------------------------------------------------------- /==16.2.0/Include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/ucnhash.h -------------------------------------------------------------------------------- /==16.2.0/Include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/unicodeobject.h -------------------------------------------------------------------------------- /==16.2.0/Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/warnings.h -------------------------------------------------------------------------------- /==16.2.0/Include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Include/weakrefobject.h -------------------------------------------------------------------------------- /==16.2.0/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/__future__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/_bootlocale.py -------------------------------------------------------------------------------- /==16.2.0/Lib/_collections_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/_collections_abc.py -------------------------------------------------------------------------------- /==16.2.0/Lib/_dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/_dummy_thread.py -------------------------------------------------------------------------------- /==16.2.0/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/_weakrefset.py -------------------------------------------------------------------------------- /==16.2.0/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/abc.py -------------------------------------------------------------------------------- /==16.2.0/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/base64.py -------------------------------------------------------------------------------- /==16.2.0/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/bisect.py -------------------------------------------------------------------------------- /==16.2.0/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/codecs.py -------------------------------------------------------------------------------- /==16.2.0/Lib/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/collections/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/collections/abc.py -------------------------------------------------------------------------------- /==16.2.0/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/copy.py -------------------------------------------------------------------------------- /==16.2.0/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/copyreg.py -------------------------------------------------------------------------------- /==16.2.0/Lib/distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/distutils/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/distutils/distutils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/distutils/distutils.cfg -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/aliases.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/base64_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/base64_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/big5.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/big5hkscs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/big5hkscs.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/bz2_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/bz2_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/charmap.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1006.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1026.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1125.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1140.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1250.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1251.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1252.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1253.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1254.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1255.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1256.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1257.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp1258.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp273.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp65001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp65001.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/euc_jis_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/euc_jis_2004.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/euc_jisx0213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/euc_jisx0213.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/euc_jp.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/euc_kr.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/gb18030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/gb18030.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/gb2312.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/hex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/hex_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/hp_roman8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/hp_roman8.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/hz.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/idna.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso2022_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso2022_jp.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso2022_jp_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso2022_jp_1.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso2022_jp_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso2022_jp_2.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso2022_jp_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso2022_jp_3.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso2022_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso2022_kr.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_1.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_10.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_11.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_13.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_14.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_15.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_16.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_2.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_3.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_4.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_5.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_6.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_7.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_8.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/iso8859_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/iso8859_9.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/johab.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/koi8_r.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/koi8_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/koi8_t.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/koi8_u.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/kz1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/kz1048.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/latin_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/latin_1.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_arabic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_arabic.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_centeuro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_centeuro.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_croatian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_croatian.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_cyrillic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_cyrillic.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_farsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_farsi.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_greek.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_iceland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_iceland.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_latin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_latin2.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_roman.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_romanian.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mac_turkish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mac_turkish.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/oem.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/palmos.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/ptcp154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/ptcp154.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/punycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/punycode.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/quopri_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/quopri_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/rot_13.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/shift_jis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/shift_jis.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/tis_620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/tis_620.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/undefined.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_16.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_16_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_16_be.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_16_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_16_le.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_32.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_32_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_32_be.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_32_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_32_le.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/utf_8_sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/utf_8_sig.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/uu_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/uu_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/zlib_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/encodings/zlib_codec.py -------------------------------------------------------------------------------- /==16.2.0/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/enum.py -------------------------------------------------------------------------------- /==16.2.0/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/fnmatch.py -------------------------------------------------------------------------------- /==16.2.0/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/functools.py -------------------------------------------------------------------------------- /==16.2.0/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/genericpath.py -------------------------------------------------------------------------------- /==16.2.0/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/hashlib.py -------------------------------------------------------------------------------- /==16.2.0/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/heapq.py -------------------------------------------------------------------------------- /==16.2.0/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/hmac.py -------------------------------------------------------------------------------- /==16.2.0/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/imp.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/_bootstrap.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/abc.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/machinery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/machinery.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/resources.py -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/importlib/util.py -------------------------------------------------------------------------------- /==16.2.0/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/io.py -------------------------------------------------------------------------------- /==16.2.0/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/keyword.py -------------------------------------------------------------------------------- /==16.2.0/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/linecache.py -------------------------------------------------------------------------------- /==16.2.0/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/locale.py -------------------------------------------------------------------------------- /==16.2.0/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/ntpath.py -------------------------------------------------------------------------------- /==16.2.0/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/operator.py -------------------------------------------------------------------------------- /==16.2.0/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/orig-prefix.txt -------------------------------------------------------------------------------- /==16.2.0/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/os.py -------------------------------------------------------------------------------- /==16.2.0/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/posixpath.py -------------------------------------------------------------------------------- /==16.2.0/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/random.py -------------------------------------------------------------------------------- /==16.2.0/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/re.py -------------------------------------------------------------------------------- /==16.2.0/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/reprlib.py -------------------------------------------------------------------------------- /==16.2.0/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/rlcompleter.py -------------------------------------------------------------------------------- /==16.2.0/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/shutil.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/site.py -------------------------------------------------------------------------------- /==16.2.0/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/sre_compile.py -------------------------------------------------------------------------------- /==16.2.0/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/sre_constants.py -------------------------------------------------------------------------------- /==16.2.0/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/sre_parse.py -------------------------------------------------------------------------------- /==16.2.0/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/stat.py -------------------------------------------------------------------------------- /==16.2.0/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/struct.py -------------------------------------------------------------------------------- /==16.2.0/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/tarfile.py -------------------------------------------------------------------------------- /==16.2.0/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/tempfile.py -------------------------------------------------------------------------------- /==16.2.0/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/token.py -------------------------------------------------------------------------------- /==16.2.0/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/tokenize.py -------------------------------------------------------------------------------- /==16.2.0/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/types.py -------------------------------------------------------------------------------- /==16.2.0/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/warnings.py -------------------------------------------------------------------------------- /==16.2.0/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Lib/weakref.py -------------------------------------------------------------------------------- /==16.2.0/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/activate -------------------------------------------------------------------------------- /==16.2.0/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/activate.bat -------------------------------------------------------------------------------- /==16.2.0/Scripts/activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/activate.ps1 -------------------------------------------------------------------------------- /==16.2.0/Scripts/activate.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/activate.xsh -------------------------------------------------------------------------------- /==16.2.0/Scripts/activate_this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/activate_this.py -------------------------------------------------------------------------------- /==16.2.0/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/deactivate.bat -------------------------------------------------------------------------------- /==16.2.0/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/easy_install.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/pip.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/pip3.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/python.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/python3.dll -------------------------------------------------------------------------------- /==16.2.0/Scripts/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/python37.dll -------------------------------------------------------------------------------- /==16.2.0/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/pythonw.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/Scripts/wheel.exe -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/clock.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/ascii.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/ascii.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/big5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/big5.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1250.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1250.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1251.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1251.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1252.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1252.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1253.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1253.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1254.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1254.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1255.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1255.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1256.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1256.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1257.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1257.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp1258.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp1258.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp437.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp437.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp737.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp737.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp775.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp775.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp850.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp850.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp852.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp852.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp855.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp855.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp857.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp857.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp860.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp860.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp861.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp861.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp862.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp862.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp863.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp863.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp864.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp864.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp865.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp865.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp866.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp866.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp869.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp869.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp874.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp874.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp932.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp932.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp936.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp936.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp949.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp949.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/cp950.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/cp950.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/ebcdic.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/ebcdic.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/euc-cn.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/euc-cn.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/euc-jp.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/euc-jp.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/euc-kr.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/euc-kr.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/gb1988.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/gb1988.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/gb2312.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/gb2312.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/koi8-r.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/koi8-r.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/koi8-u.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/koi8-u.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/symbol.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/encoding/symbol.enc -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/history.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/history.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/http1.0/http.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/http1.0/http.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/init.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/af.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/af.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/af_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/af_za.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ar.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ar_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ar_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ar_jo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ar_jo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ar_lb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ar_lb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ar_sy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ar_sy.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/be.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/bg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/bg.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/bn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/bn.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/bn_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/bn_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ca.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/cs.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/da.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/de.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/de_at.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/de_at.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/de_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/de_be.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/el.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_au.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_au.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_be.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_bw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_bw.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_ca.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_gb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_hk.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_ie.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_nz.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_nz.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_ph.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_ph.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_sg.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_za.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/en_zw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/en_zw.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/eo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_ar.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_bo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_bo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_cl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_cl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_co.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_co.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_cr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_cr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_do.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_do.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_ec.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_ec.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_gt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_gt.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_hn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_hn.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_mx.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_mx.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_ni.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_ni.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_pa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_pa.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_pe.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_pe.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_pr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_pr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_py.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_py.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_sv.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_uy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_uy.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/es_ve.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/es_ve.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/et.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/et.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/eu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/eu.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/eu_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/eu_es.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fa.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fa_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fa_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fa_ir.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fa_ir.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fi.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fo_fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fo_fo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fr_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fr_be.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fr_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fr_ca.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/fr_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/fr_ch.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ga.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ga.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ga_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ga_ie.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/gl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/gl_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/gl_es.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/gv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/gv.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/gv_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/gv_gb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/he.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/he.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/hi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/hi.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/hi_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/hi_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/hr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/hr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/hu.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/id.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/id_id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/id_id.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/is.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/is.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/it.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/it_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/it_ch.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ja.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ja.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kl_gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kl_gl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ko.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ko.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ko_kr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ko_kr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kok.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kok.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kok_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kok_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kw.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/kw_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/kw_gb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/lt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/lt.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/lv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/lv.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/mk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/mk.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/mr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/mr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/mr_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/mr_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ms.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ms.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ms_my.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ms_my.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/mt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/mt.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/nb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/nb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/nl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/nl_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/nl_be.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/nn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/nn.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/pl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/pt.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/pt_br.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/pt_br.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ro.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ro.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ru.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ru_ua.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ru_ua.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sh.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sk.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sq.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sq.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sv.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/sw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/sw.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ta.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/ta_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/ta_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/te.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/te.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/te_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/te_in.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/th.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/th.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/tr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/tr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/uk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/uk.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/vi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/vi.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/zh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/zh.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/zh_cn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/zh_cn.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/zh_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/zh_hk.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/zh_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/zh_sg.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/msgs/zh_tw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/msgs/zh_tw.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/opt0.4/optparse.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/opt0.4/optparse.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/opt0.4/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/opt0.4/pkgIndex.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/package.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/package.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/parray.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tclIndex -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Accra -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Cairo -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Ceuta -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Dakar -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Juba -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Lagos -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Lome -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Africa/Tunis -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/America/Adak -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/America/Atka -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/America/Lima -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/America/Nome -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Aden -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Almaty -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Amman -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Anadyr -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Aqtau -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Aqtobe -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Atyrau -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Baghdad -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Bahrain -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Baku -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Bangkok -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Barnaul -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Beirut -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Bishkek -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Brunei -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Chita -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Colombo -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Dacca -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Dhaka -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Dili -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Dubai -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Gaza -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Harbin -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Hebron -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Hovd -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Irkutsk -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Jakarta -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Kabul -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Karachi -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Kashgar -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Kolkata -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Kuching -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Kuwait -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Macao -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Macau -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Magadan -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Manila -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Muscat -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Nicosia -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Omsk -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Oral -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Qatar -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Rangoon -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Riyadh -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Saigon -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Seoul -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Taipei -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Tbilisi -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Tehran -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimbu -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimphu -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Tokyo -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Tomsk -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Urumqi -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Yakutsk -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Yangon -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Asia/Yerevan -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Brazil/Acre -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Brazil/East -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Brazil/West -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/CET -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/CST6CDT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Canada/Yukon -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Cuba -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/EET -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/EST -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/EST5EDT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Egypt -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Eire -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+1 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+10 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+11 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+12 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+2 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+3 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+4 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+5 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+6 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+7 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+8 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+9 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-1 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-10 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-11 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-12 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-13 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-14 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-2 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-3 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-4 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-5 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-6 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-7 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-8 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-9 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/UCT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/UTC -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Etc/Zulu -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Kiev -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Kirov -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Malta -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Minsk -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Oslo -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Paris -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Riga -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Rome -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Sofia -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Europe/Vaduz -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GB -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GB-Eire -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GMT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GMT+0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GMT-0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/GMT0 -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Greenwich -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/HST -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Hongkong -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Iceland -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Indian/Cocos -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Indian/Mahe -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Iran -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Israel -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Jamaica -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Japan -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Kwajalein -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Libya -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/MET -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/MST -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/MST7MDT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/NZ -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/NZ-CHAT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Navajo -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/PRC -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/PST8PDT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Poland -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Portugal -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/ROC -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/ROK -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Singapore -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Turkey -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/UCT -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/US/Alaska -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/US/Hawaii -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/US/Samoa -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/UTC -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Universal -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/W-SU -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/WET -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/tzdata/Zulu -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tcl8.6/word.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/bgerror.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/button.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/choosedir.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/choosedir.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/clrpick.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/comdlg.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/console.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/README -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/aniwave.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/aniwave.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/arrow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/arrow.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/bind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/bind.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/bitmap.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/bitmap.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/browse -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/button.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/check.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/check.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/clrpick.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/colors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/colors.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/combo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/combo.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/cscroll.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/cscroll.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ctext.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ctext.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/dialog1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/dialog1.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/dialog2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/dialog2.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/en.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/entry1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/entry1.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/entry2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/entry2.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/entry3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/entry3.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/filebox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/filebox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/floor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/floor.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/form.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/form.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/hello -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/hscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/hscale.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/icon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/icon.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/image1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/image1.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/image2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/image2.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/items.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/items.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ixset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ixset -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/label.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/label.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/mclist.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/mclist.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/menu.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/menubu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/menubu.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/msgbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/nl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/paned1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/paned1.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/paned2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/paned2.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/plot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/plot.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/puzzle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/puzzle.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/radio.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/radio.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/rmt -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/rolodex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/rolodex -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ruler.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ruler.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/sayings.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/sayings.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/search.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/search.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/spin.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/spin.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/square -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/states.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/states.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/style.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/style.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/tclIndex -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/tcolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/tcolor -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/text.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/timer -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/toolbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/toolbar.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/tree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/tree.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ttkbut.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ttkbut.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ttkmenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ttkmenu.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ttknote.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ttknote.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/ttkpane.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/ttkpane.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/twind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/twind.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/vscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/vscale.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/widget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/demos/widget -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/dialog.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/entry.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/focus.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/fontchooser.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/fontchooser.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/iconlist.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/iconlist.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/icons.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/images/README -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/images/logo.eps -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/images/logo64.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/images/tai-ku.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/license.terms -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/listbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/megawidget.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/megawidget.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/mkpsenc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/mkpsenc.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/cs.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/da.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/de.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/el.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/en.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/en_gb.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/eo.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/es.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/fr.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/hu.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/it.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/nl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/pl.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/pt.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/ru.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/msgs/sv.msg -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/obsolete.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/obsolete.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/optMenu.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/palette.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/panedwindow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/panedwindow.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/pkgIndex.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/safetk.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/scale.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/scrlbar.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/spinbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/tearoff.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/tkfbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/altTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/altTheme.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/aquaTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/aquaTheme.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/button.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/clamTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/clamTheme.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/combobox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/combobox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/cursors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/cursors.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/defaults.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/defaults.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/entry.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/fonts.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/fonts.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/notebook.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/progress.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/progress.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/scale.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/scrollbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/scrollbar.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/sizegrip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/sizegrip.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/spinbox.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/treeview.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/treeview.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/ttk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/ttk.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/utils.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/winTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/winTheme.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/ttk/xpTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/ttk/xpTheme.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/unsupported.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/unsupported.tcl -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/==16.2.0/tcl/tk8.6/xmfbox.tcl -------------------------------------------------------------------------------- /MAJOR PROJECT_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/MAJOR PROJECT_report.pdf -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/app.py -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/desktop.ini -------------------------------------------------------------------------------- /ls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /major project.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/major project.pptx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/templates/chart.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/templates/search.html -------------------------------------------------------------------------------- /twitter_sentiment_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/HEAD/twitter_sentiment_analysis.py --------------------------------------------------------------------------------