From b4fde9997e30f95db045fd00a62ee934c04ef42e Mon Sep 17 00:00:00 2001 From: grmwtt Date: Wed, 29 Jan 2025 23:39:42 -0500 Subject: [PATCH] Starter Code --- MidasHMM/bin/Activate.ps1 | 241 + MidasHMM/bin/activate | 66 + MidasHMM/bin/activate.csh | 25 + MidasHMM/bin/activate.fish | 64 + MidasHMM/bin/pip | 8 + MidasHMM/bin/pip3 | 8 + MidasHMM/bin/pip3.9 | 8 + MidasHMM/bin/python | 1 + MidasHMM/bin/python3 | 1 + MidasHMM/bin/python3.9 | 1 + MidasHMM/hmm/config/params.yaml | 14 + MidasHMM/hmm/main.py | 63 + .../__pycache__/data_processor.cpython-39.pyc | Bin 0 -> 3549 bytes .../feature_engineer.cpython-39.pyc | Bin 0 -> 2374 bytes .../__pycache__/hmm_trainer.cpython-39.pyc | Bin 0 -> 2504 bytes MidasHMM/hmm/midas/analysis.py | 49 + MidasHMM/hmm/midas/data_processor.py | 95 + MidasHMM/hmm/midas/feature_engineer.py | 72 + MidasHMM/hmm/midas/hmm_trainer.py | 74 + MidasHMM/hmm/requirements.txt | 8 + .../site-packages/_distutils_hack/__init__.py | 128 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 5099 bytes .../__pycache__/override.cpython-39.pyc | Bin 0 -> 230 bytes .../site-packages/_distutils_hack/override.py | 1 + .../site-packages/distutils-precedence.pth | 1 + .../pip-21.2.3.dist-info/INSTALLER | 1 + .../pip-21.2.3.dist-info/LICENSE.txt | 20 + .../pip-21.2.3.dist-info/METADATA | 92 + .../site-packages/pip-21.2.3.dist-info/RECORD | 795 ++ .../pip-21.2.3.dist-info/REQUESTED | 0 .../site-packages/pip-21.2.3.dist-info/WHEEL | 5 + .../pip-21.2.3.dist-info/entry_points.txt | 5 + .../pip-21.2.3.dist-info/top_level.txt | 1 + .../python3.9/site-packages/pip/__init__.py | 13 + .../python3.9/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 623 bytes .../pip/__pycache__/__main__.cpython-39.pyc | Bin 0 -> 579 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 744 bytes .../__pycache__/build_env.cpython-39.pyc | Bin 0 -> 9083 bytes .../__pycache__/cache.cpython-39.pyc | Bin 0 -> 7834 bytes .../__pycache__/configuration.cpython-39.pyc | Bin 0 -> 10686 bytes .../__pycache__/exceptions.cpython-39.pyc | Bin 0 -> 15635 bytes .../_internal/__pycache__/main.cpython-39.pyc | Bin 0 -> 568 bytes .../__pycache__/pyproject.cpython-39.pyc | Bin 0 -> 3447 bytes .../self_outdated_check.cpython-39.pyc | Bin 0 -> 4331 bytes .../__pycache__/wheel_builder.cpython-39.pyc | Bin 0 -> 8269 bytes .../site-packages/pip/_internal/build_env.py | 294 + .../site-packages/pip/_internal/cache.py | 287 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 264 bytes .../__pycache__/autocompletion.cpython-39.pyc | Bin 0 -> 5121 bytes .../__pycache__/base_command.cpython-39.pyc | Bin 0 -> 6025 bytes .../cli/__pycache__/cmdoptions.cpython-39.pyc | Bin 0 -> 22481 bytes .../command_context.cpython-39.pyc | Bin 0 -> 1279 bytes .../cli/__pycache__/main.cpython-39.pyc | Bin 0 -> 1354 bytes .../__pycache__/main_parser.cpython-39.pyc | Bin 0 -> 2151 bytes .../cli/__pycache__/parser.cpython-39.pyc | Bin 0 -> 9935 bytes .../__pycache__/progress_bars.cpython-39.pyc | Bin 0 -> 7611 bytes .../__pycache__/req_command.cpython-39.pyc | Bin 0 -> 12046 bytes .../cli/__pycache__/spinners.cpython-39.pyc | Bin 0 -> 4934 bytes .../__pycache__/status_codes.cpython-39.pyc | Bin 0 -> 343 bytes .../pip/_internal/cli/autocompletion.py | 163 + .../pip/_internal/cli/base_command.py | 214 + .../pip/_internal/cli/cmdoptions.py | 1009 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 87 + .../site-packages/pip/_internal/cli/parser.py | 292 + .../pip/_internal/cli/progress_bars.py | 250 + .../pip/_internal/cli/req_command.py | 453 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 112 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 3097 bytes .../commands/__pycache__/cache.cpython-39.pyc | Bin 0 -> 6030 bytes .../commands/__pycache__/check.cpython-39.pyc | Bin 0 -> 1559 bytes .../__pycache__/completion.cpython-39.pyc | Bin 0 -> 3128 bytes .../__pycache__/configuration.cpython-39.pyc | Bin 0 -> 8335 bytes .../commands/__pycache__/debug.cpython-39.pyc | Bin 0 -> 6656 bytes .../__pycache__/download.cpython-39.pyc | Bin 0 -> 3979 bytes .../__pycache__/freeze.cpython-39.pyc | Bin 0 -> 2623 bytes .../commands/__pycache__/hash.cpython-39.pyc | Bin 0 -> 2121 bytes .../commands/__pycache__/help.cpython-39.pyc | Bin 0 -> 1295 bytes .../commands/__pycache__/index.cpython-39.pyc | Bin 0 -> 4514 bytes .../__pycache__/install.cpython-39.pyc | Bin 0 -> 17648 bytes .../commands/__pycache__/list.cpython-39.pyc | Bin 0 -> 9950 bytes .../__pycache__/search.cpython-39.pyc | Bin 0 -> 5307 bytes .../commands/__pycache__/show.cpython-39.pyc | Bin 0 -> 8370 bytes .../__pycache__/uninstall.cpython-39.pyc | Bin 0 -> 3089 bytes .../commands/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 4852 bytes .../pip/_internal/commands/cache.py | 216 + .../pip/_internal/commands/check.py | 47 + .../pip/_internal/commands/completion.py | 91 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 204 + .../pip/_internal/commands/download.py | 139 + .../pip/_internal/commands/freeze.py | 84 + .../pip/_internal/commands/hash.py | 55 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 750 ++ .../pip/_internal/commands/list.py | 337 + .../pip/_internal/commands/search.py | 164 + .../pip/_internal/commands/show.py | 234 + .../pip/_internal/commands/uninstall.py | 100 + .../pip/_internal/commands/wheel.py | 176 + .../pip/_internal/configuration.py | 403 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 787 bytes .../__pycache__/base.cpython-39.pyc | Bin 0 -> 1914 bytes .../__pycache__/installed.cpython-39.pyc | Bin 0 -> 1233 bytes .../__pycache__/sdist.cpython-39.pyc | Bin 0 -> 3567 bytes .../__pycache__/wheel.cpython-39.pyc | Bin 0 -> 1568 bytes .../pip/_internal/distributions/base.py | 38 + .../pip/_internal/distributions/installed.py | 22 + .../pip/_internal/distributions/sdist.py | 95 + .../pip/_internal/distributions/wheel.py | 34 + .../site-packages/pip/_internal/exceptions.py | 397 + .../pip/_internal/index/__init__.py | 2 + .../index/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 218 bytes .../__pycache__/collector.cpython-39.pyc | Bin 0 -> 15942 bytes .../__pycache__/package_finder.cpython-39.pyc | Bin 0 -> 28096 bytes .../index/__pycache__/sources.cpython-39.pyc | Bin 0 -> 7183 bytes .../pip/_internal/index/collector.py | 534 ++ .../pip/_internal/index/package_finder.py | 982 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 351 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 8447 bytes .../__pycache__/_distutils.cpython-39.pyc | Bin 0 -> 4657 bytes .../__pycache__/_sysconfig.cpython-39.pyc | Bin 0 -> 6248 bytes .../locations/__pycache__/base.cpython-39.pyc | Bin 0 -> 1526 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + .../site-packages/pip/_internal/main.py | 13 + .../pip/_internal/metadata/__init__.py | 48 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1839 bytes .../metadata/__pycache__/base.cpython-39.pyc | Bin 0 -> 9452 bytes .../__pycache__/pkg_resources.cpython-39.pyc | Bin 0 -> 6153 bytes .../pip/_internal/metadata/base.py | 242 + .../pip/_internal/metadata/pkg_resources.py | 153 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 252 bytes .../__pycache__/candidate.cpython-39.pyc | Bin 0 -> 1432 bytes .../__pycache__/direct_url.cpython-39.pyc | Bin 0 -> 7047 bytes .../__pycache__/format_control.cpython-39.pyc | Bin 0 -> 2719 bytes .../models/__pycache__/index.cpython-39.pyc | Bin 0 -> 1231 bytes .../models/__pycache__/link.cpython-39.pyc | Bin 0 -> 10312 bytes .../models/__pycache__/scheme.cpython-39.pyc | Bin 0 -> 998 bytes .../__pycache__/search_scope.cpython-39.pyc | Bin 0 -> 3471 bytes .../selection_prefs.cpython-39.pyc | Bin 0 -> 1654 bytes .../__pycache__/target_python.cpython-39.pyc | Bin 0 -> 3404 bytes .../models/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 4332 bytes .../pip/_internal/models/candidate.py | 31 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 84 + .../pip/_internal/models/index.py | 32 + .../pip/_internal/models/link.py | 288 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 126 + .../pip/_internal/models/selection_prefs.py | 46 + .../pip/_internal/models/target_python.py | 111 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 240 bytes .../network/__pycache__/auth.cpython-39.pyc | Bin 0 -> 7437 bytes .../network/__pycache__/cache.cpython-39.pyc | Bin 0 -> 2882 bytes .../__pycache__/download.cpython-39.pyc | Bin 0 -> 5471 bytes .../__pycache__/lazy_wheel.cpython-39.pyc | Bin 0 -> 8337 bytes .../__pycache__/session.cpython-39.pyc | Bin 0 -> 10536 bytes .../network/__pycache__/utils.cpython-39.pyc | Bin 0 -> 1418 bytes .../network/__pycache__/xmlrpc.cpython-39.pyc | Bin 0 -> 2039 bytes .../pip/_internal/network/auth.py | 316 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 184 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 454 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 188 bytes .../__pycache__/check.cpython-39.pyc | Bin 0 -> 3933 bytes .../__pycache__/freeze.cpython-39.pyc | Bin 0 -> 6274 bytes .../__pycache__/prepare.cpython-39.pyc | Bin 0 -> 14214 bytes .../_internal/operations/build/__init__.py | 0 .../build/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 194 bytes .../build/__pycache__/metadata.cpython-39.pyc | Bin 0 -> 1140 bytes .../metadata_legacy.cpython-39.pyc | Bin 0 -> 1914 bytes .../build/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 1119 bytes .../__pycache__/wheel_legacy.cpython-39.pyc | Bin 0 -> 2513 bytes .../_internal/operations/build/metadata.py | 35 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 38 + .../operations/build/wheel_legacy.py | 110 + .../pip/_internal/operations/check.py | 153 + .../pip/_internal/operations/freeze.py | 277 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 252 bytes .../editable_legacy.cpython-39.pyc | Bin 0 -> 1295 bytes .../install/__pycache__/legacy.cpython-39.pyc | Bin 0 -> 3456 bytes .../install/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 20295 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 132 + .../pip/_internal/operations/install/wheel.py | 803 ++ .../pip/_internal/operations/prepare.py | 655 ++ .../site-packages/pip/_internal/pyproject.py | 183 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 2551 bytes .../__pycache__/constructors.cpython-39.pyc | Bin 0 -> 11667 bytes .../req/__pycache__/req_file.cpython-39.pyc | Bin 0 -> 13361 bytes .../__pycache__/req_install.cpython-39.pyc | Bin 0 -> 21362 bytes .../req/__pycache__/req_set.cpython-39.pyc | Bin 0 -> 5888 bytes .../__pycache__/req_tracker.cpython-39.pyc | Bin 0 -> 4271 bytes .../__pycache__/req_uninstall.cpython-39.pyc | Bin 0 -> 18754 bytes .../pip/_internal/req/constructors.py | 474 + .../pip/_internal/req/req_file.py | 528 ++ .../pip/_internal/req/req_install.py | 846 ++ .../pip/_internal/req/req_set.py | 190 + .../pip/_internal/req/req_tracker.py | 130 + .../pip/_internal/req/req_uninstall.py | 629 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 188 bytes .../__pycache__/base.cpython-39.pyc | Bin 0 -> 1018 bytes .../pip/_internal/resolution/base.py | 18 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 195 bytes .../__pycache__/resolver.cpython-39.pyc | Bin 0 -> 11986 bytes .../_internal/resolution/legacy/resolver.py | 453 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 199 bytes .../__pycache__/base.cpython-39.pyc | Bin 0 -> 6735 bytes .../__pycache__/candidates.cpython-39.pyc | Bin 0 -> 19026 bytes .../__pycache__/factory.cpython-39.pyc | Bin 0 -> 18443 bytes .../found_candidates.cpython-39.pyc | Bin 0 -> 4788 bytes .../__pycache__/provider.cpython-39.pyc | Bin 0 -> 6745 bytes .../__pycache__/reporter.cpython-39.pyc | Bin 0 -> 3318 bytes .../__pycache__/requirements.cpython-39.pyc | Bin 0 -> 7569 bytes .../__pycache__/resolver.cpython-39.pyc | Bin 0 -> 7764 bytes .../_internal/resolution/resolvelib/base.py | 144 + .../resolution/resolvelib/candidates.py | 555 ++ .../resolution/resolvelib/factory.py | 700 ++ .../resolution/resolvelib/found_candidates.py | 142 + .../resolution/resolvelib/provider.py | 197 + .../resolution/resolvelib/reporter.py | 69 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 272 + .../pip/_internal/self_outdated_check.py | 187 + .../pip/_internal/utils/__init__.py | 0 .../utils/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 183 bytes .../utils/__pycache__/_log.cpython-39.pyc | Bin 0 -> 1508 bytes .../utils/__pycache__/appdirs.cpython-39.pyc | Bin 0 -> 1321 bytes .../utils/__pycache__/compat.cpython-39.pyc | Bin 0 -> 1502 bytes .../compatibility_tags.cpython-39.pyc | Bin 0 -> 4101 bytes .../utils/__pycache__/datetime.cpython-39.pyc | Bin 0 -> 502 bytes .../__pycache__/deprecation.cpython-39.pyc | Bin 0 -> 2965 bytes .../direct_url_helpers.cpython-39.pyc | Bin 0 -> 1812 bytes .../__pycache__/distutils_args.cpython-39.pyc | Bin 0 -> 1088 bytes .../utils/__pycache__/encoding.cpython-39.pyc | Bin 0 -> 1292 bytes .../__pycache__/entrypoints.cpython-39.pyc | Bin 0 -> 1293 bytes .../__pycache__/filesystem.cpython-39.pyc | Bin 0 -> 5129 bytes .../__pycache__/filetypes.cpython-39.pyc | Bin 0 -> 795 bytes .../utils/__pycache__/glibc.cpython-39.pyc | Bin 0 -> 1605 bytes .../utils/__pycache__/hashes.cpython-39.pyc | Bin 0 -> 4987 bytes .../inject_securetransport.cpython-39.pyc | Bin 0 -> 956 bytes .../utils/__pycache__/logging.cpython-39.pyc | Bin 0 -> 9036 bytes .../utils/__pycache__/misc.cpython-39.pyc | Bin 0 -> 21656 bytes .../utils/__pycache__/models.cpython-39.pyc | Bin 0 -> 1887 bytes .../__pycache__/packaging.cpython-39.pyc | Bin 0 -> 2511 bytes .../utils/__pycache__/parallel.cpython-39.pyc | Bin 0 -> 3028 bytes .../__pycache__/pkg_resources.cpython-39.pyc | Bin 0 -> 1709 bytes .../setuptools_build.cpython-39.pyc | Bin 0 -> 2953 bytes .../__pycache__/subprocess.cpython-39.pyc | Bin 0 -> 5690 bytes .../utils/__pycache__/temp_dir.cpython-39.pyc | Bin 0 -> 6827 bytes .../__pycache__/unpacking.cpython-39.pyc | Bin 0 -> 6471 bytes .../utils/__pycache__/urls.cpython-39.pyc | Bin 0 -> 1527 bytes .../__pycache__/virtualenv.cpython-39.pyc | Bin 0 -> 3206 bytes .../utils/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 5957 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 35 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 168 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 104 + .../pip/_internal/utils/direct_url_helpers.py | 79 + .../pip/_internal/utils/distutils_args.py | 42 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../pip/_internal/utils/filetypes.py | 28 + .../pip/_internal/utils/glibc.py | 92 + .../pip/_internal/utils/hashes.py | 165 + .../_internal/utils/inject_securetransport.py | 36 + .../pip/_internal/utils/logging.py | 391 + .../site-packages/pip/_internal/utils/misc.py | 828 ++ .../pip/_internal/utils/models.py | 47 + .../pip/_internal/utils/packaging.py | 89 + .../pip/_internal/utils/parallel.py | 101 + .../pip/_internal/utils/pkg_resources.py | 40 + .../pip/_internal/utils/setuptools_build.py | 173 + .../pip/_internal/utils/subprocess.py | 281 + .../pip/_internal/utils/temp_dir.py | 260 + .../pip/_internal/utils/unpacking.py | 267 + .../site-packages/pip/_internal/utils/urls.py | 65 + .../pip/_internal/utils/virtualenv.py | 111 + .../pip/_internal/utils/wheel.py | 189 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 506 bytes .../vcs/__pycache__/bazaar.cpython-39.pyc | Bin 0 -> 2992 bytes .../vcs/__pycache__/git.cpython-39.pyc | Bin 0 -> 11707 bytes .../vcs/__pycache__/mercurial.cpython-39.pyc | Bin 0 -> 4639 bytes .../vcs/__pycache__/subversion.cpython-39.pyc | Bin 0 -> 7953 bytes .../__pycache__/versioncontrol.cpython-39.pyc | Bin 0 -> 19476 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 96 + .../site-packages/pip/_internal/vcs/git.py | 506 + .../pip/_internal/vcs/mercurial.py | 158 + .../pip/_internal/vcs/subversion.py | 329 + .../pip/_internal/vcs/versioncontrol.py | 722 ++ .../pip/_internal/wheel_builder.py | 360 + .../site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 2891 bytes .../__pycache__/appdirs.cpython-39.pyc | Bin 0 -> 21391 bytes .../_vendor/__pycache__/distro.cpython-39.pyc | Bin 0 -> 36870 bytes .../__pycache__/pyparsing.cpython-39.pyc | Bin 0 -> 240427 bytes .../_vendor/__pycache__/six.cpython-39.pyc | Bin 0 -> 27500 bytes .../site-packages/pip/_vendor/appdirs.py | 633 ++ .../pip/_vendor/cachecontrol/__init__.py | 11 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 541 bytes .../__pycache__/_cmd.cpython-39.pyc | Bin 0 -> 1562 bytes .../__pycache__/adapter.cpython-39.pyc | Bin 0 -> 3067 bytes .../__pycache__/cache.cpython-39.pyc | Bin 0 -> 1814 bytes .../__pycache__/compat.cpython-39.pyc | Bin 0 -> 738 bytes .../__pycache__/controller.cpython-39.pyc | Bin 0 -> 7755 bytes .../__pycache__/filewrapper.cpython-39.pyc | Bin 0 -> 2163 bytes .../__pycache__/heuristics.cpython-39.pyc | Bin 0 -> 4695 bytes .../__pycache__/serialize.cpython-39.pyc | Bin 0 -> 4214 bytes .../__pycache__/wrapper.cpython-39.pyc | Bin 0 -> 665 bytes .../pip/_vendor/cachecontrol/_cmd.py | 57 + .../pip/_vendor/cachecontrol/adapter.py | 133 + .../pip/_vendor/cachecontrol/cache.py | 39 + .../_vendor/cachecontrol/caches/__init__.py | 2 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 285 bytes .../__pycache__/file_cache.cpython-39.pyc | Bin 0 -> 3301 bytes .../__pycache__/redis_cache.cpython-39.pyc | Bin 0 -> 1557 bytes .../_vendor/cachecontrol/caches/file_cache.py | 146 + .../cachecontrol/caches/redis_cache.py | 33 + .../pip/_vendor/cachecontrol/compat.py | 29 + .../pip/_vendor/cachecontrol/controller.py | 376 + .../pip/_vendor/cachecontrol/filewrapper.py | 80 + .../pip/_vendor/cachecontrol/heuristics.py | 135 + .../pip/_vendor/cachecontrol/serialize.py | 188 + .../pip/_vendor/cachecontrol/wrapper.py | 29 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 267 bytes .../__pycache__/__main__.cpython-39.pyc | Bin 0 -> 444 bytes .../certifi/__pycache__/core.cpython-39.pyc | Bin 0 -> 1535 bytes .../pip/_vendor/certifi/cacert.pem | 4257 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1891 bytes .../__pycache__/big5freq.cpython-39.pyc | Bin 0 -> 27170 bytes .../__pycache__/big5prober.cpython-39.pyc | Bin 0 -> 1125 bytes .../chardistribution.cpython-39.pyc | Bin 0 -> 6211 bytes .../charsetgroupprober.cpython-39.pyc | Bin 0 -> 2252 bytes .../__pycache__/charsetprober.cpython-39.pyc | Bin 0 -> 3474 bytes .../codingstatemachine.cpython-39.pyc | Bin 0 -> 2901 bytes .../chardet/__pycache__/compat.cpython-39.pyc | Bin 0 -> 390 bytes .../__pycache__/cp949prober.cpython-39.pyc | Bin 0 -> 1132 bytes .../chardet/__pycache__/enums.cpython-39.pyc | Bin 0 -> 2639 bytes .../__pycache__/escprober.cpython-39.pyc | Bin 0 -> 2624 bytes .../chardet/__pycache__/escsm.cpython-39.pyc | Bin 0 -> 7073 bytes .../__pycache__/eucjpprober.cpython-39.pyc | Bin 0 -> 2438 bytes .../__pycache__/euckrfreq.cpython-39.pyc | Bin 0 -> 12054 bytes .../__pycache__/euckrprober.cpython-39.pyc | Bin 0 -> 1133 bytes .../__pycache__/euctwfreq.cpython-39.pyc | Bin 0 -> 27174 bytes .../__pycache__/euctwprober.cpython-39.pyc | Bin 0 -> 1133 bytes .../__pycache__/gb2312freq.cpython-39.pyc | Bin 0 -> 19098 bytes .../__pycache__/gb2312prober.cpython-39.pyc | Bin 0 -> 1141 bytes .../__pycache__/hebrewprober.cpython-39.pyc | Bin 0 -> 3010 bytes .../__pycache__/jisfreq.cpython-39.pyc | Bin 0 -> 22126 bytes .../chardet/__pycache__/jpcntx.cpython-39.pyc | Bin 0 -> 37599 bytes .../langbulgarianmodel.cpython-39.pyc | Bin 0 -> 21801 bytes .../__pycache__/langgreekmodel.cpython-39.pyc | Bin 0 -> 20477 bytes .../langhebrewmodel.cpython-39.pyc | Bin 0 -> 20545 bytes .../langhungarianmodel.cpython-39.pyc | Bin 0 -> 21746 bytes .../langrussianmodel.cpython-39.pyc | Bin 0 -> 26349 bytes .../__pycache__/langthaimodel.cpython-39.pyc | Bin 0 -> 20721 bytes .../langturkishmodel.cpython-39.pyc | Bin 0 -> 20561 bytes .../__pycache__/latin1prober.cpython-39.pyc | Bin 0 -> 2946 bytes .../mbcharsetprober.cpython-39.pyc | Bin 0 -> 2253 bytes .../mbcsgroupprober.cpython-39.pyc | Bin 0 -> 1122 bytes .../chardet/__pycache__/mbcssm.cpython-39.pyc | Bin 0 -> 15709 bytes .../sbcharsetprober.cpython-39.pyc | Bin 0 -> 3106 bytes .../sbcsgroupprober.cpython-39.pyc | Bin 0 -> 1691 bytes .../__pycache__/sjisprober.cpython-39.pyc | Bin 0 -> 2474 bytes .../universaldetector.cpython-39.pyc | Bin 0 -> 5822 bytes .../__pycache__/utf8prober.cpython-39.pyc | Bin 0 -> 1983 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 430 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 187 bytes .../cli/__pycache__/chardetect.cpython-39.pyc | Bin 0 -> 2681 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 192 bytes .../__pycache__/languages.cpython-39.pyc | Bin 0 -> 7923 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 435 bytes .../colorama/__pycache__/ansi.cpython-39.pyc | Bin 0 -> 3220 bytes .../__pycache__/ansitowin32.cpython-39.pyc | Bin 0 -> 7686 bytes .../__pycache__/initialise.cpython-39.pyc | Bin 0 -> 1702 bytes .../colorama/__pycache__/win32.cpython-39.pyc | Bin 0 -> 3934 bytes .../__pycache__/winterm.cpython-39.pyc | Bin 0 -> 4656 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1048 bytes .../distlib/__pycache__/compat.cpython-39.pyc | Bin 0 -> 32150 bytes .../__pycache__/database.cpython-39.pyc | Bin 0 -> 42472 bytes .../distlib/__pycache__/index.cpython-39.pyc | Bin 0 -> 17281 bytes .../__pycache__/locators.cpython-39.pyc | Bin 0 -> 38245 bytes .../__pycache__/manifest.cpython-39.pyc | Bin 0 -> 10184 bytes .../__pycache__/markers.cpython-39.pyc | Bin 0 -> 4428 bytes .../__pycache__/metadata.cpython-39.pyc | Bin 0 -> 26579 bytes .../__pycache__/resources.cpython-39.pyc | Bin 0 -> 11002 bytes .../__pycache__/scripts.cpython-39.pyc | Bin 0 -> 11085 bytes .../distlib/__pycache__/util.cpython-39.pyc | Bin 0 -> 52587 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 20339 bytes .../distlib/__pycache__/wheel.cpython-39.pyc | Bin 0 -> 27212 bytes .../pip/_vendor/distlib/_backport/__init__.py | 6 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 475 bytes .../_backport/__pycache__/misc.cpython-39.pyc | Bin 0 -> 1095 bytes .../__pycache__/shutil.cpython-39.pyc | Bin 0 -> 21669 bytes .../__pycache__/sysconfig.cpython-39.pyc | Bin 0 -> 15959 bytes .../__pycache__/tarfile.cpython-39.pyc | Bin 0 -> 62723 bytes .../pip/_vendor/distlib/_backport/misc.py | 41 + .../pip/_vendor/distlib/_backport/shutil.py | 764 ++ .../_vendor/distlib/_backport/sysconfig.cfg | 84 + .../_vendor/distlib/_backport/sysconfig.py | 786 ++ .../pip/_vendor/distlib/_backport/tarfile.py | 2607 +++++ .../pip/_vendor/distlib/compat.py | 1120 +++ .../pip/_vendor/distlib/database.py | 1339 +++ .../pip/_vendor/distlib/index.py | 509 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 130 + .../pip/_vendor/distlib/metadata.py | 1058 +++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 423 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 96768 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 105984 bytes .../site-packages/pip/_vendor/distlib/util.py | 1965 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 90112 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 99840 bytes .../pip/_vendor/distlib/wheel.py | 1056 +++ .../site-packages/pip/_vendor/distro.py | 1230 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1294 bytes .../__pycache__/_ihatexml.cpython-39.pyc | Bin 0 -> 13763 bytes .../__pycache__/_inputstream.cpython-39.pyc | Bin 0 -> 21622 bytes .../__pycache__/_tokenizer.cpython-39.pyc | Bin 0 -> 39717 bytes .../__pycache__/_utils.cpython-39.pyc | Bin 0 -> 4794 bytes .../__pycache__/constants.cpython-39.pyc | Bin 0 -> 66332 bytes .../__pycache__/html5parser.cpython-39.pyc | Bin 0 -> 91003 bytes .../__pycache__/serializer.cpython-39.pyc | Bin 0 -> 10805 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../_trie/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 344 bytes .../_trie/__pycache__/_base.cpython-39.pyc | Bin 0 -> 1588 bytes .../_trie/__pycache__/py.cpython-39.pyc | Bin 0 -> 2249 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 192 bytes .../alphabeticalattributes.cpython-39.pyc | Bin 0 -> 1314 bytes .../filters/__pycache__/base.cpython-39.pyc | Bin 0 -> 862 bytes .../inject_meta_charset.cpython-39.pyc | Bin 0 -> 1868 bytes .../filters/__pycache__/lint.cpython-39.pyc | Bin 0 -> 2610 bytes .../__pycache__/optionaltags.cpython-39.pyc | Bin 0 -> 2755 bytes .../__pycache__/sanitizer.cpython-39.pyc | Bin 0 -> 16878 bytes .../__pycache__/whitespace.cpython-39.pyc | Bin 0 -> 1360 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 929 bytes .../__pycache__/genshi.cpython-39.pyc | Bin 0 -> 1537 bytes .../__pycache__/sax.cpython-39.pyc | Bin 0 -> 1456 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 3324 bytes .../__pycache__/base.cpython-39.pyc | Bin 0 -> 11308 bytes .../__pycache__/dom.cpython-39.pyc | Bin 0 -> 9445 bytes .../__pycache__/etree.cpython-39.pyc | Bin 0 -> 11813 bytes .../__pycache__/etree_lxml.cpython-39.pyc | Bin 0 -> 12996 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 3990 bytes .../__pycache__/base.cpython-39.pyc | Bin 0 -> 6989 bytes .../__pycache__/dom.cpython-39.pyc | Bin 0 -> 1724 bytes .../__pycache__/etree.cpython-39.pyc | Bin 0 -> 3486 bytes .../__pycache__/etree_lxml.cpython-39.pyc | Bin 0 -> 6623 bytes .../__pycache__/genshi.cpython-39.pyc | Bin 0 -> 1880 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 839 bytes .../idna/__pycache__/codec.cpython-39.pyc | Bin 0 -> 2870 bytes .../idna/__pycache__/compat.cpython-39.pyc | Bin 0 -> 676 bytes .../idna/__pycache__/core.cpython-39.pyc | Bin 0 -> 9144 bytes .../idna/__pycache__/idnadata.cpython-39.pyc | Bin 0 -> 22130 bytes .../idna/__pycache__/intranges.cpython-39.pyc | Bin 0 -> 1852 bytes .../__pycache__/package_data.cpython-39.pyc | Bin 0 -> 203 bytes .../idna/__pycache__/uts46data.cpython-39.pyc | Bin 0 -> 146163 bytes .../site-packages/pip/_vendor/idna/codec.py | 117 + .../site-packages/pip/_vendor/idna/compat.py | 16 + .../site-packages/pip/_vendor/idna/core.py | 409 + .../pip/_vendor/idna/idnadata.py | 2050 ++++ .../pip/_vendor/idna/intranges.py | 58 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8438 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1406 bytes .../__pycache__/_version.cpython-39.pyc | Bin 0 -> 210 bytes .../__pycache__/exceptions.cpython-39.pyc | Bin 0 -> 1844 bytes .../msgpack/__pycache__/ext.cpython-39.pyc | Bin 0 -> 6272 bytes .../__pycache__/fallback.cpython-39.pyc | Bin 0 -> 26718 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1087 +++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-39.pyc | Bin 0 -> 582 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 438 bytes .../__pycache__/_manylinux.cpython-39.pyc | Bin 0 -> 7286 bytes .../__pycache__/_musllinux.cpython-39.pyc | Bin 0 -> 4601 bytes .../__pycache__/_structures.cpython-39.pyc | Bin 0 -> 3074 bytes .../__pycache__/markers.cpython-39.pyc | Bin 0 -> 9445 bytes .../__pycache__/requirements.cpython-39.pyc | Bin 0 -> 3966 bytes .../__pycache__/specifiers.cpython-39.pyc | Bin 0 -> 22202 bytes .../packaging/__pycache__/tags.cpython-39.pyc | Bin 0 -> 12281 bytes .../__pycache__/utils.cpython-39.pyc | Bin 0 -> 3603 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 13144 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 67 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 828 ++ .../pip/_vendor/packaging/tags.py | 484 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 305 bytes .../pep517/__pycache__/build.cpython-39.pyc | Bin 0 -> 3570 bytes .../pep517/__pycache__/check.cpython-39.pyc | Bin 0 -> 5117 bytes .../__pycache__/colorlog.cpython-39.pyc | Bin 0 -> 2930 bytes .../pep517/__pycache__/compat.cpython-39.pyc | Bin 0 -> 1285 bytes .../__pycache__/dirtools.cpython-39.pyc | Bin 0 -> 1339 bytes .../__pycache__/envbuild.cpython-39.pyc | Bin 0 -> 4516 bytes .../pep517/__pycache__/meta.cpython-39.pyc | Bin 0 -> 2912 bytes .../__pycache__/wrappers.cpython-39.pyc | Bin 0 -> 12262 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 207 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 42 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 907 bytes .../__pycache__/_in_process.cpython-39.pyc | Bin 0 -> 9923 bytes .../_vendor/pep517/in_process/_in_process.py | 349 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 371 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 100323 bytes .../__pycache__/py31compat.cpython-39.pyc | Bin 0 -> 642 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/progress/__init__.py | 177 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 5649 bytes .../progress/__pycache__/bar.cpython-39.pyc | Bin 0 -> 2631 bytes .../__pycache__/counter.cpython-39.pyc | Bin 0 -> 1465 bytes .../__pycache__/spinner.cpython-39.pyc | Bin 0 -> 1382 bytes .../site-packages/pip/_vendor/progress/bar.py | 91 + .../pip/_vendor/progress/counter.py | 41 + .../pip/_vendor/progress/spinner.py | 43 + .../site-packages/pip/_vendor/pyparsing.py | 7107 ++++++++++++++ .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 3994 bytes .../__pycache__/__version__.cpython-39.pyc | Bin 0 -> 547 bytes .../_internal_utils.cpython-39.pyc | Bin 0 -> 1294 bytes .../__pycache__/adapters.cpython-39.pyc | Bin 0 -> 16965 bytes .../requests/__pycache__/api.cpython-39.pyc | Bin 0 -> 6711 bytes .../requests/__pycache__/auth.cpython-39.pyc | Bin 0 -> 8323 bytes .../requests/__pycache__/certs.cpython-39.pyc | Bin 0 -> 625 bytes .../__pycache__/compat.cpython-39.pyc | Bin 0 -> 1604 bytes .../__pycache__/cookies.cpython-39.pyc | Bin 0 -> 18814 bytes .../__pycache__/exceptions.cpython-39.pyc | Bin 0 -> 5397 bytes .../requests/__pycache__/help.cpython-39.pyc | Bin 0 -> 2885 bytes .../requests/__pycache__/hooks.cpython-39.pyc | Bin 0 -> 982 bytes .../__pycache__/models.cpython-39.pyc | Bin 0 -> 24462 bytes .../__pycache__/packages.cpython-39.pyc | Bin 0 -> 494 bytes .../__pycache__/sessions.cpython-39.pyc | Bin 0 -> 19849 bytes .../__pycache__/status_codes.cpython-39.pyc | Bin 0 -> 4231 bytes .../__pycache__/structures.cpython-39.pyc | Bin 0 -> 4452 bytes .../requests/__pycache__/utils.cpython-39.pyc | Bin 0 -> 23316 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 533 ++ .../site-packages/pip/_vendor/requests/api.py | 159 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 76 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 127 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 966 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 781 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1013 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 598 bytes .../__pycache__/providers.cpython-39.pyc | Bin 0 -> 6518 bytes .../__pycache__/reporters.cpython-39.pyc | Bin 0 -> 2294 bytes .../__pycache__/resolvers.cpython-39.pyc | Bin 0 -> 15145 bytes .../__pycache__/structs.cpython-39.pyc | Bin 0 -> 7271 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 193 bytes .../collections_abc.cpython-39.pyc | Bin 0 -> 367 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 124 + .../pip/_vendor/resolvelib/reporters.py | 37 + .../pip/_vendor/resolvelib/resolvers.py | 473 + .../pip/_vendor/resolvelib/structs.py | 165 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 16271 bytes .../__pycache__/_asyncio.cpython-39.pyc | Bin 0 -> 2586 bytes .../__pycache__/_utils.cpython-39.pyc | Bin 0 -> 1223 bytes .../tenacity/__pycache__/after.cpython-39.pyc | Bin 0 -> 1202 bytes .../__pycache__/before.cpython-39.pyc | Bin 0 -> 1090 bytes .../__pycache__/before_sleep.cpython-39.pyc | Bin 0 -> 1382 bytes .../tenacity/__pycache__/nap.cpython-39.pyc | Bin 0 -> 1184 bytes .../tenacity/__pycache__/retry.cpython-39.pyc | Bin 0 -> 8772 bytes .../tenacity/__pycache__/stop.cpython-39.pyc | Bin 0 -> 4236 bytes .../__pycache__/tornadoweb.cpython-39.pyc | Bin 0 -> 1736 bytes .../tenacity/__pycache__/wait.cpython-39.pyc | Bin 0 -> 7948 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 213 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 191 + .../pip/_vendor/tomli/__init__.py | 6 + .../tomli/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 371 bytes .../tomli/__pycache__/_parser.cpython-39.pyc | Bin 0 -> 16346 bytes .../tomli/__pycache__/_re.cpython-39.pyc | Bin 0 -> 2421 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 2181 bytes .../__pycache__/_collections.cpython-39.pyc | Bin 0 -> 10776 bytes .../__pycache__/_version.cpython-39.pyc | Bin 0 -> 205 bytes .../__pycache__/connection.cpython-39.pyc | Bin 0 -> 13362 bytes .../__pycache__/connectionpool.cpython-39.pyc | Bin 0 -> 24458 bytes .../__pycache__/exceptions.cpython-39.pyc | Bin 0 -> 11638 bytes .../urllib3/__pycache__/fields.cpython-39.pyc | Bin 0 -> 8153 bytes .../__pycache__/filepost.cpython-39.pyc | Bin 0 -> 2754 bytes .../__pycache__/poolmanager.cpython-39.pyc | Bin 0 -> 15156 bytes .../__pycache__/request.cpython-39.pyc | Bin 0 -> 5617 bytes .../__pycache__/response.cpython-39.pyc | Bin 0 -> 20828 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 539 ++ .../pip/_vendor/urllib3/connectionpool.py | 1067 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 191 bytes .../_appengine_environ.cpython-39.pyc | Bin 0 -> 1411 bytes .../__pycache__/appengine.cpython-39.pyc | Bin 0 -> 8264 bytes .../__pycache__/ntlmpool.cpython-39.pyc | Bin 0 -> 3618 bytes .../__pycache__/pyopenssl.cpython-39.pyc | Bin 0 -> 15586 bytes .../securetransport.cpython-39.pyc | Bin 0 -> 21902 bytes .../contrib/__pycache__/socks.cpython-39.pyc | Bin 0 -> 5627 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 208 bytes .../__pycache__/bindings.cpython-39.pyc | Bin 0 -> 10715 bytes .../__pycache__/low_level.cpython-39.pyc | Bin 0 -> 9164 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 396 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 511 + .../urllib3/contrib/securetransport.py | 922 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 5 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 305 bytes .../packages/__pycache__/six.cpython-39.pyc | Bin 0 -> 27575 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 202 bytes .../__pycache__/makefile.cpython-39.pyc | Bin 0 -> 1300 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../packages/ssl_match_hostname/__init__.py | 24 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 564 bytes .../_implementation.cpython-39.pyc | Bin 0 -> 3295 bytes .../ssl_match_hostname/_implementation.py | 160 + .../pip/_vendor/urllib3/poolmanager.py | 536 ++ .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-39.pyc | Bin 0 -> 1101 bytes .../__pycache__/connection.cpython-39.pyc | Bin 0 -> 3453 bytes .../util/__pycache__/proxy.cpython-39.pyc | Bin 0 -> 1337 bytes .../util/__pycache__/queue.cpython-39.pyc | Bin 0 -> 1056 bytes .../util/__pycache__/request.cpython-39.pyc | Bin 0 -> 3444 bytes .../util/__pycache__/response.cpython-39.pyc | Bin 0 -> 2341 bytes .../util/__pycache__/retry.cpython-39.pyc | Bin 0 -> 15828 bytes .../util/__pycache__/ssl_.cpython-39.pyc | Bin 0 -> 11325 bytes .../__pycache__/ssltransport.cpython-39.pyc | Bin 0 -> 7506 bytes .../util/__pycache__/timeout.cpython-39.pyc | Bin 0 -> 8939 bytes .../util/__pycache__/url.cpython-39.pyc | Bin 0 -> 10664 bytes .../util/__pycache__/wait.cpython-39.pyc | Bin 0 -> 3124 bytes .../pip/_vendor/urllib3/util/connection.py | 150 + .../pip/_vendor/urllib3/util/proxy.py | 56 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 143 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 602 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 432 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../site-packages/pip/_vendor/vendor.txt | 22 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 9715 bytes .../__pycache__/labels.cpython-39.pyc | Bin 0 -> 3829 bytes .../__pycache__/mklabels.cpython-39.pyc | Bin 0 -> 1899 bytes .../__pycache__/tests.cpython-39.pyc | Bin 0 -> 5063 bytes .../__pycache__/x_user_defined.cpython-39.pyc | Bin 0 -> 2659 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.9/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3288 +++++++ .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 100431 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 185 bytes .../__pycache__/appdirs.cpython-39.pyc | Bin 0 -> 20502 bytes .../__pycache__/pyparsing.cpython-39.pyc | Bin 0 -> 201339 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 27 + .../_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-39.pyc | Bin 0 -> 701 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 547 bytes .../__pycache__/_compat.cpython-39.pyc | Bin 0 -> 1145 bytes .../__pycache__/_structures.cpython-39.pyc | Bin 0 -> 2899 bytes .../__pycache__/_typing.cpython-39.pyc | Bin 0 -> 1490 bytes .../__pycache__/markers.cpython-39.pyc | Bin 0 -> 9306 bytes .../__pycache__/requirements.cpython-39.pyc | Bin 0 -> 4083 bytes .../__pycache__/specifiers.cpython-39.pyc | Bin 0 -> 20582 bytes .../packaging/__pycache__/tags.cpython-39.pyc | Bin 0 -> 17261 bytes .../__pycache__/utils.cpython-39.pyc | Bin 0 -> 1652 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 13319 bytes .../_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../_vendor/packaging/_typing.py | 48 + .../_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../pkg_resources/_vendor/packaging/tags.py | 751 ++ .../pkg_resources/_vendor/packaging/utils.py | 65 + .../_vendor/packaging/version.py | 535 ++ .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 2874 bytes .../__pycache__/setup.cpython-39.pyc | Bin 0 -> 313 bytes .../data/my-test-package-source/setup.py | 6 + .../setuptools-57.4.0.dist-info/INSTALLER | 1 + .../setuptools-57.4.0.dist-info/LICENSE | 19 + .../setuptools-57.4.0.dist-info/METADATA | 119 + .../setuptools-57.4.0.dist-info/RECORD | 298 + .../setuptools-57.4.0.dist-info/REQUESTED | 0 .../setuptools-57.4.0.dist-info/WHEEL | 5 + .../entry_points.txt | 60 + .../setuptools-57.4.0.dist-info/top_level.txt | 3 + .../site-packages/setuptools/__init__.py | 241 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 8618 bytes .../_deprecation_warning.cpython-39.pyc | Bin 0 -> 544 bytes .../__pycache__/_imp.cpython-39.pyc | Bin 0 -> 2079 bytes .../__pycache__/archive_util.cpython-39.pyc | Bin 0 -> 5808 bytes .../__pycache__/build_meta.cpython-39.pyc | Bin 0 -> 9067 bytes .../__pycache__/config.cpython-39.pyc | Bin 0 -> 19957 bytes .../__pycache__/dep_util.cpython-39.pyc | Bin 0 -> 851 bytes .../__pycache__/depends.cpython-39.pyc | Bin 0 -> 5243 bytes .../__pycache__/dist.cpython-39.pyc | Bin 0 -> 36238 bytes .../__pycache__/errors.cpython-39.pyc | Bin 0 -> 844 bytes .../__pycache__/extension.cpython-39.pyc | Bin 0 -> 1938 bytes .../__pycache__/glob.cpython-39.pyc | Bin 0 -> 3688 bytes .../__pycache__/installer.cpython-39.pyc | Bin 0 -> 2765 bytes .../__pycache__/launch.cpython-39.pyc | Bin 0 -> 895 bytes .../__pycache__/lib2to3_ex.cpython-39.pyc | Bin 0 -> 2697 bytes .../__pycache__/monkey.cpython-39.pyc | Bin 0 -> 4607 bytes .../__pycache__/msvc.cpython-39.pyc | Bin 0 -> 42833 bytes .../__pycache__/namespaces.cpython-39.pyc | Bin 0 -> 3594 bytes .../__pycache__/package_index.cpython-39.pyc | Bin 0 -> 32630 bytes .../__pycache__/py34compat.cpython-39.pyc | Bin 0 -> 474 bytes .../__pycache__/sandbox.cpython-39.pyc | Bin 0 -> 15768 bytes .../__pycache__/unicode_utils.cpython-39.pyc | Bin 0 -> 1108 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 318 bytes .../__pycache__/wheel.cpython-39.pyc | Bin 0 -> 7274 bytes .../windows_support.cpython-39.pyc | Bin 0 -> 1017 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 15 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 452 bytes .../__pycache__/_msvccompiler.cpython-39.pyc | Bin 0 -> 13807 bytes .../__pycache__/archive_util.cpython-39.pyc | Bin 0 -> 6639 bytes .../__pycache__/bcppcompiler.cpython-39.pyc | Bin 0 -> 6550 bytes .../__pycache__/ccompiler.cpython-39.pyc | Bin 0 -> 33418 bytes .../_distutils/__pycache__/cmd.cpython-39.pyc | Bin 0 -> 13978 bytes .../__pycache__/config.cpython-39.pyc | Bin 0 -> 3581 bytes .../__pycache__/core.cpython-39.pyc | Bin 0 -> 6706 bytes .../cygwinccompiler.cpython-39.pyc | Bin 0 -> 8786 bytes .../__pycache__/debug.cpython-39.pyc | Bin 0 -> 248 bytes .../__pycache__/dep_util.cpython-39.pyc | Bin 0 -> 2768 bytes .../__pycache__/dir_util.cpython-39.pyc | Bin 0 -> 5869 bytes .../__pycache__/dist.cpython-39.pyc | Bin 0 -> 34439 bytes .../__pycache__/errors.cpython-39.pyc | Bin 0 -> 5304 bytes .../__pycache__/extension.cpython-39.pyc | Bin 0 -> 6969 bytes .../__pycache__/fancy_getopt.cpython-39.pyc | Bin 0 -> 10677 bytes .../__pycache__/file_util.cpython-39.pyc | Bin 0 -> 6035 bytes .../__pycache__/filelist.cpython-39.pyc | Bin 0 -> 10827 bytes .../_distutils/__pycache__/log.cpython-39.pyc | Bin 0 -> 2367 bytes .../__pycache__/msvc9compiler.cpython-39.pyc | Bin 0 -> 17564 bytes .../__pycache__/msvccompiler.cpython-39.pyc | Bin 0 -> 14759 bytes .../__pycache__/py35compat.cpython-39.pyc | Bin 0 -> 624 bytes .../__pycache__/py38compat.cpython-39.pyc | Bin 0 -> 419 bytes .../__pycache__/spawn.cpython-39.pyc | Bin 0 -> 2895 bytes .../__pycache__/sysconfig.cpython-39.pyc | Bin 0 -> 12401 bytes .../__pycache__/text_file.cpython-39.pyc | Bin 0 -> 8493 bytes .../__pycache__/unixccompiler.cpython-39.pyc | Bin 0 -> 6832 bytes .../__pycache__/util.cpython-39.pyc | Bin 0 -> 17331 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 7393 bytes .../versionpredicate.cpython-39.pyc | Bin 0 -> 5177 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1123 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 527 bytes .../command/__pycache__/bdist.cpython-39.pyc | Bin 0 -> 3657 bytes .../__pycache__/bdist_dumb.cpython-39.pyc | Bin 0 -> 3640 bytes .../__pycache__/bdist_msi.cpython-39.pyc | Bin 0 -> 19822 bytes .../__pycache__/bdist_rpm.cpython-39.pyc | Bin 0 -> 12277 bytes .../__pycache__/bdist_wininst.cpython-39.pyc | Bin 0 -> 8597 bytes .../command/__pycache__/build.cpython-39.pyc | Bin 0 -> 3929 bytes .../__pycache__/build_clib.cpython-39.pyc | Bin 0 -> 4852 bytes .../__pycache__/build_ext.cpython-39.pyc | Bin 0 -> 16311 bytes .../__pycache__/build_py.cpython-39.pyc | Bin 0 -> 10485 bytes .../__pycache__/build_scripts.cpython-39.pyc | Bin 0 -> 4382 bytes .../command/__pycache__/check.cpython-39.pyc | Bin 0 -> 4961 bytes .../command/__pycache__/clean.cpython-39.pyc | Bin 0 -> 2134 bytes .../command/__pycache__/config.cpython-39.pyc | Bin 0 -> 10264 bytes .../__pycache__/install.cpython-39.pyc | Bin 0 -> 13845 bytes .../__pycache__/install_data.cpython-39.pyc | Bin 0 -> 2337 bytes .../install_egg_info.cpython-39.pyc | Bin 0 -> 3072 bytes .../install_headers.cpython-39.pyc | Bin 0 -> 1762 bytes .../__pycache__/install_lib.cpython-39.pyc | Bin 0 -> 5134 bytes .../install_scripts.cpython-39.pyc | Bin 0 -> 2185 bytes .../__pycache__/py37compat.cpython-39.pyc | Bin 0 -> 1028 bytes .../__pycache__/register.cpython-39.pyc | Bin 0 -> 8505 bytes .../command/__pycache__/sdist.cpython-39.pyc | Bin 0 -> 14532 bytes .../command/__pycache__/upload.cpython-39.pyc | Bin 0 -> 5255 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 757 ++ .../setuptools/_distutils/command/build_py.py | 416 + .../_distutils/command/build_scripts.py | 160 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 677 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 77 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 234 + .../setuptools/_distutils/cygwinccompiler.py | 414 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 355 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 106 + .../setuptools/_distutils/sysconfig.py | 573 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 332 + .../setuptools/_distutils/util.py | 616 ++ .../setuptools/_distutils/version.py | 347 + .../setuptools/_distutils/versionpredicate.py | 166 + .../site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 182 bytes .../__pycache__/ordered_set.cpython-39.pyc | Bin 0 -> 16376 bytes .../__pycache__/pyparsing.cpython-39.pyc | Bin 0 -> 201336 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 263 bytes .../__pycache__/more.cpython-39.pyc | Bin 0 -> 110008 bytes .../__pycache__/recipes.cpython-39.pyc | Bin 0 -> 17928 bytes .../setuptools/_vendor/more_itertools/more.py | 3825 ++++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 27 + .../setuptools/_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-39.pyc | Bin 0 -> 698 bytes .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 544 bytes .../__pycache__/_compat.cpython-39.pyc | Bin 0 -> 1142 bytes .../__pycache__/_structures.cpython-39.pyc | Bin 0 -> 2896 bytes .../__pycache__/_typing.cpython-39.pyc | Bin 0 -> 1487 bytes .../__pycache__/markers.cpython-39.pyc | Bin 0 -> 9300 bytes .../__pycache__/requirements.cpython-39.pyc | Bin 0 -> 4077 bytes .../__pycache__/specifiers.cpython-39.pyc | Bin 0 -> 20579 bytes .../packaging/__pycache__/tags.cpython-39.pyc | Bin 0 -> 17258 bytes .../__pycache__/utils.cpython-39.pyc | Bin 0 -> 1649 bytes .../__pycache__/version.cpython-39.pyc | Bin 0 -> 13316 bytes .../setuptools/_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../setuptools/_vendor/packaging/_typing.py | 48 + .../setuptools/_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../setuptools/_vendor/packaging/tags.py | 751 ++ .../setuptools/_vendor/packaging/utils.py | 65 + .../setuptools/_vendor/packaging/version.py | 535 ++ .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 281 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 371 bytes .../command/__pycache__/alias.cpython-39.pyc | Bin 0 -> 2365 bytes .../__pycache__/bdist_egg.cpython-39.pyc | Bin 0 -> 13031 bytes .../__pycache__/bdist_rpm.cpython-39.pyc | Bin 0 -> 1351 bytes .../__pycache__/build_clib.cpython-39.pyc | Bin 0 -> 2462 bytes .../__pycache__/build_ext.cpython-39.pyc | Bin 0 -> 9821 bytes .../__pycache__/build_py.cpython-39.pyc | Bin 0 -> 8376 bytes .../__pycache__/develop.cpython-39.pyc | Bin 0 -> 6450 bytes .../__pycache__/dist_info.cpython-39.pyc | Bin 0 -> 1389 bytes .../__pycache__/easy_install.cpython-39.pyc | Bin 0 -> 63546 bytes .../__pycache__/egg_info.cpython-39.pyc | Bin 0 -> 21972 bytes .../__pycache__/install.cpython-39.pyc | Bin 0 -> 4030 bytes .../install_egg_info.cpython-39.pyc | Bin 0 -> 2421 bytes .../__pycache__/install_lib.cpython-39.pyc | Bin 0 -> 4128 bytes .../install_scripts.cpython-39.pyc | Bin 0 -> 2416 bytes .../__pycache__/py36compat.cpython-39.pyc | Bin 0 -> 4583 bytes .../__pycache__/register.cpython-39.pyc | Bin 0 -> 839 bytes .../command/__pycache__/rotate.cpython-39.pyc | Bin 0 -> 2498 bytes .../__pycache__/saveopts.cpython-39.pyc | Bin 0 -> 917 bytes .../command/__pycache__/sdist.cpython-39.pyc | Bin 0 -> 6458 bytes .../command/__pycache__/setopt.cpython-39.pyc | Bin 0 -> 4529 bytes .../command/__pycache__/test.cpython-39.pyc | Bin 0 -> 8515 bytes .../command/__pycache__/upload.cpython-39.pyc | Bin 0 -> 812 bytes .../__pycache__/upload_docs.cpython-39.pyc | Bin 0 -> 6155 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 31 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 252 + .../setuptools/command/develop.py | 216 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2290 +++++ .../setuptools/command/egg_info.py | 734 ++ .../setuptools/command/install.py | 125 + .../setuptools/command/install_egg_info.py | 62 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 69 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 189 + .../setuptools/command/setopt.py | 148 + .../site-packages/setuptools/command/test.py | 274 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../site-packages/setuptools/config.py | 715 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 175 + .../site-packages/setuptools/dist.py | 1121 +++ .../site-packages/setuptools/errors.py | 16 + .../site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-39.pyc | Bin 0 -> 2913 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 97 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/lib2to3_ex.py | 68 + .../site-packages/setuptools/monkey.py | 177 + .../site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1119 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 496 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + MidasHMM/lib64 | 1 + MidasHMM/pyvenv.cfg | 3 + test.py | 1 + 1113 files changed, 210062 insertions(+) create mode 100644 MidasHMM/bin/Activate.ps1 create mode 100644 MidasHMM/bin/activate create mode 100644 MidasHMM/bin/activate.csh create mode 100644 MidasHMM/bin/activate.fish create mode 100755 MidasHMM/bin/pip create mode 100755 MidasHMM/bin/pip3 create mode 100755 MidasHMM/bin/pip3.9 create mode 120000 MidasHMM/bin/python create mode 120000 MidasHMM/bin/python3 create mode 120000 MidasHMM/bin/python3.9 create mode 100644 MidasHMM/hmm/config/params.yaml create mode 100644 MidasHMM/hmm/main.py create mode 100644 MidasHMM/hmm/midas/__pycache__/data_processor.cpython-39.pyc create mode 100644 MidasHMM/hmm/midas/__pycache__/feature_engineer.cpython-39.pyc create mode 100644 MidasHMM/hmm/midas/__pycache__/hmm_trainer.cpython-39.pyc create mode 100644 MidasHMM/hmm/midas/analysis.py create mode 100644 MidasHMM/hmm/midas/data_processor.py create mode 100644 MidasHMM/hmm/midas/feature_engineer.py create mode 100644 MidasHMM/hmm/midas/hmm_trainer.py create mode 100644 MidasHMM/hmm/requirements.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/_distutils_hack/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/override.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/_distutils_hack/override.py create mode 100644 MidasHMM/lib/python3.9/site-packages/distutils-precedence.pth create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/INSTALLER create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/LICENSE.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/METADATA create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/RECORD create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/REQUESTED create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/WHEEL create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/entry_points.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/top_level.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/__main__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/__pycache__/__main__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/build_env.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/configuration.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/exceptions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/main.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/pyproject.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/build_env.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/parser.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/base_command.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/command_context.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/parser.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/req_command.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/spinners.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/check.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/completion.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/debug.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/download.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/hash.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/help.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/index.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/install.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/list.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/search.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/show.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/check.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/completion.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/configuration.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/debug.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/download.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/freeze.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/hash.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/help.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/index.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/install.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/list.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/search.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/show.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/configuration.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/installed.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/exceptions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/collector.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/sources.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/collector.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/package_finder.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/index/sources.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/main.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/candidate.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/format_control.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/index.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/link.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/scheme.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/target_python.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/candidate.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/direct_url.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/format_control.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/index.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/link.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/scheme.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/search_scope.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/target_python.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/models/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/auth.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/download.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/session.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/auth.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/download.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/session.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/check.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/check.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/freeze.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/prepare.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/pyproject.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/constructors.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_file.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_install.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_set.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/constructors.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_file.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_install.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_set.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/_log.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/logging.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/misc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/models.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/urls.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/_log.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/datetime.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/encoding.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/glibc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/hashes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/logging.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/misc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/models.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/packaging.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/parallel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/pkg_resources.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/urls.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/git.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/git.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_internal/wheel_builder.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/appdirs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/distro.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/six.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/appdirs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/core.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/misc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/shutil.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/tarfile.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/database.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/index.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/distro.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/core.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/codec.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/core.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/packaging/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/build.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/check.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/bar.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/counter.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/pyparsing.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/api.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/help.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/models.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/api.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/auth.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/certs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/help.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/models.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/packages.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/structures.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/requests/utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/six.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/vendor.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pip/py.typed create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_typing.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/extern/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/INSTALLER create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/LICENSE create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/METADATA create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/RECORD create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/REQUESTED create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/WHEEL create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/entry_points.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools-57.4.0.dist-info/top_level.txt create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/_imp.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/archive_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/build_meta.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/config.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/dep_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/depends.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/dist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/errors.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/extension.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/glob.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/installer.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/launch.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/monkey.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/msvc.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/namespaces.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/package_index.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/py34compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/sandbox.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/unicode_utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/wheel.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/__pycache__/windows_support.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_deprecation_warning.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/config.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/core.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/debug.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/dist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/errors.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/extension.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/log.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/util.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/cmd.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/build.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/check.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/config.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/register.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/config.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/core.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/debug.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/dist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/errors.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/extension.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/file_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/filelist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/log.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/py35compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/py38compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/spawn.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/text_file.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_imp.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/_compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/_typing.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/archive_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/build_meta.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/cli-32.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/cli-64.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/cli.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/alias.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/build_clib.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/build_ext.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/build_py.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/develop.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/dist_info.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/easy_install.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/egg_info.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/install.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/install_lib.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/install_scripts.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/py36compat.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/register.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/rotate.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/saveopts.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/sdist.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/setopt.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/test.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/upload.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/__pycache__/upload_docs.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/alias.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/bdist_egg.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/build_clib.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/build_ext.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/build_py.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/develop.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/dist_info.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/easy_install.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/egg_info.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/install.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/install_egg_info.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/install_lib.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/install_scripts.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/launcher manifest.xml create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/py36compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/register.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/rotate.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/saveopts.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/sdist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/setopt.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/test.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/upload.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/command/upload_docs.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/config.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/dep_util.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/depends.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/dist.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/errors.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/extension.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/extern/__init__.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/extern/__pycache__/__init__.cpython-39.pyc create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/glob.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/gui-32.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/gui-64.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/gui.exe create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/installer.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/launch.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/lib2to3_ex.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/monkey.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/msvc.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/namespaces.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/package_index.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/py34compat.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/sandbox.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/script (dev).tmpl create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/script.tmpl create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/unicode_utils.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/version.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/wheel.py create mode 100644 MidasHMM/lib/python3.9/site-packages/setuptools/windows_support.py create mode 120000 MidasHMM/lib64 create mode 100644 MidasHMM/pyvenv.cfg create mode 100644 test.py diff --git a/MidasHMM/bin/Activate.ps1 b/MidasHMM/bin/Activate.ps1 new file mode 100644 index 0000000..2fb3852 --- /dev/null +++ b/MidasHMM/bin/Activate.ps1 @@ -0,0 +1,241 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virutal environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/MidasHMM/bin/activate b/MidasHMM/bin/activate new file mode 100644 index 0000000..93843cd --- /dev/null +++ b/MidasHMM/bin/activate @@ -0,0 +1,66 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null + fi + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/home/gwitt1/gwitt1Repo/MidasHMM" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(MidasHMM) ${PS1:-}" + export PS1 +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null +fi diff --git a/MidasHMM/bin/activate.csh b/MidasHMM/bin/activate.csh new file mode 100644 index 0000000..3d6c70e --- /dev/null +++ b/MidasHMM/bin/activate.csh @@ -0,0 +1,25 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/gwitt1/gwitt1Repo/MidasHMM" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(MidasHMM) $prompt" +endif + +alias pydoc python -m pydoc + +rehash diff --git a/MidasHMM/bin/activate.fish b/MidasHMM/bin/activate.fish new file mode 100644 index 0000000..be63f2f --- /dev/null +++ b/MidasHMM/bin/activate.fish @@ -0,0 +1,64 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/); you cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + functions -e fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + + set -e VIRTUAL_ENV + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/gwitt1/gwitt1Repo/MidasHMM" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(MidasHMM) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" +end diff --git a/MidasHMM/bin/pip b/MidasHMM/bin/pip new file mode 100755 index 0000000..14132ea --- /dev/null +++ b/MidasHMM/bin/pip @@ -0,0 +1,8 @@ +#!/home/gwitt1/gwitt1Repo/MidasHMM/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/MidasHMM/bin/pip3 b/MidasHMM/bin/pip3 new file mode 100755 index 0000000..14132ea --- /dev/null +++ b/MidasHMM/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/gwitt1/gwitt1Repo/MidasHMM/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/MidasHMM/bin/pip3.9 b/MidasHMM/bin/pip3.9 new file mode 100755 index 0000000..14132ea --- /dev/null +++ b/MidasHMM/bin/pip3.9 @@ -0,0 +1,8 @@ +#!/home/gwitt1/gwitt1Repo/MidasHMM/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/MidasHMM/bin/python b/MidasHMM/bin/python new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/MidasHMM/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/MidasHMM/bin/python3 b/MidasHMM/bin/python3 new file mode 120000 index 0000000..f808e20 --- /dev/null +++ b/MidasHMM/bin/python3 @@ -0,0 +1 @@ +/home/gwitt1/anaconda3/bin/python3 \ No newline at end of file diff --git a/MidasHMM/bin/python3.9 b/MidasHMM/bin/python3.9 new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/MidasHMM/bin/python3.9 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/MidasHMM/hmm/config/params.yaml b/MidasHMM/hmm/config/params.yaml new file mode 100644 index 0000000..a05fd9e --- /dev/null +++ b/MidasHMM/hmm/config/params.yaml @@ -0,0 +1,14 @@ +data_dir: "../../../../MidasData" +output_dir: "../MidasOutput" +tickers: ["MRNA", "NVDA", "CRWD"] # Add your tickers here +combine_tickers: True # Whether to train single unified model +resample_freq: "1H" # 1H, 4H, 1D +n_states_range: [3, 4] # Test states 3-5 +features: + - returns + - volatility + - rsi + - macd + - atr + - volume_change + - obv diff --git a/MidasHMM/hmm/main.py b/MidasHMM/hmm/main.py new file mode 100644 index 0000000..48b1eff --- /dev/null +++ b/MidasHMM/hmm/main.py @@ -0,0 +1,63 @@ +# main.py +import yaml +import logging +from pathlib import Path +from midas.data_processor import DataProcessor +from midas.feature_engineer import FeatureEngineer +from midas.hmm_trainer import HMMTrainer +from midas.analysis import MarketRegimeAnalysis + +def main(): + # Setup logging + logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler("midas.log"), + logging.StreamHandler() + ] + ) + + try: + # Load config + with open('config/params.yaml') as f: + config = yaml.safe_load(f) + + # Create output directory + output_dir = Path(config['output_dir']) + output_dir.mkdir(parents=True, exist_ok=True) + + # Process data + processor = DataProcessor(config) + raw_data = processor.process_tickers() + + # Engineer features + engineer = FeatureEngineer(config) + features = engineer.calculate_features(raw_data) + + # Train HMM + trainer = HMMTrainer(config) + model = trainer.train(features) + trainer.save_model(output_dir / "hmm_model.pkl") + + # Generate analysis + analysis = MarketRegimeAnalysis(model, features) + + # Save plots + analysis.plot_regimes(pd.concat([d['close'] for d in raw_data.values])) + plt.savefig(output_dir / "combined_regimes.png") + + analysis.plot_transition_matrix() + plt.savefig(output_dir / "transition_matrix.png") + + analysis.plot_state_durations() + plt.savefig(output_dir / "state_durations.png") + + logging.info("Process completed successfully") + + except Exception as e: + logging.error(f"Main process failed: {str(e)}", exc_info=True) + raise + +if __name__ == "__main__": + main() diff --git a/MidasHMM/hmm/midas/__pycache__/data_processor.cpython-39.pyc b/MidasHMM/hmm/midas/__pycache__/data_processor.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9977aa49876fb79dcd7a2745bec27f033191424e GIT binary patch literal 3549 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/hmm/midas/__pycache__/feature_engineer.cpython-39.pyc b/MidasHMM/hmm/midas/__pycache__/feature_engineer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e83c17cf6240b8751092457466ee8a6200ff4bf GIT binary patch literal 2374 zcmYe~<>g{vU|`7lGb{ZLHv_|C5C<7EGcYhXFfcF_TQM*&q%fo~<}gGtf@!8G<`jk$ zrW}@B)+km+kQ{RkTP}MPJ0pWTLkdd@YYRgPYco?6M+##wgC^Tckg0x}jJJ4#@{>x7 zOM;UVb5e^m8E>(;WG0s+gJh90++HsR28L9yol#7w%qfg>7*m*1m|Iw)SW;QD*iu=u z*i%^MFr~1ju(hy6ailV*a)QLum?RlMbPD?%rWB48&K8y^t`x3d22Ji;{BEgai={X&rJjk?S7LY?3*%+%N&^)6D zQ>Mvuizy}T7F$tjNoi3YiqAkn3o-!gGXn+&h7yJaj5UlYjFJosm=-cD1hJVU8AKQs zFsCptWL&_qkfD~ThAE2`6sf)7$gC3d&(n2E%t_2kPE`oY&neAKy~UcGlV6;Ai>(aI zEn;L~V0g*Lz`&r%c#FLtwJ0+`rC5{g7E@lqEtcZU^t@XvDVb?$x7gA$b8_+$Z?Pqp z<`$Rc-r_1qE{RXhNX$!5)nqPW2Zb#+0|Ub?=KQ2Ga7aQ3PLLR1d~#w=a%oOtNost4 zQW*~@ra&HJU{YbMlEVlY6vdiMw^&jVOA?Dfx=?~gkb!{#WG^^)a+nwx(m~#5T)?o9 z!G&Q0Q!HN$Q!R5XO9^8ZQw>WNa|&ZGV=Ze6Qw>8FOA50jLm5MnM+xf!wi=cc7DjJJ6_JxchAl0lk3@IE)s_#Ke z1DRFJR>QV{yM`@=Gn*xab0O0Ljuftij0<=cGSsreWf)LpxEX3WQn*vNQ+R6FYdEAC z#2KU+BtZ6X*f6BqXY!0stLy8cJ zIcsWIQiLTLYFJW4BpD88qemG#PKPX6B`&R@`ETWZvRi9MBS>xQLg5fgy^kEI%i) zBr_+or1GT*D4YEOi82=zXM%HG5kE*Q1w?={VH8VlVsgq$P&#)5rTXH6#JpQZ6(!igbpPQ7Kml|J^ znVg+kRD6pK!nnnt$$X1F8B_q|72jejC`wJsthmJmq2r5F3pAOEKsFX>fyxD`TdbKS zskz0sm!W;yyCR{qFjix z1tF!9BuJhoF()S;9yuDY(yB-XWEE>lYEDUF6ia$yW?mFaPJVH56l-d3qM;F(GBS(e z00nt`PJVe57nlVuK%+Qw^2_7F%v($)MYlMhVVx2Msa{eb1t6#zC<2#)LWpt=<`Pi2 z75jke2o@$GMm}afMlmKnMg=B5Mjl2fMj1v4CILnLQ$nuwswMq%SM8&k&Pm>!|Q{^S*rpCwL;);*Y%}*)K z0kL`F;|og@b09KBpem>c)bJ?M1BIDBD7e^yQ;R?W4~{10;*z2wCy*T2qX+`z7$nZY$ic|N$ioBxXaZW_ literal 0 HcmV?d00001 diff --git a/MidasHMM/hmm/midas/__pycache__/hmm_trainer.cpython-39.pyc b/MidasHMM/hmm/midas/__pycache__/hmm_trainer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..224cb530a14c7fa3fb7b33b466a0af2b40d1c710 GIT binary patch literal 2504 zcmYe~<>g{vU|^W~XI8p6Hv_|C5C<7EGcYhXFfcF_`!O&uq%fo~<}gGtrZA*1)(#8{$OQW#R0b69iPqS(Mb2S-n@rPvQrUs`LWu_Jf7vyA?XfoasD9+5u$S+MTDM^hlPR=h% zO$O;f#&8#coS6!CT@+I)a|+`e#uTO$<`$6KSW;M97@}BH*|OME*yb>%u%~deutagB za;9+3VNBsl;cj7x;!5EOX3*rl#pU7a8&Z^*nU`9m$#{z`IX^EgGd-CJ$x09#WUDhM zTx1v+7-|@67~&a97#A>=FfRnLSyC8k7~)w|7=jrz8T~Zbir5$!7;drWNG<8m26!6h=t~5rz~d5e9LFT9y>%8fFoO8kQ2~1uS4$7D2BUj0_A6FF~RH^56ge|BFCe zP1aki;Ph~dCoeuZKer%1FEy{E_!et%Mq)wgEvCGJTg*B6>6)xXJfNUw1&8M?#)w;d zIr-`FIhon1Ihh&x`6;(J^5P2;ixP8-!J!Kw_&{3t;*%3|l1pK1QMcEKF6B$iar9T9fe>M_OuPNoi4PF-qDIW?*38W?*0d2V@!}149Wz79%%9 zEmI0ZEprJ|3S$aWFJmoB33ClY7E21VBtsvA3&RA)SeaVZsw?RXwQMyk3s`Fy7c#mq z#FoV{)w0)e)G%hT)v!x4)N+DZ9Fh#RTqW#T95t*dETBA>!rseL%U#30fU|~kAtNJ0 z4fg`B8m@(mwLCT43%J27-V%ldJSiM0oGlC`yfwVdj4lk#j0+iS`D%D-_{14%`D@q~ z@YV2xbQfBI)Yh;qWULjaVOYRl!(GF;kf~O%h9OH}fnW+(4eM-%6z&?q6rR~EDZDiT zAbKtvNN0^e4O2Et(VrTDTBaKA8ishGaE3w^7KRex35=Bvj109xj0{y8U~@!L_`v4y zmx$H~H8aj;n9Bk(A)FzSA%&q6l3=EnqMIsCg3{m{a`DKYknTdJHsqrP11*x~#^5Q`$^A=B0VqQvqF2s;zP^yGw z7m!t;EE5b$G@ue9ouP&yRwRb0ma&$pgrS77hN+pcnQkP;#|zw6oLTQ z6x-<`lvl9_gMF(|#b%}8h&C5DY3_lAD^CcZ)r}D8IBIsqz+E zVnIP_UP=)t5Q{+B?-olYsEh#RpzVQ>jhBnxsRq-+J38$}=!qF73blgl8{%$=5>lM)Y>E55}E4ukm2l!{v%C7|*c z#A1(t6sA#Z5%D0wA_)cth9W7D!EBIlisCLvEh^3|E=kQxP6c}`iZih+9b#$}b5dsV zEyh&z7-a?91q#GsCs1rMaxk(mb1{i9GBL6+3Ndmqaxt+mGC|-UHa0G1E=Dd!2}TYk z9wshE9!4c54n`J6E+zp+6DAIjC}WiXdUDWYyv0(GSdxKK6oH}xUZ%@2fQq68psd4G z!;l3jei-L4gEBX$5)Wq3Wb)Hw27CDyTXAw?PHGW2iZxkpv1R2aCU+4h zDA>8;LE1}mK=mh2e0*VPVh*%6WpT+&E-3;P+Tf&fi>V;x7N<*MNupa(Vs2`Y9mqLm zAOchnBgF{Zbw!~33$mn`gMop8gOQJwgIz!$EUL+Ui#4w_x1bW7@}oF1a&vQ16N~b| z3B1S=RAz`5XM=_Gz?mh!I5j6V8I(?oKsh9eA1<3(Qk0ooT*Lx$2|I`Y*^13Mw>WHa a^HWN5Qtd#|Rt&1tI2d^tL70b;g9!l19do<@ literal 0 HcmV?d00001 diff --git a/MidasHMM/hmm/midas/analysis.py b/MidasHMM/hmm/midas/analysis.py new file mode 100644 index 0000000..a772319 --- /dev/null +++ b/MidasHMM/hmm/midas/analysis.py @@ -0,0 +1,49 @@ +# midas/analysis.py +import matplotlib.pyplot as plt +import seaborn as sns +from matplotlib.lines import Line2D +import numpy as np + +class MarketRegimeAnalysis: + def __init__(self, model, features): + self.model = model + self.features = features + self.states = model.predict(features) + + def plot_regimes(self, prices: pd.Series): + plt.figure(figsize=(15, 8)) + palette = sns.color_palette("husl", n_colors=self.model.n_components) + + for state in range(self.model.n_components): + mask = self.states == state + plt.scatter(prices.index[mask], prices[mask], + color=palette[state], s=10, label=f'Regime {state}') + + plt.title("Market Regime Visualization") + plt.xlabel("Date") + plt.ylabel("Price") + plt.legend() + return plt + + def plot_transition_matrix(self): + transmat = self.model.transmat_ + plt.figure(figsize=(10, 8)) + sns.heatmap(transmat, annot=True, fmt=".2f", cmap="Blues", + xticklabels=range(transmat.shape[0]), + yticklabels=range(transmat.shape[1])) + plt.title("State Transition Probabilities") + plt.xlabel("Next State") + plt.ylabel("Current State") + return plt + + def plot_state_durations(self): + state_changes = np.diff(self.states, prepend=self.states[0]) + change_points = np.where(state_changes != 0)[0] + durations = np.diff(np.append(change_points, len(self.states))) + + plt.figure(figsize=(10, 6)) + sns.histplot(durations, bins=30, kde=True) + plt.title("Regime Duration Distribution") + plt.xlabel("Duration (Bars)") + plt.ylabel("Frequency") + return plt diff --git a/MidasHMM/hmm/midas/data_processor.py b/MidasHMM/hmm/midas/data_processor.py new file mode 100644 index 0000000..fd67aae --- /dev/null +++ b/MidasHMM/hmm/midas/data_processor.py @@ -0,0 +1,95 @@ +# midas/data_processor.py +import pandas as pd +import numpy as np +from pathlib import Path +import logging +from typing import List, Dict + +class DataProcessor: + def __init__(self, config: Dict): + self.config = config + self.logger = logging.getLogger(__name__) + + def _load_raw_data(self, ticker: str) -> pd.DataFrame: + file_path = Path(self.config['data_dir']) / f"{ticker}_5min_3years.csv" + if not file_path.exists(): + raise FileNotFoundError(f"Data file not found: {file_path}") + + df = pd.read_csv( + file_path, + parse_dates=['timestamp'], + usecols=['timestamp', 'open', 'high', 'low', 'close', 'volume'], + dtype={ + 'open': 'float32', + 'high': 'float32', + 'low': 'float32', + 'close': 'float32', + 'volume': 'float32' + } + ) + return df.sort_values('timestamp').set_index('timestamp') + + def _clean_data(self, df: pd.DataFrame) -> pd.DataFrame: + """Robust data cleaning pipeline""" + # Handle missing values + df = df.dropna() + + # Validate price data + self._validate_prices(df) + + # Validate trading hours + df = self._filter_trading_hours(df) + + # Remove outliers + df = self._remove_price_outliers(df) + df = self._remove_volume_outliers(df) + + # Resample and forward fill missing intervals + df = df.resample(self.config['resample_freq']).last().ffill() + + return df + + def _validate_prices(self, df: pd.DataFrame): + """Ensure price data integrity""" + if (df['close'] <= 0).any(): + bad_values = df[df['close'] <= 0] + self.logger.error(f"Invalid close prices: {bad_values.index}") + raise ValueError("Negative/zero close prices detected") + + if not (df['high'] >= df['low']).all(): + raise ValueError("High prices < Low prices detected") + + if not df['close'].is_monotonic_increasing: + self.logger.warning("Non-monotonic timestamps detected") + + def _filter_trading_hours(self, df: pd.DataFrame) -> pd.DataFrame: + """Remove non-market hours (if intraday data)""" + if pd.infer_freq(df.index) in ('H', 'T'): + return df.between_time('09:30', '16:00') + return df + + def _remove_price_outliers(self, df: pd.DataFrame) -> pd.DataFrame: + """Remove prices beyond 10 standard deviations""" + returns = np.log(df['close']).diff().dropna() + mask = (returns.abs() < 10 * returns.std()).reindex(df.index).ffill() + return df[mask] + + def _remove_volume_outliers(self, df: pd.DataFrame) -> pd.DataFrame: + """Remove volume spikes beyond 20 standard deviations""" + log_volume = np.log(df['volume']) + mask = (log_volume < log_volume.mean() + 20*log_volume.std()) + return df[mask] + + def process_tickers(self) -> Dict[str, pd.DataFrame]: + """Process all tickers with cleaning and resampling""" + processed = {} + for ticker in self.config['tickers']: + try: + self.logger.info(f"Processing {ticker}") + df = self._load_raw_data(ticker) + df = self._clean_data(df) + processed[ticker] = df + except Exception as e: + self.logger.error(f"Failed processing {ticker}: {str(e)}") + raise + return processed diff --git a/MidasHMM/hmm/midas/feature_engineer.py b/MidasHMM/hmm/midas/feature_engineer.py new file mode 100644 index 0000000..0b1d2de --- /dev/null +++ b/MidasHMM/hmm/midas/feature_engineer.py @@ -0,0 +1,72 @@ +# midas/feature_engineer.py +import numpy as np +import pandas as pd +from sklearn.preprocessing import RobustScaler +from typing import Dict + +class FeatureEngineer: + def __init__(self, config: Dict): + self.config = config + self.scaler = RobustScaler() # Handles outliers + + def _calculate_obv(self, df: pd.DataFrame) -> pd.Series: + """On-Balance Volume""" + obv = (np.sign(df['close'].diff()) * df['volume']).fillna(0).cumsum() + return obv.pct_change(periods=14) # Normalized OBV + + def calculate_features(self, data: Dict[str, pd.DataFrame]) -> pd.DataFrame: + all_features = [] + + for ticker, df in data.items(): + features = pd.DataFrame(index=df.index) + + # Price-based features + if 'returns' in self.config['features']: + features['returns'] = np.log(df['close']).diff() + + if 'volatility' in self.config['features']: + features['volatility'] = features['returns'].rolling(20).std() * np.sqrt(252) + + if 'rsi' in self.config['features']: + delta = df['close'].diff() + gain = delta.where(delta > 0, 0).rolling(14).mean() + loss = -delta.where(delta < 0, 0).rolling(14).mean() + features['rsi'] = 100 - (100 / (1 + (gain / loss))) + + if 'macd' in self.config['features']: + ema12 = df['close'].ewm(span=12, adjust=False).mean() + ema26 = df['close'].ewm(span=26, adjust=False).mean() + features['macd'] = ema12 - ema26 + + if 'atr' in self.config['features']: + high_low = df['high'] - df['low'] + high_close = (df['high'] - df['close'].shift()).abs() + low_close = (df['low'] - df['close'].shift()).abs() + tr = pd.concat([high_low, high_close, low_close], axis=1).max(axis=1) + features['atr'] = tr.rolling(14).mean() / df['close'] + + if 'volume_change' in self.config['features']: + features['volume_change'] = np.log(df['volume'] / df['volume'].shift(1)) + + if 'obv' in self.config['features']: + features['obv'] = self._calculate_obv(df) + + # Add ticker identifier if combining + if self.config['combine_tickers']: + features['ticker'] = ticker + + all_features.append(features.dropna()) + + combined = pd.concat(all_features).sort_index() + + # Encode tickers if combining + if self.config['combine_tickers']: + combined = pd.get_dummies(combined, columns=['ticker'], prefix='', prefix_sep='') + + # Scale features + scaled = pd.DataFrame( + self.scaler.fit_transform(combined), + index=combined.index, + columns=combined.columns + ) + return scaled diff --git a/MidasHMM/hmm/midas/hmm_trainer.py b/MidasHMM/hmm/midas/hmm_trainer.py new file mode 100644 index 0000000..fac03f4 --- /dev/null +++ b/MidasHMM/hmm/midas/hmm_trainer.py @@ -0,0 +1,74 @@ +# midas/hmm_trainer.py +import numpy as np +from hmmlearn import hmm +import joblib +from sklearn.model_selection import TimeSeriesSplit +from sklearn.metrics import silhouette_score +import logging + +class HMMTrainer: + def __init__(self, config: Dict): + self.config = config + self.logger = logging.getLogger(__name__) + self.best_model = None + + def _calculate_bic(self, model, X): + """Bayesian Information Criterion""" + log_likelihood = model.score(X) + n_params = model.n_components * (model.n_components - 1) + \ + model.n_components * X.shape[1] * 2 # Means and variances + return -2 * log_likelihood + n_params * np.log(X.shape[0]) + + def train(self, features: pd.DataFrame): + best_score = -np.inf + best_model = None + + # Time-series cross validation + tscv = TimeSeriesSplit(n_splits=3) + + for n_components in range(*self.config['n_states_range']): + try: + fold_scores = [] + for train_idx, test_idx in tscv.split(features): + X_train = features.iloc[train_idx] + X_test = features.iloc[test_idx] + + model = hmm.GaussianHMM( + n_components=n_components, + covariance_type="diag", + n_iter=1000, + random_state=42 + ) + model.fit(X_train) + + # Score using both likelihood and regime persistence + log_likelihood = model.score(X_test) + states = model.predict(X_test) + persistence = np.mean([len(list(g)) for _, g in groupby(states)]) + score = log_likelihood + persistence + + fold_scores.append(score) + + avg_score = np.mean(fold_scores) + bic = self._calculate_bic(model, features) + self.logger.info(f"States {n_components}: BIC={bic:.2f}, Score={avg_score:.2f}") + + if avg_score > best_score: + best_score = avg_score + self.best_model = model + + except Exception as e: + self.logger.error(f"Failed training {n_components} states: {str(e)}") + + if not self.best_model: + raise RuntimeError("No valid models trained") + + self.best_model.fit(features) # Final training on full dataset + return self.best_model + + def save_model(self, path: str): + joblib.dump({ + 'model': self.best_model, + 'scaler': self.scaler, + 'config': self.config + }, path) diff --git a/MidasHMM/hmm/requirements.txt b/MidasHMM/hmm/requirements.txt new file mode 100644 index 0000000..e5ba430 --- /dev/null +++ b/MidasHMM/hmm/requirements.txt @@ -0,0 +1,8 @@ +numpy +pandas +hmmlearn +scikit-learn +matplotlib +seaborn +pyyaml +joblib diff --git a/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__init__.py b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..5f40996 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,128 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + r'.+ distutils\b.+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + distutils = importlib.import_module('setuptools._distutils') + distutils.__name__ = 'distutils' + sys.modules['distutils'] = distutils + + # sanity check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d7ac02c77cad58373d3f220203a3be8c8bc7c63 GIT binary patch literal 5099 zcmYe~<>g{vU|^WXFgrbikAdMah=Yt-85kHG7#J9eConKDq%fo~<}gG-XvQc;FrO)k z2~0CbF@tHAD3%naRE8|pGKMI&RF(zoDasT>QL85vSoQ`lM!0k&yw!(`50x#R<1alj$YMte5Nz3=E0Qj0_AeFefOKCl)JY<`(1^m87O9 zB&DY17o{o$r`48JWcjxrvnuIjM;$3MKgprFki-#hFEkNja$s zNvRo$WtsU!#R~aF3aLd!`9;Ng3L*IliDmhjDIhzFQx!6ci%V0Bb)aIU#UN+FEmla$ zEJ{r-$*I&)NX;uQElO1=$w(|wD297TA+uN^Gq1QLF()TA1>`)C!%K=1Q!-03^YapO z6v`7T6*N-y()ASb@=FvF^Au83GE2aYgKE>%QAo^7(a$eZ$W6>nRlsFQVorHtC1%jV zU8<+ac8j^VviKG|G;D6MXBLA~%PpR=)S}|d{Ji+gytMpV9Oa2cd6{|X#kW{Mtd$H! zJPZsF;#Y)zMt*LpetLOkNr@qp3Q8@=*Z0j#Ni6p8_0`YGOwuo?EXl~vGuE@zFU~AU z)h$R&&Q45EE!K~RJ0?COF*#d5K0Y%qvm`!Vub}dl7|1Rp1qDT^#i@BE0-)5$2TG%i zT#PJ?e9SD2ER0P5i$Fps$(MW1VPIhR46?gQIXNdau?P`_dNw)v$%#3| zc6tcank+>i#}$F{Wf7>rE8=EgV9;cWV#&=>3gp5aRFe z6C58J>>BUl85|NC;^`B7i>$LVA{~Il(lT>WGR)ysJf=bksky)%zP?VaMT2z#pqL5#fTBHDp zay>4vF~O;+3K=CO1;tkS`stY^8Kp^j$@#hZ1(gMf`iLObhZOPpCWhw9U}kcDE-0bt z8e19}Sz4GF7=jH;0~Nub>MA$CB(p3LluRKh&`*;YoHD?r64>uZfd>j3NRr}C$&Uv) zu_!Yo)dm!7psdKi&c?{bSfq-ce?S2SN?71FhY1{vSB5oA9`3J0*u2ZCowlE zCDG0gR4$1yFfdf7A7G^0mdp>yspKlH$Z^`it}O%aQ&6Ski*c)kiwY4ki*!?;Lgy_kj4lO zd5#q34u&kIEaqnBTE-5BEKoy?rG~MYVIinQW%VlpfOM@yg^^BnzsA7>htI(_|{r0o8FVAgfj~7RiI+9+4(^lZ#RlOH!fbSvbfz zkl753Rlach5ouiyWC)S&)k85E!}XvrMM=6v>M)nVoXiF(WYNIoBLSfI}0M*C8$iCuDxOV<52? z3UVkYL2@whFc(>Yw1MJJlkFC?M#;%c(o0NAzQqTrU_e|@ALAA?NRSO;$SoGIkN_kW zit=;gbHGUh8ekA(5v~C{Lb$wFmf?OGg9*u zic0f9EoN}nqDY}2vj9>rfb@ZCAaHe4kXfK?VQyxq0IEicz_mwWPAWp7A4Y}+IT%NZ zgG3xSV_pM zfPJMWlqrfq-cthAmJG2{F-*0LwM;dP zSqv!*k_-zNLB(1a10zErQwpd&W-bCLtl|K-H}ncB{WO_wai+zm=j10P<`m!JNX<(r zF3&8<&}1$W1m$4Xw4%h^)LSe$nRyrue@>h9)V$P+f+D+okPARgVPRtXU*&);a6!=k z^D;_QB2|+x<20FXah4P%CZ{GPCTHJbPRy&k#Z{h|lO11Nl9-&W$yfxc-q2#a2-M!q z1i1s8H(5b>ljC2NE=g|DWc1VI02f_FpjxlU5>(QF+B@K+Rs_ndw|I(65=%0Zp*1kb zRwS1o(!Ux51A_<1IiOmYgOQ7agO7uYiLnSIj*_@QB?&0#K!z8C`aGcCAgIA!!n}|P zI-J1-sYRh3rdyo3sU?Z=kmf;VUU6zs$t?kRKO^4F)6c~<2%DpBaU`as#205|=2n1Q z1}c9T7>fe1we~=P2zC)DA6E%L+*HC0>a&J3YnJoqF(4f{+Vz)G0GR zFB~$y0BJ3QI*yRWGpNr1ZU=)StO(?Oa6o~bfz|aKHjoO}4pdqcgY7x}%)tTxL0SST literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/override.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/__pycache__/override.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a34a69579b45911d5717b4ba43394563bf4d04bf GIT binary patch literal 230 zcmYe~<>g{vU|^WXFgsm`fq~&Mh=Yuo7#J8F7#J9e1sE6@QW;Vhni&@`E@WV2NMQ_S z&}53@k59=gE-5X^%qfn~NKDT5(`35E6(66OTaaH=5+5JMosu7)UzS=_l$nyclA#D> z9GLhOp`VeTo2s8)o>@|22&IBj3-a}SGgA_aJ$!xjb25|k3o1)8^7D-KEcJ^sOHy?U m5|gtN(^HG}(QMU+S)o@@d5gm)H$SB`C)JLTfq~&O$TI-Ygh1~A literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/_distutils_hack/override.py b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/MidasHMM/lib/python3.9/site-packages/distutils-precedence.pth b/MidasHMM/lib/python3.9/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..6de4198 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/INSTALLER b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/LICENSE.txt b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/LICENSE.txt new file mode 100644 index 0000000..29a9983 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-2021 The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/METADATA b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/METADATA new file mode 100644 index 0000000..58e30d9 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/METADATA @@ -0,0 +1,92 @@ +Metadata-Version: 2.1 +Name: pip +Version: 21.2.3 +Summary: The PyPA recommended tool for installing Python packages. +Home-page: https://pip.pypa.io/ +Author: The pip developers +Author-email: distutils-sig@python.org +License: MIT +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.6 +License-File: LICENSE.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right. + +**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3. + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development mailing list`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html +.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020 +.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/ +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md + + diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/RECORD b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/RECORD new file mode 100644 index 0000000..036465a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/RECORD @@ -0,0 +1,795 @@ +../../../bin/pip,sha256=mtmXGa6bjnZDeR2q0BMNMmFueWLpZQosiQab6s2IPSc,249 +../../../bin/pip3,sha256=mtmXGa6bjnZDeR2q0BMNMmFueWLpZQosiQab6s2IPSc,249 +../../../bin/pip3.9,sha256=mtmXGa6bjnZDeR2q0BMNMmFueWLpZQosiQab6s2IPSc,249 +pip-21.2.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-21.2.3.dist-info/LICENSE.txt,sha256=gJDJthjxG8mDPXZg96yUjnIt4bce2hULfec5mrfNnmI,1110 +pip-21.2.3.dist-info/METADATA,sha256=BA4M-MqDkwwNoSPm1cVEoleu3sEr_iN4HbpM3cjr6rI,4165 +pip-21.2.3.dist-info/RECORD,, +pip-21.2.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-21.2.3.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92 +pip-21.2.3.dist-info/entry_points.txt,sha256=HtfDOwpUlr9s73jqLQ6wF9V0_0qvUXJwCBz7Vwx0Ue0,125 +pip-21.2.3.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=qXU49Q5cd1uydhWo2AnReaOxEtM0o8t5EP9EvhtRCN8,370 +pip/__main__.py,sha256=8mTMucDffyV05KR_fXWM2p1JQEnHPu1-CWjbthYHYis,1229 +pip/__pycache__/__init__.cpython-39.pyc,, +pip/__pycache__/__main__.cpython-39.pyc,, +pip/_internal/__init__.py,sha256=OLxitHt9NAlSaObDjAlRSYUkAftIjV9sUpv1yIZDO4E,592 +pip/_internal/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/__pycache__/build_env.cpython-39.pyc,, +pip/_internal/__pycache__/cache.cpython-39.pyc,, +pip/_internal/__pycache__/configuration.cpython-39.pyc,, +pip/_internal/__pycache__/exceptions.cpython-39.pyc,, +pip/_internal/__pycache__/main.cpython-39.pyc,, +pip/_internal/__pycache__/pyproject.cpython-39.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-39.pyc,, +pip/_internal/build_env.py,sha256=YMIinJTDdKm_x5JC8IjJZp-_Zw42kBm6fkiWprBi-Hk,10415 +pip/_internal/cache.py,sha256=bjyh33eOAq6kX1kPk84Oxb_JXazpP6izVZipJLq0eJI,10245 +pip/_internal/cli/__init__.py,sha256=9gMw_A_StJXzDh2Rhxil6bd8tFP-ZR719Q1pINHAw5I,136 +pip/_internal/cli/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-39.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-39.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-39.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-39.pyc,, +pip/_internal/cli/__pycache__/main.cpython-39.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-39.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-39.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-39.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-39.pyc,, +pip/_internal/cli/autocompletion.py,sha256=_d6Ugrj-KQOCoDgDscSr_238-RcwedXzpLmW8F_L_uc,6562 +pip/_internal/cli/base_command.py,sha256=mZH7AMA9tBoiYEysFx9l3Pe_h23mnNZy8K8M_ZhsRSs,7810 +pip/_internal/cli/cmdoptions.py,sha256=Kalu7Z2ZAvySgOOIo4e_Ah3Vv8HDmGhLQlkDysI-ihw,29292 +pip/_internal/cli/command_context.py,sha256=ocjEqsuP6pFF98N_ljRyLToYLm5fBgMaZicVjMy_f0Y,787 +pip/_internal/cli/main.py,sha256=D6DAuHgfr4na5SuEbtLyx1FlZhcGHIB9BltXsjrrKsA,2542 +pip/_internal/cli/main_parser.py,sha256=rusU-JYOLpcJ8cFXWiPvuDoNpTptRlndY3WyBh2UXq4,2701 +pip/_internal/cli/parser.py,sha256=0eTD4_7ucvjv_VnZajerOhzHUAIOju5KDlQM0rv5VP4,11080 +pip/_internal/cli/progress_bars.py,sha256=-bhkKHcjsZ0tWdf-DH9eGHsJuGedVPih8E0vV2_rJXg,8550 +pip/_internal/cli/req_command.py,sha256=_9w-fMnI0j8bey7mryr-iLxjCoUT_jIU3lkNp2PQJVU,17001 +pip/_internal/cli/spinners.py,sha256=rQJtl8c9JiMpOCsOk-YRFYtWdhiFoFectJuryMM-jn4,5233 +pip/_internal/cli/status_codes.py,sha256=1xaB32lG8Nf1nMl_6e0yy5z2Iyvv81OTUpuHwXgGsfU,122 +pip/_internal/commands/__init__.py,sha256=LoscneenHTO4OCqGIah4KtHyPNURU6F7bUeGRjbcr_k,3888 +pip/_internal/commands/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-39.pyc,, +pip/_internal/commands/__pycache__/check.cpython-39.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-39.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-39.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-39.pyc,, +pip/_internal/commands/__pycache__/download.cpython-39.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-39.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-39.pyc,, +pip/_internal/commands/__pycache__/help.cpython-39.pyc,, +pip/_internal/commands/__pycache__/index.cpython-39.pyc,, +pip/_internal/commands/__pycache__/install.cpython-39.pyc,, +pip/_internal/commands/__pycache__/list.cpython-39.pyc,, +pip/_internal/commands/__pycache__/search.cpython-39.pyc,, +pip/_internal/commands/__pycache__/show.cpython-39.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/commands/cache.py,sha256=XqHqGkiyZ6A0Vf0oIGJhWiNY4k9JIC0nlNmooiaCtuo,7453 +pip/_internal/commands/check.py,sha256=FZ7IHeRkwnWkwgdaMI1AjFPcI4xrPK4_4jODp8aDyiA,1617 +pip/_internal/commands/completion.py,sha256=RXEru4uYaBfUUtZJ2bLE7s6FJUe9t1BAVSUQ8wPzW0o,3005 +pip/_internal/commands/configuration.py,sha256=1Fr4QLwdu1OcBL_FZQh6uY3i7i38qI70OJGG-JhoUuI,9228 +pip/_internal/commands/debug.py,sha256=Bb2Lxzn7XEQRYgBYOZbuK3EYeLphKHo8Gubg_EZ6JnU,6851 +pip/_internal/commands/download.py,sha256=sT3gInhPvMyhuZ-rVBf1OlpLzh52J0hStM57_CPdvCA,5088 +pip/_internal/commands/freeze.py,sha256=xzVjiTJT5DBJceJPNnAYyCF4oGITyuSpfsfkSKR70Fg,2869 +pip/_internal/commands/hash.py,sha256=XoLZ3Hx_b72asRLGOe1WXSvJ6ClwSFhn-aFPgbcB9Zk,1719 +pip/_internal/commands/help.py,sha256=zV8LmdIbJOnVOIZTz1TwlNWQZQLEWZnJGwXSSh9SSEw,1173 +pip/_internal/commands/index.py,sha256=qTchSIS-zCEiJCrZ9X-o5_93kMYCSVZDRTmeY_fhOOE,4920 +pip/_internal/commands/install.py,sha256=oj_4a73RMGXgmFQV1jUZEZTnvnZw5kkT6pA3naYj3PA,28243 +pip/_internal/commands/list.py,sha256=1K-dhUMEs8akjPE16n5Eq9GsalONKkS7bvWwSCNzQe8,12090 +pip/_internal/commands/search.py,sha256=Dtebo30wNJJ0Blr5MkmiET1wIuNioxzoH8vR82ma7Tc,5707 +pip/_internal/commands/show.py,sha256=G-ak6SZS-H2MJqQI89D2x4TLd8l9amVYhtaa5dhCFeE,8208 +pip/_internal/commands/uninstall.py,sha256=sTUTiJSTp0NKeFHUBJHD3f-fSVPGFjBY6go_DhpvC0Q,3580 +pip/_internal/commands/wheel.py,sha256=dIRE7v6g9HTpTw0nsOG2HHoG0uvwrWV5-xyp0kuJdhU,6365 +pip/_internal/configuration.py,sha256=g_C1ByxxCGrYfY26B-X8v-3mbUwzlXdj9EKwDs-0kH0,14128 +pip/_internal/distributions/__init__.py,sha256=99Rzk077wS5wGire_mchcAjtJG9vbwTLPXZKLWrh_D4,879 +pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-39.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-39.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/distributions/base.py,sha256=VCEqCFm36o5SSpu3esHmM055Wv5TOxGFLXtxpY8m-L8,1244 +pip/_internal/distributions/installed.py,sha256=UZU2Q4-jcAaPexNZzqk5YXhols1jTjyh4xAA0ZQ_A8g,667 +pip/_internal/distributions/sdist.py,sha256=5OpYaS51ll8tqsZC-h86ij62RQkid3YZEOqUXCRq8TA,3957 +pip/_internal/distributions/wheel.py,sha256=8lzZqqpA5oUUHANOZlf0qcKLIunsJ3K821VP29hLYdg,1217 +pip/_internal/exceptions.py,sha256=yiMEmKFvLIPNGaLCQxxtnacfNhUisQayQ4XiqPuRLZU,13567 +pip/_internal/index/__init__.py,sha256=x0ifDyFChwwQC4V_eHBFF1fvzLwbXRYG3nq15-Axy24,32 +pip/_internal/index/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/index/__pycache__/collector.cpython-39.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-39.pyc,, +pip/_internal/index/__pycache__/sources.cpython-39.pyc,, +pip/_internal/index/collector.py,sha256=pB-NFZkI-KjQnhTBo7JzArphtu6OVJ52WVQlFQrSbFU,18179 +pip/_internal/index/package_finder.py,sha256=k7qar-7Lw778ODq0iB-ETXjof-MUhRh4YHXsVNjl6eo,37120 +pip/_internal/index/sources.py,sha256=SW2LlD5eAF2Rj74TbpEUNjADU9UH-K76oqgJFNtDlWc,6781 +pip/_internal/locations/__init__.py,sha256=bReITFXFSX786ngLRJhXhsb1npYOw8YbpOuOngrQUik,11584 +pip/_internal/locations/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-39.pyc,, +pip/_internal/locations/__pycache__/base.cpython-39.pyc,, +pip/_internal/locations/_distutils.py,sha256=OUPuNiGJP2vmiYgwdAR-ZQryj_2yANs9DebSm4afDZU,6040 +pip/_internal/locations/_sysconfig.py,sha256=sJJD4PQujUcLAaKiOeXYsILmQb0-hjznP79PzKPiA4Q,8137 +pip/_internal/locations/base.py,sha256=KMpxtATY6iOshQ3AimpymGTy81zK-pM1CWPemJQ0mj4,1631 +pip/_internal/main.py,sha256=yXF5_lVS3QQTxrbbvNk31juR2E1_16H1iu-xuXAod9o,364 +pip/_internal/metadata/__init__.py,sha256=p3NvOGG_3quhV9bOlDPvWSAEByPsdn63cO4FrsFubM0,1624 +pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-39.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-39.pyc,, +pip/_internal/metadata/base.py,sha256=dCfs9XIcicyYSoFtVtzq6rFvduUYNdV6U_EDDlG4yJ0,8170 +pip/_internal/metadata/pkg_resources.py,sha256=azUoAkvyF-h80pORd0czY4-fWUIRe_z3i2qNHuKiSjE,5353 +pip/_internal/models/__init__.py,sha256=j2kiRfNTH6h5JVP5yO_N2Yn0DqiNzJUtaPjHe2xMcgg,65 +pip/_internal/models/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-39.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-39.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-39.pyc,, +pip/_internal/models/__pycache__/index.cpython-39.pyc,, +pip/_internal/models/__pycache__/link.cpython-39.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-39.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-39.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-39.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/models/candidate.py,sha256=L4nKS2HIgdOfbylU-2MIO2APVWEWueJpHu_gcwO0iH4,977 +pip/_internal/models/direct_url.py,sha256=36n2ed5kddmPLhNLh4b1GzGr36dUdSgl23Xrbcxd_ck,6482 +pip/_internal/models/format_control.py,sha256=PZ5PExPrxArZWzzPFATSj6W07UqvxjtrMBgFNAUxae4,2641 +pip/_internal/models/index.py,sha256=vqgOrXoZqQW4AA928wBmEGjKbxjeb-_NALLGZH0kMXY,1090 +pip/_internal/models/link.py,sha256=SrRPbWmpzWh1LfQd-eurbYAuMvOvpD5fzMvNDlRFpQ8,10227 +pip/_internal/models/scheme.py,sha256=moDcYk85amZUkf6Je5TDvXh4xMHxsSgf8rkD1ykpQhU,769 +pip/_internal/models/search_scope.py,sha256=D_Q6xSo1dTjSRljshHz_xVe4vXXivl2H7_rtj0dSHpU,4600 +pip/_internal/models/selection_prefs.py,sha256=0DZIWNPT8q2EiuqZCAQxczCoVnbs9_C4zugNfhNnvaw,1923 +pip/_internal/models/target_python.py,sha256=NUm2Ua7qbJHFK0UzKAlfHixudx4-FgmAFKPKf3B2RyU,3981 +pip/_internal/models/wheel.py,sha256=NLmn_y8dVc5vfTcAYw3EfS692hAF9MPPMDr5wTBu_4E,3633 +pip/_internal/network/__init__.py,sha256=IEtuAPVGqBTS0C7M0KJ95xqGcA76coOc2AsDcgIBP-8,52 +pip/_internal/network/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/network/__pycache__/auth.cpython-39.pyc,, +pip/_internal/network/__pycache__/cache.cpython-39.pyc,, +pip/_internal/network/__pycache__/download.cpython-39.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc,, +pip/_internal/network/__pycache__/session.cpython-39.pyc,, +pip/_internal/network/__pycache__/utils.cpython-39.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc,, +pip/_internal/network/auth.py,sha256=820jI8SAsVfNnfoOfxfH7HaGVFtYX_M8vsHEtiHCS14,11961 +pip/_internal/network/cache.py,sha256=KfaWDbALIGsUnP4qi1MfvKSpCJ0vlC5lviELSTNKLtQ,2169 +pip/_internal/network/download.py,sha256=-EnS83XhpNVRsfB107nYU-OPZsHd29QQdG6lNokemAk,6200 +pip/_internal/network/lazy_wheel.py,sha256=LFVwrv2nHpwr0pl17i-3sbEAedJjraaLdRTFRfS23vo,7825 +pip/_internal/network/session.py,sha256=9KBZpMGrtEmek4iPgpZiLEBgyxQ6bPH3yUUxNbEEQ54,17036 +pip/_internal/network/utils.py,sha256=K4d2srYGzR_tz5vVBbKFC7rBWA-G_DqqX9io2flIrI0,4155 +pip/_internal/network/xmlrpc.py,sha256=oFCngChTOtIVcc55ExwdX1HJcPvL-6PKMNl5ok6nMQk,1851 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/operations/__pycache__/check.cpython-39.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-39.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-39.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-39.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-39.pyc,, +pip/_internal/operations/build/metadata.py,sha256=-06VLFRgwxsIuqHL_56NxXdn7TQuZHeaL4RYXDnjB18,1200 +pip/_internal/operations/build/metadata_legacy.py,sha256=1V8i8VVGUF7GauyS_KPEhcl7dIwrocD6lyT5kWvXkBA,1991 +pip/_internal/operations/build/wheel.py,sha256=r2IKZgek1REUjP4xA0RLEG5O1-HsPZtzfy7q7W3_nhQ,1144 +pip/_internal/operations/build/wheel_legacy.py,sha256=4ddx179dnTTHJertW50M6869gchuyrNEdYcyWe4w5Yg,3337 +pip/_internal/operations/check.py,sha256=eCLrRScb_ZJDxTK9rMjU5kbLuu1xRngdoLxATNPuPQE,5448 +pip/_internal/operations/freeze.py,sha256=WEglEwdf9rD9M6jGzMyRVhiN-WF8p-hhiHGnwsWlDDc,10833 +pip/_internal/operations/install/__init__.py,sha256=Zug2xxRJjeI2LdVd45iwmeavUBYXA4ltbhFFwc4BEOg,53 +pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-39.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=FhvBds_MF_Flabnylh6EVwCD3mFDxa-RmdKq3jl5JGM,1443 +pip/_internal/operations/install/legacy.py,sha256=xyGakzR-Xnfa9H37-OzT6cKH-AQMsctBkFxfUr3jlvw,4537 +pip/_internal/operations/install/wheel.py,sha256=oV6IB77355YCaI_ta4mqWXyHlkQF8OqBRZAdq8jpQYs,30269 +pip/_internal/operations/prepare.py,sha256=QB3-cmVD1agyO6_B9oiRs9HCQyyDMHF9pLTboLtufxo,25503 +pip/_internal/pyproject.py,sha256=DQoqc7F3HyFBO7fG82HOPsdP-GfEzfuqTUGOG0v2E1c,7246 +pip/_internal/req/__init__.py,sha256=5eiQnk8IiwtrWHU4r1ttcLy545MCrUdg5eRRq7_ZNz0,2925 +pip/_internal/req/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-39.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-39.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-39.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-39.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc,, +pip/_internal/req/constructors.py,sha256=Izde_5pbxkMzDWN-khLufzKKpC0uaGNTPRO9ShWrud8,16300 +pip/_internal/req/req_file.py,sha256=RN04-oHRNn5xECciUcs0Gh3LxA1RdlVw1X6wbVs0r7k,17936 +pip/_internal/req/req_install.py,sha256=gIGZ3t9QzqCBoeL04my4DIuqM86j0i5nId6iwZIGYzQ,32517 +pip/_internal/req/req_set.py,sha256=yeKmy9-oH5tW2Oe7SHobrp9btcDBZ3DxdFJ3HqAKQ44,7762 +pip/_internal/req/req_tracker.py,sha256=tFN50kuTTWwpY0WJkPK6QCPUZePmUhaBbuKVSgkWl1A,4312 +pip/_internal/req/req_uninstall.py,sha256=T6n_Pgpljq30LLQ81Qs4kpPoxSuJUkUvbvG9b697rGs,24450 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-39.pyc,, +pip/_internal/resolution/base.py,sha256=qMuP4GV1NJU-81E3gUKzczQxzS-f_SWF0Dk59YVrH9A,575 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=6nUm1wcBGRT58gUOu0-B0TE354XrCx_dexslaFtlDis,18005 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-39.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=IWvd3KNMJtIqDLcqeUuGV4MbimM83JOofBKwggVYxzI,5434 +pip/_internal/resolution/resolvelib/candidates.py,sha256=a8-csKtuj_Bz8UeYgk2cz8mP1EOObTyXsZrCO8wq2Tc,19397 +pip/_internal/resolution/resolvelib/factory.py,sha256=clwGzM3_u3SReBwOOG9sAvcdd2pNqk03T5qrCyryeB4,27559 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9kFfU_ZFugtCMaCIez6UYrG4hyfqwDaQYxP9db9XQvE,5427 +pip/_internal/resolution/resolvelib/provider.py,sha256=qXB9l3kjEca0orqTS2e6TGaWHJIn537kEqJYClBIShQ,8617 +pip/_internal/resolution/resolvelib/reporter.py,sha256=AwjzTX3LytVk9wuVS1LdJAk1V2kPhEdn1dE7MfrPwLM,2669 +pip/_internal/resolution/resolvelib/requirements.py,sha256=FKE-HcZmsljRrcLpr545XprOOqDd09149GjjF8AfTiw,5621 +pip/_internal/resolution/resolvelib/resolver.py,sha256=Bmwfy5pO8cLzI-13YMgWEAWwFlpjLKdKeCBHMrdWyWM,10795 +pip/_internal/self_outdated_check.py,sha256=cNOjZkFVtwJmftBZt34cH2j9SJ5Gd4vSbJY8FBYM6tg,6671 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-39.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-39.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-39.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-39.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-39.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-39.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-39.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-39.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-39.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-39.pyc,, +pip/_internal/utils/__pycache__/models.cpython-39.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-39.pyc,, +pip/_internal/utils/__pycache__/parallel.cpython-39.pyc,, +pip/_internal/utils/__pycache__/pkg_resources.cpython-39.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-39.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-39.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-39.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-39.pyc,, +pip/_internal/utils/_log.py,sha256=t0zjUNjMLPYna4ZbL0MJB8wrxGdFvC8JsPs7f3UUdz0,1053 +pip/_internal/utils/appdirs.py,sha256=JKsp6Dlfk0BjBfni2Geq_uzpSycc8pV0Ap5A5qAwhag,1220 +pip/_internal/utils/compat.py,sha256=U1ofuQpRkcmWNtCsZccTK_24YsauhWl0KPDMnC69adM,1947 +pip/_internal/utils/compatibility_tags.py,sha256=f0RJ5Wb3Jj2T5z57i0RPLyoWNtqYvymealy3aUucrVU,5622 +pip/_internal/utils/datetime.py,sha256=NhzGBwpDdc5W1hX7-ynGHSFH5T8srUUPpFw6zOORiMM,253 +pip/_internal/utils/deprecation.py,sha256=onEDau8zZyztsQf5HjhHTckTChbXIIdOWRh_Ugz1PSQ,3304 +pip/_internal/utils/direct_url_helpers.py,sha256=7xVyieLJtD1SmB1xsNhIPsYBGIDK7AZGQUtfZyRi0tQ,3073 +pip/_internal/utils/distutils_args.py,sha256=fw5ZrUBHRy2IWgLciAKUl7RA4Ryu6jWL-M9LNv90V2k,1291 +pip/_internal/utils/encoding.py,sha256=3Hr_T_shHHq5EJmQg7sUCeNY37pvmxEmQay6aPsK_4o,1205 +pip/_internal/utils/entrypoints.py,sha256=Iq8laJFPEcErDlGcPIshG_-VrUmfwLB3_nLWlT1EIKI,1082 +pip/_internal/utils/filesystem.py,sha256=8UhURyTKl2R1l9TAnYXuULsGNNMkH9IBPHAoRy4QEaU,6075 +pip/_internal/utils/filetypes.py,sha256=0VA-FQmevfgw7_9OAe7YXjxB3DcYUxpUypVKERWlU_I,789 +pip/_internal/utils/glibc.py,sha256=6i1vPIDuLfV3vKQeFe2oUa9QjSHGVlOkvysujEldOEE,3262 +pip/_internal/utils/hashes.py,sha256=dV10-3U4kcopR-XrArkX6vFSiLS9uNOhPbrv8olu8Qw,5332 +pip/_internal/utils/inject_securetransport.py,sha256=Wa89Vhq5SdlBGreg8wdE40iDJGTouYEyFuugMrOVUI0,846 +pip/_internal/utils/logging.py,sha256=cRHg2gUYXEUknl_WzZ2Zdxxah485Gr69wl8TpymaAHc,12735 +pip/_internal/utils/misc.py,sha256=Zt509grPCYtfQEI16CHULTX9nW8eRXbBucPQQasuOYk,24472 +pip/_internal/utils/models.py,sha256=89bZ42cL0YJUmV9GCaFLfs4ZiG_cDW1udAHc6UTCI2c,1376 +pip/_internal/utils/packaging.py,sha256=xTyBldqCDRn0_v9CQizadbHd3ZUTgjXeElTxrJW_JKo,2989 +pip/_internal/utils/parallel.py,sha256=7IFve8sBfphARNXprnhhuSyzlxfdDWaMP3LTFwCUL9c,3325 +pip/_internal/utils/pkg_resources.py,sha256=bkYDe05U5fph4t8TO-q06fpHQwuzookJqP0MokucHWg,1146 +pip/_internal/utils/setuptools_build.py,sha256=tO48Mgcb28GJf3zmkQlzBvsRR-2hdrpm1dipXFBkyaE,5220 +pip/_internal/utils/subprocess.py,sha256=0GB0g9r2muHAnljX2s_sX-x805eWWoDtdN_9JcCwKu8,10324 +pip/_internal/utils/temp_dir.py,sha256=gFwfsfEtM-y5Lb9ZqpbP1wy_K3o-vUPsMouAFQCy7mg,8210 +pip/_internal/utils/unpacking.py,sha256=klIaodkk3_rIg-VjN2s-PQFPfGXaVhOWpOwd46T7bHo,9317 +pip/_internal/utils/urls.py,sha256=pJQSXBv1vKtBFr9KPbSMYA5lY7-G9rjLHq0A8plI7yo,1863 +pip/_internal/utils/virtualenv.py,sha256=3JeTdc_O-2uZbfn7EmQKLyXurWKD3nKSEi856ZZWSC4,3675 +pip/_internal/utils/wheel.py,sha256=xeIImmT3FJfVBPv3J4jxsHJy2wLinnJXAsZOcrrMSAM,6479 +pip/_internal/vcs/__init__.py,sha256=6ZAbu6NoqDWJjYPWCtn8PaZjulAEgs-R0Xngq2Z174Q,611 +pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-39.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-39.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-39.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc,, +pip/_internal/vcs/bazaar.py,sha256=6_3dygJ3x0TrnlsMx2-sokvNKpk-6EfH2zsMgAmLj4o,3058 +pip/_internal/vcs/git.py,sha256=vYxXxg4M6YIUxNQCswMJJ2ZiBkb4capqTziRrATcp0E,17853 +pip/_internal/vcs/mercurial.py,sha256=jrfkmZF7SLOwxrJroz-NjvTTMCvaWl8BnZATPdu1CsE,5234 +pip/_internal/vcs/subversion.py,sha256=Oy4kcrNGmimnatKWHGKtED-0Da6bjfuc2DtsnitUam0,12195 +pip/_internal/vcs/versioncontrol.py,sha256=7w9WNAlFXQj5pRlWA-3jA8XUwn1VSxbNfmWvI-aY2p0,23998 +pip/_internal/wheel_builder.py,sha256=3bibo47mjXw7rRChRqudDQObp5JynLQ5uZ8x81PtBq8,12100 +pip/_vendor/__init__.py,sha256=3sjRJDFysoLez0JAFlt8jJA0FUzWVPkt9AlJlcuNsC0,4814 +pip/_vendor/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/__pycache__/appdirs.cpython-39.pyc,, +pip/_vendor/__pycache__/distro.cpython-39.pyc,, +pip/_vendor/__pycache__/pyparsing.cpython-39.pyc,, +pip/_vendor/__pycache__/six.cpython-39.pyc,, +pip/_vendor/appdirs.py,sha256=Od1rs7d0yMmHLUc0FQn2DleIUbC--EEmM-UtXvFqAjM,26540 +pip/_vendor/cachecontrol/__init__.py,sha256=SR74BEsga7Z2I6-CH8doh2Oq_vH0GG7RCwjJg7TntdI,313 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-39.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=KIO6PIJoXmNr5RGS2pZjDum1-40oR4fw5kE0LguxrY4,1352 +pip/_vendor/cachecontrol/adapter.py,sha256=FBRrYfpkXaH8hKogEgw6wYCScnL2SJFDZlHBNF0EvLE,5015 +pip/_vendor/cachecontrol/cache.py,sha256=gCo5R0D__iptJ49dUfxwWfu2Lc2OjpDs-MERy2hTpK8,844 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=rN8Ox5dd2ucPtgkybgz77XfTTUL4HFTO2-n2ACK2q3E,88 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-39.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-39.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=tw35e4ZnOsxqrlZ2fQ2VYz2FlUlCbFMerNu2tPwtRHY,4299 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=hFJ_J9MCUTjblJCBT_cV_glP--2toqHDCKLRGUIHSOQ,889 +pip/_vendor/cachecontrol/compat.py,sha256=3BisP29GBHAo0QxUrbpBsMeXSp8YzKQcGHwEW7VYU2U,724 +pip/_vendor/cachecontrol/controller.py,sha256=fTDK1V7NjpnU1hwfMboX4Vyh73-uWgL6QkghtvvyTrY,14525 +pip/_vendor/cachecontrol/filewrapper.py,sha256=YsK9ISeZg26n-rS0z7MdEcMTyQ9gW_fLb6zIRJvE2rg,2613 +pip/_vendor/cachecontrol/heuristics.py,sha256=yndlfXHJZ5u_TC1ECrV4fVl68OuWiXnDS0HPyscK1MM,4205 +pip/_vendor/cachecontrol/serialize.py,sha256=7Jq5PcVBH6RVI-qkKkQsV5yAiZCFQa7yFhvITw_DYsc,7279 +pip/_vendor/cachecontrol/wrapper.py,sha256=tKJnzRvbl7uJRxOChwlNLdJf9NR0QlnknQxgNzQW2kM,719 +pip/_vendor/certifi/__init__.py,sha256=mRf2Fl2WmJxc7O-Zob068lpqa3nlsU4215CXzbkoBBU,65 +pip/_vendor/certifi/__main__.py,sha256=4JJNpOgznsXzgISGReUBrJGB6Q4zJOlIV99WFE185fM,267 +pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-39.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-39.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=3i-hfE2K5o3CBKG2tYt6ehJWk2fP64o6Th83fHPoPp4,259465 +pip/_vendor/certifi/core.py,sha256=u1ccq2BcSYX_ZtX61r6UFpwbKCKxNavjrzse_QVQ_PI,2916 +pip/_vendor/chardet/__init__.py,sha256=yxky3TQpsr5YTFEf5XYv0O4wq2e1WSilELYZ9e2AEes,3354 +pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-39.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-39.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=dwRzRlsGp3Zgr1JQSSSwnxvyaZ7_q-5kuPfCVMuy4to,31640 +pip/_vendor/chardet/big5prober.py,sha256=TpmdoNfRtnQ7x9Q_p-a1CHaG-ok2mbisN5e9UHAtOiY,1804 +pip/_vendor/chardet/chardistribution.py,sha256=NzboAhfS6GODy_Tp6BkmUOL4NuxwTVfdVFcKA9bdUAo,9644 +pip/_vendor/chardet/charsetgroupprober.py,sha256=NPYh0Agp8UnrfqIls_qdbwszQ1mv9imGawGUCErFT6M,3946 +pip/_vendor/chardet/charsetprober.py,sha256=kk5-m0VdjqzbEhPRkBZ386R3fBQo3DxsBrdL-WFyk1o,5255 +pip/_vendor/chardet/cli/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=535zsG4tA_x-_xPtEeDvn46QLib2nvF-5NT_nJdGgVs,2831 +pip/_vendor/chardet/codingstatemachine.py,sha256=qz9ZwK1q4mZ4s4zDRbyXu5KaGunYbk7g1Z7fqfb4mA4,3678 +pip/_vendor/chardet/compat.py,sha256=3j2eGvEAakISaIanHZ4wZutzfttNdRSdlo6RSjpyxsM,1236 +pip/_vendor/chardet/cp949prober.py,sha256=5NnMVUcel3jDY3w8ljD0cXyj2lcrvdagxOVE1jxl7xc,1904 +pip/_vendor/chardet/enums.py,sha256=3H_EIVP-VUYOdKqe2xmYdyooEDSLqS8sACMbn_3oejU,1737 +pip/_vendor/chardet/escprober.py,sha256=5MrTnVtZGEt3ssnY-lOXmOo3JY-CIqz9ruG3KjDpkbY,4051 +pip/_vendor/chardet/escsm.py,sha256=xQbwmM3Ieuskg-Aohyc6-bSfg3vsY0tx2TEKLDoVZGg,10756 +pip/_vendor/chardet/eucjpprober.py,sha256=PHumemJS19xMhDR4xPrsvxMfyBfsb297kVWmYz6zgy8,3841 +pip/_vendor/chardet/euckrfreq.py,sha256=MrLrIWMtlaDI0LYt-MM3MougBbLtSWHs6kvZx0VasIM,13741 +pip/_vendor/chardet/euckrprober.py,sha256=VbiOn7_id7mL9Q5GdeV0Ze3w5fG0nRCpUkEzeR-bnnY,1795 +pip/_vendor/chardet/euctwfreq.py,sha256=ZPBIHZDwNknGf7m6r4xGH8bX0W38qBpnTwVVv1QHw_M,32008 +pip/_vendor/chardet/euctwprober.py,sha256=hlUyGKUxzOPfBxCcyUcvRZSxgkLuvRoDU9wejp6YMiM,1793 +pip/_vendor/chardet/gb2312freq.py,sha256=aLHs-2GS8vmSM2ljyoWWgeVq_xRRcS_gN7ykpIiV43A,20998 +pip/_vendor/chardet/gb2312prober.py,sha256=msVbrDFcrJRE_XvsyETiqbTGfvdFhVIEZ2zBd-OENaE,1800 +pip/_vendor/chardet/hebrewprober.py,sha256=r81LqgKb24ZbvOmfi95MzItUxx7bkrjJR1ppkj5rvZw,14130 +pip/_vendor/chardet/jisfreq.py,sha256=vrqCR4CmwownBVXJ3Hh_gsfiDnIHOELbcNmTyC6Jx3w,26102 +pip/_vendor/chardet/jpcntx.py,sha256=Cn4cypo2y8CpqCan-zsdfYdEgXkRCnsqQoYaCu6FRjI,19876 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=IuDOQ4uAe5spaYXt1F-2_496DFYd3J5lyLKKbVg-Nkw,110347 +pip/_vendor/chardet/langgreekmodel.py,sha256=cZRowhYjEUNYCevhuD5ZMHMiOIf3Pk1IpRixjTpRPB0,103969 +pip/_vendor/chardet/langhebrewmodel.py,sha256=p-xw_b2XvGVSIQFgQL91cVpS7u3vPpGJZ0udYxD07Do,103159 +pip/_vendor/chardet/langhungarianmodel.py,sha256=EKIZs5Z8Y-l6ORDcBzE9htOMMnAnr2j6Wb1PFRBMVxM,107148 +pip/_vendor/chardet/langrussianmodel.py,sha256=TFH-3rTFzbCBF15oasmoqf92FKBnwWY_HaN2ptl5WVo,136898 +pip/_vendor/chardet/langthaimodel.py,sha256=rTzLQ2x_RjQEzZfIksCR--SCFQyuP5eCtQpqxyl5-x8,107695 +pip/_vendor/chardet/langturkishmodel.py,sha256=fWI_tafe_UQ24gdOGqOWy1tnEY2jxKHoi4ueoT3rrrc,100329 +pip/_vendor/chardet/latin1prober.py,sha256=s1SFkEFY2NGe2_9bgX2MhOmyM_U_qSd_jVSdkdSgZxs,5515 +pip/_vendor/chardet/mbcharsetprober.py,sha256=hzFVD-brxTAVLnTAkDqa1ztd6RwGGwb5oAdvhj1-lE8,3504 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=DlT-X7KRUl5y3SWJNqF1NXqvkjVc47jPKjJ2j4KVs3A,2066 +pip/_vendor/chardet/mbcssm.py,sha256=LGUDh1VB61rWsZB4QlJBzaCjI2PUEUgbBc91gPlX4DQ,26053 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=pGf_EnapgynSUCViRjUcwEi7AWw_bYPJFHCqerAFSbQ,19784 +pip/_vendor/chardet/sbcharsetprober.py,sha256=VPAZ5z-o8ixIIfEGTScLVXeQxkd3Zqi1eceerr0rb78,6281 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=p8XICsXYXOF78Anypfvdne8K_0p8qFC-SUF5nwD1fo4,4392 +pip/_vendor/chardet/sjisprober.py,sha256=1WGev_SSHpa7AVXmM0DIONl1OvyKc8mdydUNaKtGGNI,3866 +pip/_vendor/chardet/universaldetector.py,sha256=C3ryFrDZ9JuroNMdYwgDa2_zAYJlWuPHyHLX5WtCY-g,12789 +pip/_vendor/chardet/utf8prober.py,sha256=rGwn69WfIvmibp0sWvYuH_TPoXs7zzwKHTX79Ojbr9o,2848 +pip/_vendor/chardet/version.py,sha256=LCY3oiBIflXJGeBYm7ly2aw6P9n272rhp3t7qz3oOHo,251 +pip/_vendor/colorama/__init__.py,sha256=besK61Glmusp-wZ1wjjSlsPKEY_6zndaeulh1FkVStw,245 +pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-39.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-39.pyc,, +pip/_vendor/colorama/ansi.py,sha256=121ZIWJSdXR76TcqKXusVZQRgyb0AIlRnf5EW6oSGlQ,2624 +pip/_vendor/colorama/ansitowin32.py,sha256=bZByVMjpiUp-LSAK21KNvCh63UN9CPkXdHFPUsq20kA,10775 +pip/_vendor/colorama/initialise.py,sha256=J92wwYPAAEgdlAyw-ady4JJxl1j9UmXPodi0HicWDwg,1995 +pip/_vendor/colorama/win32.py,sha256=fI0Ani_DO_cYDAbHz_a0BsMbDKHCA1-P3PGcj0eDCmA,5556 +pip/_vendor/colorama/winterm.py,sha256=Zurpa5AEwarU62JTuERX53gGelEWH5SBUiAXN4CxMtA,6607 +pip/_vendor/distlib/__init__.py,sha256=iP0jP2IxDeV5bLyzuna9JsdxOw2AO-VqAMXslthb-oQ,604 +pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-39.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-39.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=XkACqtjaFfFn1QQBFDNxSqhMva0LqXeeh6H3fVwwLQ4,280 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-39.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-39.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-39.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=focjmI7975W3LgEtiNC99lvxohfZdsNSLTakOcPNShs,1012 +pip/_vendor/distlib/_backport/shutil.py,sha256=h-yIttFtLq-_LKn5lLn4beHXzRwcmo2wEg4UKU7hX6E,26471 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=LoipPkR2PfCKC7JUQBGxp6OFVlWIiWBXT-rNuzv8acU,2701 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=qV5ZK6YVkHS-gUFacIT2TpFBw7bZJFH3DYa8PbT6O54,27640 +pip/_vendor/distlib/_backport/tarfile.py,sha256=fzwGLsCdTmO8uzoHjyjSgu4-srrDQEAcw4jNKUfvQH0,95235 +pip/_vendor/distlib/compat.py,sha256=Z8PBQ-ZPCJuRvzs5rtHuzceFOB8iYV8HHjAGrW3SQ8s,42528 +pip/_vendor/distlib/database.py,sha256=m_LtL3siDUdcSvftoTnXcjhUJA-WZhDwTvHO7rg72SA,52398 +pip/_vendor/distlib/index.py,sha256=LMZK2uX_oH2SNgPQ_lnnoJFFx6X5ByY-LBP8qgUTuC0,21248 +pip/_vendor/distlib/locators.py,sha256=mefGpRbPPG1Bl-UhNUquwBQR50J8uL0x2CSG-c5mbJs,53265 +pip/_vendor/distlib/manifest.py,sha256=0TlGw5ZyFp8wxr_GJz7tAAXGYwUJvceMIOsh9ydAXpM,15204 +pip/_vendor/distlib/markers.py,sha256=lTFISO7AcGHoYk2AQx_VFrjDltOFAg5YnPTvBGnOZtE,4474 +pip/_vendor/distlib/metadata.py,sha256=tCLNLfWfC-lQacX4bY-mBTKPgJZTiowKnLX2HWUcQeE,40167 +pip/_vendor/distlib/resources.py,sha256=DMriFf8j-5IXduPHW0YPnx50jQIbaOlvTQkPcdN5r88,11178 +pip/_vendor/distlib/scripts.py,sha256=-jtzATPNKOj8VpnxJUh1aXdUUkNpXiop-bOwsojbwWA,17671 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=w5nS2W71eWhilj69cZbERp6NR5rV1p_yIUbkwpvtqu4,69523 +pip/_vendor/distlib/version.py,sha256=cI1oZGIqY11EQn5P-jI_OqQml7jIxLFS52syBFIpXNU,24247 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=NNoICc3pe4uSF-gHpmqgGwQs3Q-0dnn5418JHS1ZI6c,44118 +pip/_vendor/distro.py,sha256=ni3ahks9qSr3P1FMur9zTPEF_xcAdaHW8iWZWqwB5mU,44858 +pip/_vendor/html5lib/__init__.py,sha256=Bmlpvs5dN2GoaWRAvN2UZ1yF_p7xb2zROelA0QxBKis,1195 +pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-39.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=IyMKE35pNPCYYGs290_oSUhWXF1BQZsbVcXBzGuFvl4,17017 +pip/_vendor/html5lib/_inputstream.py,sha256=EA6Wj46jxuK6544Vnk9YOjIpFwGbfJW0Ar2cMH1H0VU,33271 +pip/_vendor/html5lib/_tokenizer.py,sha256=BUDNWZENVB0oFBiKR49sZsqQU4rzLLa13-byISlYRfA,78775 +pip/_vendor/html5lib/_trie/__init__.py,sha256=kfSo27BaU64El8U7bg4ugLmI3Ksywu54xE6BlhVgggA,114 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-39.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=LTpLNz1pn7LAcfn2TFvRp4moVPbFTkkbhzjPKUrvGes,1053 +pip/_vendor/html5lib/_trie/py.py,sha256=LmuYcbypKw-aMLcT0-IY6WewATGzg1QRkmyd8hTBQeY,1842 +pip/_vendor/html5lib/_utils.py,sha256=dLFxoZDTv5r38HOIHy45uxWwUY7VhLgbEFWNQw6Wppo,5090 +pip/_vendor/html5lib/constants.py,sha256=P9n6_ScDgAFkst0YfKaB-yaAlxVtUS9uMn5Lh8ywbQo,86410 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-39.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=0TV6VWJzhNkcLFiR7BNZUJsTJgAEEyZ02in6-PuL2gU,948 +pip/_vendor/html5lib/filters/base.py,sha256=6D2t423hbOLtjnvAAOrs1mWX1vsabMLBrWQF67ITPho,298 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=J-W5X3LyosH1sUipiHU1x-2ocd7g9JSudpIek_QlCUU,3018 +pip/_vendor/html5lib/filters/lint.py,sha256=O6sK29HXXW02Nv-EIEOfGvdQMuXxWvBePu2sQ2ecbJc,3736 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=IVHcJ35kr6_MYBqahFMIK-Gel-ALLUk6Wk9X-or_yXk,10795 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=uwT0HNJHjnw3Omf2LpmvfoVdIgAWb9_3VrMcWD1es_M,27813 +pip/_vendor/html5lib/filters/whitespace.py,sha256=bCC0mMQZicbq8HCg67pip_oScN5Fz_KkkvldfE137Kw,1252 +pip/_vendor/html5lib/html5parser.py,sha256=2xGZMaUvdkuuswAmpkazK1CXHT_y3-XTy4lS71PYUuU,119981 +pip/_vendor/html5lib/serializer.py,sha256=vMivcnRcQxjCSTrbMFdevLMhJ2HbF0cfv_CkroTODZM,16168 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=76InX2oJAx-C4rGAJziZsoE_CHI8_3thl6TeMgP-ypk,709 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-39.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-39.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=nQHNa4Hu0IMpu4bqHbJJS3_Cd1pKXgDO1pgMZ6gADDg,1769 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=PAmV6NG9BSpfMHUY72bDbXwAe6Q2tPn1BC2yAD-K1G0,1826 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=zfrXDjeqDo2M7cJFax6hRJs70Az4pfHFiZbuLOZ9YE4,3680 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-39.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-39.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-39.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-39.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=Yao9LOJd-4KaLEx-3ysqRkAkhv1YaDqhTksvX6nuQyY,14982 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=QWkBtUprtDosTiTFlIY6QpgKwk2-pD0AV84qVTNgiLo,9164 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=k-LHrme562Hd5GmIi87r1_vfF25MtURGPurT3mAp8sY,13179 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=CviyyGjvv2TwN-m47DC8DFWdx0Gt-atRw9jMTv4v8-Q,15158 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=buyxCJb9LFfJ_1ZIMdc-Do1zV93Uw-7L942o2H-Swy0,5873 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-39.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=g-cLq7VStBtpZZZ1v_Tbwp3GhJjQ2oG5njgeHVhAaXE,7728 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=fBJht3gn5a6y1WN2KE9gsUru158yTQ0KikT3vOM7Xc4,1456 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=VtcKOS13qy9nv2PAaYoB1j9V1Z8n9o0AEA9KoGAgYOg,4682 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=u9X06RqSrHanDb0qGI-v8I99-PqzOzmnpZOspHHz_Io,6572 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=P_2Tnc2GkbWJfuodXN9oYIg6kN9E26aWXXe9iL0_eX4,2378 +pip/_vendor/idna/__init__.py,sha256=aHTBHXXun6n0ecdus8ToBvhs-4Ziin24HuNbJ9ZXE3o,893 +pip/_vendor/idna/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-39.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-39.pyc,, +pip/_vendor/idna/codec.py,sha256=LtpT6KflQ-NkZZXgLc0_ADLiShhKuC__nz_JmYyLnXs,3570 +pip/_vendor/idna/compat.py,sha256=Y-t409G3-dxunv_cSx0zrDjJkOKtC60ALLuqSknryXc,376 +pip/_vendor/idna/core.py,sha256=PWa20xVmQMBN8zgaBNXGNKCbQHOdnqKEpdcWCxXTidw,13235 +pip/_vendor/idna/idnadata.py,sha256=z3JZKnxitScqic6U-cO3rM_SmC2P0-UjUHEDnGv1xsQ,44400 +pip/_vendor/idna/intranges.py,sha256=Ipf6IPZDhD56FppDz_tjl_1YWzzh_viPiEBBp_nSQ8k,1991 +pip/_vendor/idna/package_data.py,sha256=MMuW8HkL_d3g6tkyzl7kIEN-fg9uyv6YDmk_v_jjL3U,23 +pip/_vendor/idna/uts46data.py,sha256=l_0BwSDthDPKq_AX35avb7jnXUgPEKgjf816traOf8s,210287 +pip/_vendor/msgpack/__init__.py,sha256=OhoFouHD7wOYMP2PN-Hlyk9RAZw39V-iPTDRsmkoIns,1172 +pip/_vendor/msgpack/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-39.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-39.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-39.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-39.pyc,, +pip/_vendor/msgpack/_version.py,sha256=qcv5IclQy1PSvtCYDvZyjaUSFWdHPIRzdGjv3YwkKCs,21 +pip/_vendor/msgpack/exceptions.py,sha256=2fCtczricqQgdT3NtW6cTqmZn3WA7GQtmlPuT-NhLyM,1129 +pip/_vendor/msgpack/ext.py,sha256=3Xznjz11nxxfQJe50uLzKDznWOvxOBxWSZ833DL_DDs,6281 +pip/_vendor/msgpack/fallback.py,sha256=ZaNwBMO2hh9WrqHnYqdHJaCv8zzPMnva9YhD5yInTpM,39113 +pip/_vendor/packaging/__about__.py,sha256=eoW72tGZd0YfLOf_tDScx_kjG1SFtdXMg79yNoJrxg4,687 +pip/_vendor/packaging/__init__.py,sha256=Rtl7XZgdQyDFurOf4u9TWH8UM8-Y6pNC9mfN1QP5NZY,522 +pip/_vendor/packaging/__pycache__/__about__.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-39.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-39.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=qLGjZQVH7CwWE2jjOIyE2f4hektTsbtFc7UxfRCQzMI,11789 +pip/_vendor/packaging/_musllinux.py,sha256=Eq-8bd_ZnxcxPEZ-N4TTl7_HATTosVSmxMhZidXvg5g,4514 +pip/_vendor/packaging/_structures.py,sha256=9-rULC3_oZTgVRl9Furm3bFZe7xVsZeGiway_piR3c0,1696 +pip/_vendor/packaging/markers.py,sha256=nTk-tDQYPWjSMZSUIwGVaIvY3NbYmtQQLSXvAgBBxL8,8791 +pip/_vendor/packaging/requirements.py,sha256=PKbV9AWRNnqd0jGBMi83GPyS3hAUmx8IMxjQSJEBXsY,4822 +pip/_vendor/packaging/specifiers.py,sha256=HeDND7swHCqUzD9mKLuvXwBp8Rl-sBdWoA9okxul8cA,31792 +pip/_vendor/packaging/tags.py,sha256=aUZfcmH14rf5DAwYCHHjx5Z9zWnPAYqm9QKJf0yEkRk,16198 +pip/_vendor/packaging/utils.py,sha256=wl4SX90PE-_rF8s24QsN30N9afxY8BX42yKBmwI3wtU,4336 +pip/_vendor/packaging/version.py,sha256=CfhEcnRcBUAgA2viaZV9i5f84V0goapf5vSGgg3Yxl0,15169 +pip/_vendor/pep517/__init__.py,sha256=_xFPzQ0RNMbFs0cvD091C2aMOneiq-cTNfGj9uSTc3k,136 +pip/_vendor/pep517/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-39.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-39.pyc,, +pip/_vendor/pep517/build.py,sha256=MDBFdwDA7ygdOFkHRZDA2vmbLuM5vIg3PYnHAszhMz8,3596 +pip/_vendor/pep517/check.py,sha256=FwTS6MXy67e7MCC3QPsN4g7sou0Pg1FkXxMBLimFJQ4,6303 +pip/_vendor/pep517/colorlog.py,sha256=uOdcoDYZ0ocKGRPPs5JgvpLYVDIfoEVvoMpc43ICQFU,4213 +pip/_vendor/pep517/compat.py,sha256=BmdEmQQW3XQqBjgDov0EWT-q1V-ECANNzDp692gUTdg,1113 +pip/_vendor/pep517/dirtools.py,sha256=hrSzAJOGDo3tXdtCbgJ6LqoLhPVJn6JGmekz1ofLi6o,1173 +pip/_vendor/pep517/envbuild.py,sha256=D8XnGq1CZKAuIAMZQxpJQrvDwkjKRzKotHAOpr_AF1M,6283 +pip/_vendor/pep517/in_process/__init__.py,sha256=IZ3Qr3CBsGM77dePRWUxnF9FADyAi0imlDLX5MWGPz8,580 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-39.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=MW1-Z-5WuMGVy0cdY3-kgSr2rEO7bIYDlhgMuMHciEw,11182 +pip/_vendor/pep517/meta.py,sha256=ZkHYB0YHt4FDuSE5NdFuVsat3xfZ6LgW6VS6d4D6vIQ,2555 +pip/_vendor/pep517/wrappers.py,sha256=mgBTFXDKJtKluWpQ7VMZda49ZUzFGSNu5d_PYJLoor0,13629 +pip/_vendor/pkg_resources/__init__.py,sha256=zeMvnKzGEcWISjTwy6YtFKWamTFJdwBwYjBAFUoyf7A,111573 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-39.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=tzQGe-w8g7GEXb6Ozw2-v8ZHaIygADmw0LAgriYzPAc,585 +pip/_vendor/progress/__init__.py,sha256=YTntFxK5CZDfVAa1b77EbNkWljGqvyM72YKRTHaHap8,5034 +pip/_vendor/progress/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-39.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-39.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-39.pyc,, +pip/_vendor/progress/bar.py,sha256=evFQod41y2bMU60teK16uV-A5F4yVUehab8dtCiXj1E,2945 +pip/_vendor/progress/counter.py,sha256=c8AdstUGrFQvIQbvtHjjXxZx6LCflrY-a7DVM6IYTBs,1413 +pip/_vendor/progress/spinner.py,sha256=zLcx2RFinPfM6UwveJJrcJ8YABE3aLCAKqQFVD3pHow,1423 +pip/_vendor/pyparsing.py,sha256=lD3A8iEK1JYvnNDP00Cgve4vZjwEFonCvrpo7mEl3Q8,280501 +pip/_vendor/requests/__init__.py,sha256=IPdrlLH8zOpx45fFKwMSH9HT_d9wfwdjjoka0HEY9ps,5267 +pip/_vendor/requests/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-39.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-39.pyc,, +pip/_vendor/requests/__version__.py,sha256=SKjnGRNIWoxDQR1pAkRW3fen6mAXw7MruEBPlqvEjuE,455 +pip/_vendor/requests/_internal_utils.py,sha256=zDALdxFfs4pAp4CME_TTw2rGyYR2EGBpSehYHgfn8o0,1138 +pip/_vendor/requests/adapters.py,sha256=v-nXh1zlxNzGQWQicaDrnsMmus75p2c99GPOtPl-6uw,22081 +pip/_vendor/requests/api.py,sha256=IPHU2zrGr6hURdheImh9lqurXPhQlv4PFOkjik6dmSQ,6561 +pip/_vendor/requests/auth.py,sha256=xe7s91xl3ENjQgRlZP3-2KsACnXYHAiLOuHLDw6nyyQ,10512 +pip/_vendor/requests/certs.py,sha256=fFBPJjnP90gWELetFYPbzrsfZgSZopej7XhlkrnVVec,483 +pip/_vendor/requests/compat.py,sha256=xfkhI1O0M1RPT9n92GEeoalPuBOYMsdApi7TONmwWD8,2121 +pip/_vendor/requests/cookies.py,sha256=PIxSKntoUn6l2irwR-CBMgm0scK8s-6yUZzwoCVIAdo,18979 +pip/_vendor/requests/exceptions.py,sha256=-_Uvqm89mT79nPWoxlf_NF7JawnsfHcJdAeIipOiAQg,3377 +pip/_vendor/requests/help.py,sha256=HQ9KRPaFWwmEYS46TnLTyaGYXGNv-G3RQyO9yUfa7Gg,4104 +pip/_vendor/requests/hooks.py,sha256=LAWGUHI8SB52PkhFYbwyPcT6mWsjuVJeeZpM0RUTADc,791 +pip/_vendor/requests/models.py,sha256=eBTofFVVYXXqpuqkMrPzRNYKJfuICHhw5bPn6bi-lEI,35890 +pip/_vendor/requests/packages.py,sha256=ry2VlKGoCDdr8ZJyNCXxDcAF1HfENfmoylCK-_VzXh0,711 +pip/_vendor/requests/sessions.py,sha256=xn0NHgjfsCdvZoi11vUDP8zS0LPM0sVuZP_6qYNC7kw,30949 +pip/_vendor/requests/status_codes.py,sha256=ef_TQlJHa44J6_nrl_hTw6h7I-oZS8qg2MHCu9YyzYY,4311 +pip/_vendor/requests/structures.py,sha256=ssrNLrH8XELX89hk4yRQYEVeHnbopq1HAJBfgu38bi8,3110 +pip/_vendor/requests/utils.py,sha256=dZh-kGRO-A8sLHdHp_hcS_5u4syIDRRE2T-un0s4HwM,32407 +pip/_vendor/resolvelib/__init__.py,sha256=g_NlynQjt3xlCb_JRtRIrV6Y-zBYSkQMxH4NtoC4Axc,563 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-39.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-39.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-39.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-39.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-39.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=RCp_gXYFZUg2DF2iUPTTD-XSpBTia4xEuJhjbXNzQyM,162 +pip/_vendor/resolvelib/providers.py,sha256=4rEMGvu_xM5qx42oiIeMwgfwsrd1vCUZusmbfvMknWg,5762 +pip/_vendor/resolvelib/reporters.py,sha256=Yi7l5VMEKyhL20KIEglPukQHWJHkweV4e4amcJs-4yk,1401 +pip/_vendor/resolvelib/resolvers.py,sha256=nlrz0Zql6opJgYgnBoFg3FwG_Z9lGp8rAi7hooQ33E8,17698 +pip/_vendor/resolvelib/structs.py,sha256=8HTLTjfJCdDs2FBt3EqaNiFbn0oelLG9OQK9htCvBpE,4959 +pip/_vendor/six.py,sha256=MB08ff_RApHF8XMk2vSx581-xTyX6sf_pQOtz6j1BZU,35547 +pip/_vendor/tenacity/__init__.py,sha256=YfrArVagvtYH5gcjBOlOQ2u6dx2C2N4X1x0DOUBXv5Y,18774 +pip/_vendor/tenacity/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-39.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-39.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=jZcrONVfckAiLERCKTxI9DJ_Aeq4fquZj9G7Vr1_I7s,3406 +pip/_vendor/tenacity/_utils.py,sha256=J2-zhV7bDTTuye-U8jtimO7lN1x70_a23qAdKniuzSE,2012 +pip/_vendor/tenacity/after.py,sha256=mJq5ygM_NzL69Bx63RbI24IU5KgGHqmwl3AbQXiTCTc,1542 +pip/_vendor/tenacity/before.py,sha256=RmWTv09-aU_3kFVRJw6PX3dp74ZZqnRD1UZUoCWw5XY,1417 +pip/_vendor/tenacity/before_sleep.py,sha256=gSQPoPHevxpluUv0ASzd2Z4AOfq8Q8Y7XOns32cL4n8,1966 +pip/_vendor/tenacity/nap.py,sha256=5DH1ui6-d3X4ZsQCRKJhY5jaQ0NdYZ2AEqt7Svt5VFM,1426 +pip/_vendor/tenacity/retry.py,sha256=VsJQ9DcYTMr0ZeV43yhQfBDDJD1y5av52TJ0OSwvqLw,6858 +pip/_vendor/tenacity/stop.py,sha256=lVnfBu2fzvqVtsL-HH8o1m_HborN7zLnlXBWa2UzM-A,2886 +pip/_vendor/tenacity/tornadoweb.py,sha256=2wGpfDdTztK9Sk74ARv8prohTReTQzst9a1m1qo5bBs,2204 +pip/_vendor/tenacity/wait.py,sha256=t16nLHioncGDdKA6ETwTNzABC-RrZiR-7HS1pXikVsg,6882 +pip/_vendor/tomli/__init__.py,sha256=fUFJngh-LwLWqbgw4Vc7wvxnfTdrIK8Nc7wvydyxOjw,236 +pip/_vendor/tomli/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-39.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-39.pyc,, +pip/_vendor/tomli/_parser.py,sha256=946C00VAWqHjKSueGK44YSAU_Ufwg4LQmvd8yqta2dg,23118 +pip/_vendor/tomli/_re.py,sha256=tGGogP0HJnQDBSITAPldXRB5TLQeaC069FBzxVOOy5k,2764 +pip/_vendor/urllib3/__init__.py,sha256=FzLqycdKhCzSxjYOPTX50D3qf0lTCe6UgfZdwT-Li7o,2848 +pip/_vendor/urllib3/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-39.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-39.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=RQtWWhudTDETvb2BCVqih1QTpXS2Q5HSf77UJY5ditA,11148 +pip/_vendor/urllib3/_version.py,sha256=Cs83ZyfrMWqd18tvuyiZ-SW91-r7-fsCZ-S3EnE-7Vk,65 +pip/_vendor/urllib3/connection.py,sha256=ml6ucQ9HfP5eR3t_x7Qpgkke62PF92i-b_XYrIUdZeI,19293 +pip/_vendor/urllib3/connectionpool.py,sha256=itteZaSObupTC6p-6YYcI3KTQdLwgQxlS01w_hOoQqA,38198 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=POYJSeNWacJYwXQdv0If3v56lcoiHuL6MQE8pwG1Yoc,993 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-39.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=jreOmmwBW-Cio0m7I_OjmP028nqgrGuo_oB2f7Gir3s,18168 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=0KKeznz3h0z-SBDbCtGorDfgCgiZ30VQOqkX5ZgaPBY,14304 +pip/_vendor/urllib3/contrib/appengine.py,sha256=nlIR6iWZ0A1cV9X4dYwdx7H1F1tqGE7ai9QCfJ7ntFo,11348 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=JCCrvNQpXdL3eb_D4AoviNnl71nYhSX2r-hG9N-dPf4,4668 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=093d4DdfHcz0h8KcEg-D9fQEUtXaVLENmOkzOqNQ5eU,17402 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=ozB5tLGYiVgN2NLx9vvzVxjdtY9nNj9mBxGsCYTwEGI,35356 +pip/_vendor/urllib3/contrib/socks.py,sha256=RqYih4HGeICnKzmYnG3MMo2xMlCdwb1bAdEuo6zCA_Y,7313 +pip/_vendor/urllib3/exceptions.py,sha256=QDT9xy1fNxui5aS7dMabeb1gokQOQ-zOT7XiDp-O5Qo,8540 +pip/_vendor/urllib3/fields.py,sha256=0KSfpuXxzXUMLkI2npM9siWOqCJO1H4wCiJN6neVmlA,8853 +pip/_vendor/urllib3/filepost.py,sha256=BVkEES0YAO9tFwXGBj1mD9yO92pRwk4pX5Q6cO5IRb8,2538 +pip/_vendor/urllib3/packages/__init__.py,sha256=FsOIVHqBFBlT3XxZnaD5y2yq0mvtVwmY4kut3GEfcBI,113 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-39.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-39.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=DREmQjGcs2LoVH_Q3hrggClhTNdcI5Y3GJglsuihjAM,1468 +pip/_vendor/urllib3/packages/six.py,sha256=dUImuFN7dZON9oeQQqHjXdwH3n2Oxr9148Ns4K4Y2xg,35743 +pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=d-Tyw37qbvVdcjcVF4WLYiM7AXaOpIg386C2P2uB5Ks,951 +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-39.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=WXs1yNtk9PsYVmeTJQAcqeAm81zbzeabEWWf-xRJSAo,5839 +pip/_vendor/urllib3/poolmanager.py,sha256=blNTYqVqFg9zUGncVtyXk1HQsTxKO1Cy9hfGVLAGvhM,20299 +pip/_vendor/urllib3/request.py,sha256=Fe4bQCUhum8qh3t1dihpSsQwdyfd5nB44cNX8566DmM,6155 +pip/_vendor/urllib3/response.py,sha256=LjfUJBUhwPrJTrGgNI3WoySUizNEPd1Xiv71YxE2J7Y,29024 +pip/_vendor/urllib3/util/__init__.py,sha256=UV_J7p9b29cJXXQ6wTvBZppJDLUeKQ6mcv0v1ptl13c,1204 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-39.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-39.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=hoiT3Z-vROOSOB-4JrFyRKzF67xYt-ZTFMTiYj1yd6Q,5070 +pip/_vendor/urllib3/util/proxy.py,sha256=xMGYpCWlY1Obf1nod_fhOG3rk3NTUM2q_BJmj6B_NmU,1660 +pip/_vendor/urllib3/util/queue.py,sha256=mY2d0cfoJG51UEKZwk_sJMwYraofNfQWq7Larj9xh_o,520 +pip/_vendor/urllib3/util/request.py,sha256=O-NJTFysuN_wgY33pne8xA1P35qv3R7uh67ER9zwqYM,4266 +pip/_vendor/urllib3/util/response.py,sha256=685vBStgxTo8u3KoOilR6Kuh7IGPZr7TmzrP9awEtqU,3617 +pip/_vendor/urllib3/util/retry.py,sha256=6xS4OYGWN2gz8kX34RH6ly7Uc6YcfCb2Z3V0QMdHpys,21993 +pip/_vendor/urllib3/util/ssl_.py,sha256=WILvlnNl3FxrO1-AuSJzGBuFTLCNIfkzRbhNvIuxseU,17672 +pip/_vendor/urllib3/util/ssltransport.py,sha256=r8zXGD19jRdpYPlAt9wR-mBg9aVRIB3UkV1GiT5uENQ,7152 +pip/_vendor/urllib3/util/timeout.py,sha256=Ym2WjTspeYp4fzcCYGTQ5aSU1neVSMHXBAgDp1rcETw,10271 +pip/_vendor/urllib3/util/url.py,sha256=3MdcqSYaGz4A2FIwYwe4KclwnrTn6ZdEG1-sUoCniUo,14479 +pip/_vendor/urllib3/util/wait.py,sha256=qk2qJQNb3FjhOm9lKJtpByhnsLWRVapWdhW_NLr7Eog,5557 +pip/_vendor/vendor.txt,sha256=gryMWlplkGEQkjoFzG1xYAfARSAghGWVWX-fGObCxOw,386 +pip/_vendor/webencodings/__init__.py,sha256=kG5cBDbIrAtrrdU-h1iSPVYq10ayTFldU1CTRcb1ym4,10921 +pip/_vendor/webencodings/__pycache__/__init__.cpython-39.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-39.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-39.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-39.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-39.pyc,, +pip/_vendor/webencodings/labels.py,sha256=e9gPVTA1XNYalJMVVX7lXvb52Kurc4UdnXFJDPcBXFE,9210 +pip/_vendor/webencodings/mklabels.py,sha256=tyhoDDc-TC6kjJY25Qn5TlsyMs2_IyPf_rfh4L6nSrg,1364 +pip/_vendor/webencodings/tests.py,sha256=7J6TdufKEml8sQSWcYEsl-e73QXtPmsIHF6pPT0sq08,6716 +pip/_vendor/webencodings/x_user_defined.py,sha256=CMn5bx2ccJ4y3Bsqf3xC24bYO4ONC3ZY_lv5vrqhKAY,4632 +pip/py.typed,sha256=9_aEgAx4lyfhJKT_8nv7mk-FpX3Mdtn8cV5Fw11xicg,290 diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/REQUESTED b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/WHEEL b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/WHEEL new file mode 100644 index 0000000..385faab --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.36.2) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/entry_points.txt b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/entry_points.txt new file mode 100644 index 0000000..d48bd8a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.8 = pip._internal.cli.main:main + diff --git a/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/top_level.txt b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip-21.2.3.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/MidasHMM/lib/python3.9/site-packages/pip/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/__init__.py new file mode 100644 index 0000000..261ead0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "21.2.3" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/__main__.py b/MidasHMM/lib/python3.9/site-packages/pip/__main__.py new file mode 100644 index 0000000..b759dfb --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/__main__.py @@ -0,0 +1,31 @@ +import os +import sys +import warnings + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + # Work around the error reported in #9540, pending a proper fix. + # Note: It is essential the warning filter is set *before* importing + # pip, as the deprecation happens at import time, not runtime. + warnings.filterwarnings( + "ignore", category=DeprecationWarning, module=".*packaging\\.version" + ) + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c38d6da75ed38fb566a0cb8b61e3d01776ca0e0 GIT binary patch literal 623 zcmYe~<>g{vU|^WXFgv}7k%8ech=Yt-7#J8F7#J9ejTjghQW#Pga~N_NqZo6UqL>&N zQkbHcQ`l3PQW;ZOBpD@=r$#hG;AhSR(9_C8D(vr-aV!hP7lA_9j{LH+P;vzN% z1_n*0B2dVK*((`}I2afhe);HUjTQ zl8pR3V?9g#;>?m%-GapA?8NlcVzB$-<1_OzOXB183My~0g{vU|^WXFgyJ$3j@Pr5C<8vGB7YWFfcF_&tPC+NMT4}%wdRv(2P-xU_Mh6 zQz~N?a|(kbLkd$W!vdCt3~5Yd3`JHT(FLq23=0_<8B*C&n6jCQQc@YRm=~}^Nsfh# z3mK!B!Rk0u7*d%RGBGlwa-}e5GZjrqWy<1CVM*mlVNGG{Wo87~$)3ZT%NNDZ$dJmo zKp>UB8EkS2V=#jz$4ii#{cbVb;)svWP0Y-TkH5v1nVy$llv*XCr&W-coSm4SnU@}; zSC(2-oSC1e$#jb&Ik6-)J-?{(7F%w9N@-52CgUv@kX}u}TTJ=Ix0s77i*Iq1Cl=*p z=A{?kVkt;0$+*Rqo?4Pzo^p%1Aiv-icYHj=n?MQ}rfTv7{)Qj-%)GV}AoAvWC-E66O+i_gp}NiE7t%+X8E z$E)RvC5BKcD77G8-#0TQ zvDm}cS3f5+Nxz`7BqKl1SkF?wII|>G7wY`L9U~~}r5G3( fI2bt?IoQM)d004DMHu;*I9OO1+5WRJ^DqGbk?5*! literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..33224a1 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__init__.py @@ -0,0 +1,19 @@ +from typing import List, Optional + +import pip._internal.utils.inject_securetransport # noqa +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +def main(args: (Optional[List[str]]) = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4394bded351e1b17560bbf69ef67939822c3068 GIT binary patch literal 744 zcmYe~<>g{vU|^WXFgrbfiGkrUh=Yt-7#J8F7#J9ey%-o6QW#Pga~N_NqZo6UqL>&# ze5M@cD3%n46y_Y(T(&4SMut?j1?&qM7#UL7Q<+j3Q#m9VBpFgUQ&{FOrLd;3wXjBU zr7#6EXmY#+*`mpGi^V6ixa1axe?duReqLgZpC;oimiV0fbdXeHQF`$$wxZOM(xSX% zMvw+5W@2Dq0AXj4%S1pfV@zQJxvZ9vk)ejMhM}1;m_d`dYFdPO*+cacZhUMoCFQv6a4ldS*#R zX_8)Yey)B&WkI5TL1uw|W^r+8YO%h#iKT@e*q|bipEMb7am1GwB^DH<7HKlwk}t?C z(2LK^D@iTNOU%(LEy>I&)=SMRDXJ{U&&(?+E@Ee3V9;bLVr5`p0JB#z6mc>zF#HPB z&&bbB)lVb zBBO|zfq~(c7B=^1=4GWOm&6yRCYKhamJ}uC6&K_emE2-3$SjBw#-gDJWYsMmup@Hv z)6+Ba(r+;rmlWM%&de(TTMza#5&=rZw>WHa^HWN5Qtd$DTFk+~z#zcH!N|kH!3+RY C%FF2h literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/build_env.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/build_env.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe6a8b7784e0887e657272c744d8982c0a706f58 GIT binary patch literal 9083 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 MFp5a>)ic-u06|?s*Z=?k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/cache.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/cache.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2345e1ed98afae1db06dd4870f5eb686ee96b1e7 GIT binary patch literal 7834 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/configuration.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/configuration.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00efa4b342efd28e30317239ab43c14ffb2f389f GIT binary patch literal 10686 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Π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 Pnv-e=@^LXpg8(xCK(CYd literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/pyproject.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/pyproject.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1099670c9f72b933a5480453cb47e057e5d7ffbd GIT binary patch literal 3447 zcmYe~<>g{vU|^WXFgx8(hJoQRh=Yt-7#J8F7#J9es~8v^E>jc} zBZ$qM!<@?!#gfY!#hS|&#Re8*$zjjsh~faVS#vmZxuUpoxudwje6}2(T;3>NMursj z6pj{#D83ZV6s{JADE?HY6z+6}6rM$l%}h}ODZD9sEeuhDDU87kn*1+8uJY4lyv3E5 zn46kXQd*Fcs>ytd*)gy37K=}2amg(X|ALat{Jg{*O~zZSCHc8InVL+uggo=g5_2+B zf>H}hGmBDlQ}ar0aU*dw8E*-C<`tJD=Hw)Tbh{Q6pdX)^SCU$kmzbkpP+3rvpOu%tfFibc+R~>=tuk4k-MY^OLf` z&V>*l18?!8nZ*qX6E=`F%v_8D|B6Hz7#L6j4;1pCzypUo$nPZ#S&R#qY8X-&7cvDi zXfpX#@gaNwig8WmTTJ=Iw^#}iOEPY;WaVe(X)@lDEX@OXKQ$%3IKQ+gIW;~dvnVyW zB)_N<;y94WMPL^S=O$*S#>0(_2N@#_awRAl8JLQs7#J9C2|1N!=A;By7MG;vx}=sQ zX66)YvfSb*f+VowTkJ`R$=RuSDYsaYGg6bYZ}C9+VAGO8{sDOzgh6(Kf)4DzeT<-# z1@<4~LdIGas9%{DGS;%zuoT6WFxN1GQd=)mzf>(-3CjZ38n%Uuwd~;xDaOA2!>M-59+OATvrOASK`b17p{T@6EV zT?u;%YcpdLV+va>L!M0yN70rP_8N{dhN3M{RqJXPir1B}r*JIbsNqOqmtM$qpoXQE0nBDBKI6sE#8|^nd?kfBn4yLvg}IcW=oKiBr!%E+r|`^Sss)+DT*_Gd z4Wu%Kx0W-7uZE+HaROtJSP6R#XBI~da|(ZoKra)>o*Ir6K1qgJt`g1~u4cvwjKx-P zHG*(8TrLc;4z=7>JSAK;+|7)P4B-rUIxGw&+!Gipt03V4*Cn)oqlSASBTR23Lmra> z!vw}cyBdxKY$@yu8EbjKEa7y9g-o@)=?t}eH9R0+Okgb9kiuQd1My2OUkOhQR}D`M zUkz_FOE80`NTL%n1A|X~Vv0gZMydil9qECRrb1d~PO2Ukmx6+VLO^0sVs2_lYEiKj zm=6*wEl!OuNG&imG*{47@JK8M8&O)ETBHC_k3W$JE&`8TKf*S%40|kXtP=T&clv50je3d#8?sS2P1K}R9KBqOz` zJhM1eAyENb55eu#fU`g@Kyq)fLRwLNE?SuBps0rV6c)+QVgpqXijfGnf=e2O#G+IM zaP^UslbWKCm{yWnq)?n%0`fMBO(3_G7JxmM1S-oEQuE3(i}Le8l_QEmctHvFc(FoB zzCva$C?FwvA>|yzXBtrF>Vkqu6V=fm`-)OQ^=nxw$P94ifYdt*Mfv$9h~%dUw!VtB zv?NW}LX+_pM`~VjeoAIux?dF!*r~e3;BvRh(7cy^72a*G7`%`5eG|sA-{MbCPO_?l|-`9uzXakkf;DQO95&YDAQEeDrDxN zMSPVI*!GhA{G4JtTN4943q6BdtmPT0sX0}k7%MFROX-0Pi_c9hNwkWOhor;!cul4v zP%ETJk%57s%D);^wI!yf)+%Hqg6xN9U__y#P?C{Yg7ANGer`cdr9ydTNd`3REUXl& zi&7Jd^Yd!KMpwmVf`SQToI2PE&`?)bC`nApNmWQHEdhrliliPiX%?$1lxJinXMiFh zH!&|I5meEFf&dijVEvj*x7eYszQqQyx5^NgS(%VXOH=^0E=Hm-0!7T=GNq37kBe59K>bS)T;)0dkVobZmUQhth3CRHQkPL8(4_vOrm!#$v zvCV z^q+~1i;;TkeQcW1ZtHRff`grte{BY zF32pwN%p4pXtbD8h Dke$^V literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efe6cf726da2a658c79a993510b8aeca4811c123 GIT binary patch literal 4331 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce4922a31d5d288070a9cf8037c145328d4f5e3e GIT binary patch literal 8269 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 VoE%&niX4I*tQ-m)${f}l0ss None + self.path = path + self.setup = False + self.bin_dir = get_paths( + 'nt' if os.name == 'nt' else 'posix_prefix', + vars={'base': path, 'platbase': path} + )['scripts'] + self.lib_dirs = get_prefixed_libs(path) + + +@contextlib.contextmanager +def _create_standalone_pip() -> Iterator[str]: + """Create a "standalone pip" zip file. + + The zip file's content is identical to the currently-running pip. + It will be used to install requirements into the build environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + # Return the current instance if `source` is not a directory. We can't build + # a zip from this, and it likely means the instance is already standalone. + if not source.is_dir(): + yield str(source) + return + + with TempDirectory(kind="standalone-pip") as tmp_dir: + pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip") + kwargs = {} + if sys.version_info >= (3, 8): + kwargs["strict_timestamps"] = False + with zipfile.ZipFile(pip_zip, "w", **kwargs) as zf: + for child in source.rglob("*"): + zf.write(child, child.relative_to(source.parent).as_posix()) + yield os.path.join(pip_zip, "pip") + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps + """ + + def __init__(self): + # type: () -> None + temp_dir = TempDirectory( + kind=tempdir_kinds.BUILD_ENV, globally_managed=True + ) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ('normal', 'overlay') + ) + + self._bin_dirs = [] # type: List[str] + self._lib_dirs = [] # type: List[str] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = { + os.path.normcase(site) for site in (get_purelib(), get_platlib()) + } + self._site_dir = os.path.join(temp_dir.path, 'site') + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open(os.path.join(self._site_dir, 'sitecustomize.py'), 'w') as fp: + fp.write(textwrap.dedent( + ''' + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + ''' + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs)) + + def __enter__(self): + # type: () -> None + self._save_env = { + name: os.environ.get(name, None) + for name in ('PATH', 'PYTHONNOUSERSITE', 'PYTHONPATH') + } + + path = self._bin_dirs[:] + old_path = self._save_env['PATH'] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update({ + 'PATH': os.pathsep.join(path), + 'PYTHONNOUSERSITE': '1', + 'PYTHONPATH': os.pathsep.join(pythonpath), + }) + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements(self, reqs): + # type: (Iterable[str]) -> Tuple[Set[Tuple[str, str]], Set[str]] + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = get_environment(self._lib_dirs) + for req_str in reqs: + req = Requirement(req_str) + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if dist.version not in req.specifier: + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + with contextlib.ExitStack() as ctx: + # TODO: Remove this block when dropping 3.6 support. Python 3.6 + # lacks importlib.resources and pep517 has issues loading files in + # a zip, so we fallback to the "old" method by adding the current + # pip directory to the child process's sys.path. + if sys.version_info < (3, 7): + pip_runnable = os.path.dirname(pip_location) + else: + pip_runnable = ctx.enter_context(_create_standalone_pip()) + self._install_requirements( + pip_runnable, + finder, + requirements, + prefix, + message, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + message: str, + ) -> None: + args = [ + sys.executable, pip_runnable, 'install', + '--ignore-installed', '--no-user', '--prefix', prefix.path, + '--no-warn-script-location', + ] # type: List[str] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append('-v') + for format_control in ('no_binary', 'only_binary'): + formats = getattr(finder.format_control, format_control) + args.extend(('--' + format_control.replace('_', '-'), + ','.join(sorted(formats or {':none:'})))) + + index_urls = finder.index_urls + if index_urls: + args.extend(['-i', index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(['--extra-index-url', extra_index]) + else: + args.append('--no-index') + for link in finder.find_links: + args.extend(['--find-links', link]) + + for host in finder.trusted_hosts: + args.extend(['--trusted-host', host]) + if finder.allow_all_prereleases: + args.append('--pre') + if finder.prefer_binary: + args.append('--prefer-binary') + args.append('--') + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(message) as spinner: + call_subprocess(args, spinner=spinner, extra_environ=extra_environ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment + """ + + def __init__(self): + # type: () -> None + pass + + def __enter__(self): + # type: () -> None + pass + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + pass + + def cleanup(self): + # type: () -> None + pass + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + raise NotImplementedError() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cache.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..a146fae --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cache.py @@ -0,0 +1,287 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from typing import Any, Dict, List, Optional, Set + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +def _hash_dict(d): + # type: (Dict[str, str]) -> str + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + + :param cache_dir: The root of the cache. + :param format_control: An object of FormatControl class to limit + binaries being read from the cache. + :param allowed_formats: which formats of files the cache should store. + ('binary' and 'source' are the only allowed values) + """ + + def __init__(self, cache_dir, format_control, allowed_formats): + # type: (str, FormatControl, Set[str]) -> None + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + self.format_control = format_control + self.allowed_formats = allowed_formats + + _valid_formats = {"source", "binary"} + assert self.allowed_formats.union(_valid_formats) == _valid_formats + + def _get_cache_path_parts(self, link): + # type: (Link) -> List[str] + """Get parts of part that must be os.path.joined with cache_dir + """ + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link, canonical_package_name): + # type: (Link, str) -> List[Any] + can_not_cache = ( + not self.cache_dir or + not canonical_package_name or + not link + ) + if can_not_cache: + return [] + + formats = self.format_control.get_allowed_formats( + canonical_package_name + ) + if not self.allowed_formats.intersection(formats): + return [] + + candidates = [] + path = self.get_path_for_link(link) + if os.path.isdir(path): + for candidate in os.listdir(path): + candidates.append((candidate, path)) + return candidates + + def get_path_for_link(self, link): + # type: (Link) -> str + """Return a directory to store cached items in for link. + """ + raise NotImplementedError() + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs. + """ + + def __init__(self, cache_dir, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {"binary"}) + + def get_path_for_link(self, link): + # type: (Link) -> str + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates( + link, canonical_package_name + ): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, link, package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory + """ + + def __init__(self, format_control): + # type: (FormatControl) -> None + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path, format_control) + + +class CacheEntry: + def __init__( + self, + link, # type: Link + persistent, # type: bool + ): + self.link = link + self.persistent = persistent + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {'binary'}) + self._wheel_cache = SimpleWheelCache(cache_dir, format_control) + self._ephem_cache = EphemWheelCache(format_control) + + def get_path_for_link(self, link): + # type: (Link) -> str + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link): + # type: (Link) -> str + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Optional[CacheEntry] + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..5f656e0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98d6cddcecd53e0844518004a561f15c9b4a0a35 GIT binary patch literal 264 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 I;}6q60NJ4EasU7T literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c67b42b200d95ceed17bf0e979619162d149d16 GIT binary patch literal 1279 zcmYe~<>g{vU|^WXFgsnCnStRkh=Yt-7#J8F7#J9eofsGxQW#Pga~N_NqZo6UqL>&# ze5M@cT$U)7T-GSoT(&4SMut?j6y_9`6xLp*D0X*-6t)!h7KRk|W~L~P6pmm9P0p7f z(>0lHak^GymIRk1CTHK`OU}{PRF+iM6h=t~ka!Af3R??HGh-B6Dtju2Btt4k3i}+U6pj?m7M3W^ zb_N!PD6U`zO|DzQ&iT2yiFqk7cVWb$*~O567@6k zb5r%x%QH(#453s|YC*ofZ)Qqjv4^j(eokhRenDkPMt+{Lo~3?qW=X1UL1J=tVtQ(^ zenDn|etc$LNorAEVvc@tPNse`#Pcwx=oM5J@h~tjaDY6>2J$r{7b6>El?;|Z(u4U3 zBZxq{L2+0d!oa{#!;r;L#O1}%#0U-|hAOifhAhT@F;JQdV_;+mXGmdSVPIisW@co_ z6EI{bHZfpe1j9&(EK?0bJVPEw3Ya!v00%9zUx=F~QxPu%149uXh~Nhi!f--_fq~%` z4{{)bloo@$#=ykI#Ky?P$ib+_RHcB;U&z`tnQjR{qba_iD8DQ-CAFvsl+Thukp>DN z5C*Y9X~G#4Y+_JP7lS&=ewxe(N8jR21w{oc>@}H+1VA1D=`TX{ zN|87N1A_#}aBxmw))tcy4q7#Khria~MD!6?Ma z#3;fA7WLEQyu}3#!ko+`aAF7BcZ;p0vLG`ry$Ea@*m6*cgV+l)56L2MaDXhj#bE>S ShaD&{7K1bhFp4noFarQcpeMQj literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f88996c9fdda882dfa61be36757aba2a44b2553 GIT binary patch literal 1354 zcmYe~<>g{vU|^WXFgyJnCj-M{5C<8vFfcGUFfcF_&tPC+NMVR#NMTH2%3+LR1k+4W zOkkQhiWy9^M6skWrZDHQ=CVbx<+4YyGlJB!Sz2{JOIGA$5F6<){~C6dCE%AU%WDk{k!$&f0R!a0X2g)4=- zg*8e%g(;XplebDCpeQppv8YlZv7jI)GdZy&Ge1uuHLs+ovLHV*uSAdQCCFEPnoPG? zd@_qmZgKb*fRrTWXfod7Nh~eNPtMOR$Vn|p)nvTITaZ{(oEo2;pPQSQm!ipdi!Zq- zHL(O)gd-rcz_q9-zetnu7I#W&K~XBiN|5=9Md`)2*osn1N{jN689~-UF&hH|11Pke zLE-s?fq|ihA%&rop-8NRAqy0q46RI(47Cg;ObeJ7GB7ffurxC;GE@nau+}g%GsZC0 zGS)JMGvxWPFqE)WHZd~PGBYw%nUyePu`l3AVX9%C%`lf~AtNILM5Kf>iwnYAz@5Sf zVudqAGNdrnGS@NZaY1MU1_OpFp%R`2yd^wYd@0NenHU+u8S;!+7)p4u_$yB^GSsp# zGE_;F2rLjxVX0w($b(H`sbc|~!cxZqGNnYQhB1Y;hN+Apg{_yVmbHd;fp87eLdIYQ zO?JPRpg^c%cMS^i53*9Y#ZaZ{nVy$ll$n>VkO~Sz1=V7O@{H6xh2qqb5|C(4esW?? zY898RZf0?QPGU(aC=xi}Y>`{c#g)akSQ3lU%ZfM{7#MDeW#$!^B z++u@ReT%a=wFJs!^Kp)M^zpgH3XX4(3XsvaSW{AyO4Ex#ae9j-H!(9$ldXsoWC=%d zZc2P!Vs7d!FbkX-m{Ti~Z!xCcVuz-wl?+8n3=9mv!t^upb5r%x%QH(#453s|YC*of zZ)Qqjv4^j(eokhRenDkPMt+{Lo~3?qW=X1UL1J=tVtQ(^enDn|etc$LNorAEVvc@t zPNqJ{9eM?oMKTNw47#9HrT|KMj2w)7%p6Q?OiYXdjC_njjC_m=EKH0-i~>wbi~>wx z)tZccni99zG<=ip*+)J6%T zN|%;o<`hHH24{L|i4QnA+~SA_M@)Qtkrc@3%*7=|x0o~YO28oiju9k68Ki{6CO1E& dG$+*#l!S{V7#J8>m^c_AP=JYt5ek{Oau5Ij literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bd6359d61514cd55672a8795aabd7df4a1d6bc3 GIT binary patch literal 2151 zcmYe~<>g{vU|^WXFgv}Mi-F-Wh=Yt-85kHG7#J9emoYFfq%cG=q%fv1^Xe7{89X1Hb;&?u3(g4u27T^BSQ*j3RgN)lyE9%3ilkw6rL2$7M3WHRF+gxNrqI` zR8a^kjY*Org?A293SSCW3rmz(3R5tHCV!Q!qe5|JUV2WdLP1Vqa;idFevv|QeqM1& zQE75XW?s5NVqS_uYDGalNR>iKMyf(?VrHH~L1IyHY7y5Rz|O$H;0%i090mr45>VVRl`u9lq%fB-H8Z5J^s?46)G#byUdX`6 zP{Pv8P{R<?s^A3?KY*g%8IP9Yi^AF*z?*wSAP=?patu~IQiwT!h) zHH;|?vsqFYYnZYaW;4uXp2$?l63n2BwCgUyk;?msQ#G*<~=37j921UXQ z3=Fq;pze*&%uCB($xtNCz`*b;RzD*@H&s8qJhP<45K0B57Ub*uW~L+-d-(e5=VT`7 z7gUyHL8!6FfcH%F|qxxQo~FzdNw)v$%#3|c6ta+w-~uJ`HMgSQN+f;z)-{u z@`z+gW^rOtPAbIa;)2wo;?$J*#G>@#B2Y1MiyfLii$J#B63k7^PK5@3e0ouSX~8Yt z^whl6qQo31R{#`6kl2BWuz-Tmt8nW``)7O>VZW-)O$|#8dm5V4zQqNO8c3p003{mc;>zM%Y{exh`K2YdSj&qtOHyw!FrQ_#z{aoAg0$Vk@aE$jnPGVgiYPN|q?Wg3JOvNdC!7%+X8E$%JGU2@G*P za6lFz^588oG&PV)q8KTp&`e3KNKOT3nPPC*-9nQtEy>I&*2~Q-P6lURNFHa8k5A0W ziI0cGCUbE~Q4uIOkb(#vPPaI0a`RJ4b5iX<$)#9~fq{XAnS+soQGkhuQGii^k%v(L Hl*{A+SIAV7 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/parser.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/parser.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f623c1e8ea1ba753bb5854d11b42fe5557c594d3 GIT binary patch literal 9935 zcmYe~<>g{vU|^WXFgx8tn}Ojmh=Yt-7#J8F7#J9eFEKDMq%cG=q%fv1U=U85fA9iZ5i0l5l58;Yi_Z zVMyUjWy+FlW{#3_XGq~n;cj6_;ZBumW{#3}XGq~m;ca0^;Z0@Al4)j+l67ZD;Y;Cf zVMyUmm2GB@l1pI?$P>_F+Cetlm=ls01%=FTtM35!7giyGyMMe2VnoPGuic(V&lS|?gOG`51(~9zQ z<4cQjZgCcu6qV#B<>%)lgPenm*`S=_Wef}qsSHt!DGZ?Kh+BQ#_{ z6f*+@11J&mgA%b7C=oN(Fr_frFr+ZoFr~2AFqAMXU|h(M!Yav-!Y08`!<52q!%)K1 z%#g)g!u@;vWq!!)ch>y?A%PfhH2YIkKH7BizkAZ=q2;_s6jJG)B8Zu~1(^l<@tJugsYQ8-Ir_;tnfl<6Ez&EfERteiU=Rg`83!m7nK&3Z7)2PXWU$1Z z9?ZEbnQpN`@==ih0|P@c$loB%APi!IqQV(uB&f)#VOYRW!?=(!m|-O&D3giBL!vnz zVnTdzNl|8Ada))`ku=EjiXZ|M_(fns9u%aaSaryNYyeruz*wb;&AC{0{bE(HsjjvA z#iXO4$x;Ne?G}4(Sz=LIZVA{^#i<1lPl3`B$U`6u%7GvZ_EZl814BAPElUk!7DJI# z4a)*X5G#dIl3^huBSQ^i7E_S{RFnxOTEbkz(#)8`l+9A)QNyx;C55Smc_9->^#ay~ z3`I>fj9F|c%%zOQab65fAoJJ@azJ7WI2JP0vVu)xTEJPu3gRzh1lg0qvVg0G1r)5B ztW_Vl6rdmooG}y<6_WFFa}#xoQwtJ{5=&B36ml|)OBC|cK)DK3{y{@sAu%sSAvd)o zu`IEuSdR;Cj1@>*E>y9Vfbhy_ zItuE#x{#1p*F-lD8qiiSD?#}@H?c$k;u>_-`2{7#sRdRF3Q%9<7r|A4^IMTH0|SHK zEe1{QTio$rcY)GW@h!H*f`Zh%lv`Z!AQwW!m~&F|Zn0(N6{i-J+~O`t%uX$iFH6iR zO})jEl3HAHiyayWw^(!X%TtSPu|d3WizO>RGf$HZDQ&8Q5~v0!S+al}SY!y|gVQRQ z043NWWd;TY5TjTElzO;WnAjKv7(tkak%x(ck&jV;QG}^V3tOVal{;>+XQU>kWagzq zQYSdwgA8Y2U;wc}7@Rsq7#J987*iOtnTmKo6<-Zw3bQzFtRXKDPi*gsuoSATdbwUiRr1B?gkYT z>Qw`$+rWBTijJ1q4j0>0- zGSo8GFf3pxVO_umjtJI;Otp+POtTqM*lHMOGo-N0WdW%SW=LTVhEtjFXB&T(MJ z!g8Ar$X8&8g9&hA;Dx##Vp9aj;o!{1!~$}vA|9tgbby)>pcDuy=s>9tk|IFa3|dlv z8%Ur81`;b)VqjnZHyjyLm|8e$7#A?4FfU|uVQ6NoWlmvUz*xf!u3lLDP}*6bk_Kc1 zsPHWYg=;!P4MQwXEn^2m4Wl^2M5aQPU z^-^+vZh>6_0|UcnkUOhPuz3_YpXu4;TQ6x-<`v=_NDFff1$o8p3;%#tD#5RV0t z`TRh3f-JtpnU`7~4{}K{*lk5YAQ_NDz$q;r6yPAQF)-rFe#oxSWGYex=~n|;B?xNF zd~{ijU9DPbtj-v3cU-3riDopfc?7@hSPq@$p5V@CUcNZgJ!nlz>zJEjCE$ ze2clbq^L**WHP84DFT(bMWCKpkvB-p7es*a#VuZF`!G2*Cnr80;vsNa0u`l2U|;bv zFfa&#d zYD$o7u8u-tPELM#W?nkDFfYkS%~dGLS18WNFIOlnP)N=%DoRZ*$*BZc3#ubPt$lD~ zDKjq}YN=yRalQhi)20CGv?+i(Z3?ADISM6}1+X4vG1&Mb1@!hXsQd+GVo;11F9LN- z7;2en7_t~r7)lw7d`cKW>=LGCreZm8(~lvGVF5EpEQlJv4G0t zELKp(Si;`Suz&+pLf10aFcr8EcuqeC}qZ;+Axf z{Y)+lu_CoBHOvcmYFJ8mL5rpmGXepB94$M!2DY1Tvv0AC!~WQY%VQ^HQL#rCZEJsl~S#Gtt9^ zA4y+)VouHkc$hGQvIieil@gXPLDS@?$%B>~ZZT)(l|ZUDP?osGjTG}mMIh&K6cptb zq!yJ_7J-VzB5tXLjh8>7As_y6eHDil?urjsma-y zdFh}^4qWvlBM&_)q-Ex$7K1xJsd;6YMfrK4QL4log|ft=%*3Re)M7W#cxPsDeokUZ zYKosGD>x(FVgWT&ifTa70UCuuP3@qv0ahk}WQ#$Cdktd^Lp%ehdT9o+z*SqZ6sWQ) zVQyx~VyR)yWT;^Ql^2k)wIWcfQYr;rL76IRGiPA)AfN=;EnDFuy%DL?`Q zI*M$i@DfzSXtLen2FE$10t8n$w*(-$D-1M{0Ulny#ad95nOAa)xwx|U7E5YHW(h1X zL6vAxJ;=WxPv2rrtw=^M5_lozLo3?VpkM_B0|O%yxZdPrtiskXL(x=J3~K)%7muJ! z2?|h9ZY`byYX5*+JSj}+%(aXuptd7J4W!QjN;-_7>coX1)+L6imbsRthNal9gn0o= z3M*u|tWc$fc>!w*TMGL^rWmGL)>^h2)*8k#h9Z?3rW#gBh6QXjY&9%t;J`0b0ht@C zP|FIDb76=Tieai{t7UyGL3)GNK z%`GUY)Vsx~2Odn*WQXL-I#9l31>19rEhj%cJ+-s03`&`3GNnYXxMTv&d)#SRsLq(*SyfC+F2DZ~@-_a;!dfyxjD zCLU%sMyCI4%tE04F(VTr(?1p#CME&U05&rRqX1)-F&W{i$y5Ytnn6lFQ2c;O1P}%# zWKebhWyWGACI;|)LI+b8(?Z4$rg-KOmS%=prVb|1c&-b>1jg7sF-)Bdwagt%3)oT^ zI~c?n7BY4+b}*(el`<6B70PrlX0fL*l`%yR+jXU%4sz*wYI!dt@C z%-Ao%$bc{@g^7iMg`t_5ks(jOkfC^=0oX*435*O#>iJ+cqp5#~qMpBoxrDD7WEWoz za|&BF!vw~n3t-o=BfBnd9oSVIU|0FoFfR~T$WY7N&d|=-&XmRsu4OrDm?6Urc}-xo z++ekbIvBGAL18n2u{aA9IyFoSgh1g1DpNZc7YHw8sAcJ3Tp&`z0xA}2nL8M>L?v_QOrv4f$8 zc_DKxa}9G1BghsThC-PdPzOn@lc7YSgDH!-gQ1zJhOvXehG7C@;e!+=P<(^iZ@g8D zzqItn0L^ufj}KiCz z<`tKuCZ_1!VolC3h0d5&Eg{Wns2Pv|Nvl*y%>)erD%?ABIGOrV(^5k@w~DrF*~3?(^%IzphT1>E4=1MO%R3zaY~0JVw0qp($c zH4IrSpvr}jA)F!4goUAmtulm>p_Y-6p-QHPVF7yyM+s*QV>2VD0}gI@GS)KIG3Ifl zfN28;1JKk8R}DiJ^8)UL44~1Y8ioZt3mIG(Vx2&RUlwl)V<}^C1GK>9t6|RKUC3C= zQo>)uQo`BHRFnrT!dYvW7YNp{g1Y*kCUF+84MSlb*sV<9@nWW`ZhuIV08~_!F<^m=R76K6F|8!E2wXHI=9Oe7g4zwpMH#3}gcN761setV#l@LPIjK4d=z~rg znhGhPQWK;nC9|lcQlUJ*C|l1@Q|OjhK~a8kYH=|v!$4AAF*rvQ%><sSQLTBbU=yc7E5w|LFFw0a4RJ-CkHyLPz=s2MX4a8z*%4+h}8(n z@{p;+Tg<6NMc`BmopOd|-J<0nh2XpoCP1n5mQZ?X37S)R7#SFfWkAgkW;P}sW>ABi zk5P>Ylmz)0LCF+6X|IYU;bEGk$y8(yvK8F#0cBl~u^i81mpR!Ly-4Y<(J6hRwwC;|_`ff{Dun7YLRs+hoCNk|lf z#~45ba1qFRMWB)!T-+6b>;e}GkW{b^6f7Wz;2ydI_19;CN)S+Fa4@p4GyP#@8_D zMaaVgMWBv1IFa9yKvf1>u~Mv;n^~L;9)g9G`<&^iB|hL@03_f+D*)g@ObWgv0>f1p(;* literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e0d0235f9a8922c7dd7e09c6db71a4264d51c3c GIT binary patch literal 7611 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

U9ae?K*N}+79T2MCu5-_(oV6$CC zGeNd%;Is)+?!av+ssuTlAChGeVFF68;D7-K16Ch{gB0ZLq8Xq7=mA;FT##9SUM=&2 zLl*3TveY6mMh1prH&7ZBg66=#Y^+=?9E==HJd7X_2xdXBzq0Y-ma9UpkRFk;~)hLuHPEcM4VNkaVJjGeV5DOj@$YKa%U}Pu+PjNyT{EW8*G7^iy zH87~HpP8RmtjTnXNzdRGb5Uv`dXC|=Nl(p7ttcq6>tSSI_zX&&Rc2V~B+zsaN`TnF zI^A#sZn1!d@~a{u^Gg+SON&bsKn-$*#1e&^)I`v9VIHI<1)cc^jZ##DG}J0+YU8H?BZG_d(B^r3Yv_!KtoyC#Z?}p+ftmG3Nbk&HK#xU zV!V>3rqC^JM06Gxfkt_X#6YFYED&J~B1Az1s0_Nr30sp;Tm+hEzQuzaCbyUq^D2u# z?UJI^pftb*YN5x2-CqQ%4sWqRT8g(=QZkcEia--_n%t1CKDf&TPDS8E07^&UU0WA{2O_|?p?4YI%NFLO9Vfn+x#>33T$i&F;pNknJ3Rd-p zjg604h>?v+j1klfVq)ZA68gvTpN*Y~k%N)xKg)j>)+%Kp5|$v;6f8L*asS(0ga1+X8LQHYM6>-NNCov5Gn0{9 z>vXICuNll3dWd%^x zS`2Qo-eLi@f?)X>G!Al$6QKg!tOOI_wxs~5PnQ~>lvtdZ91qgB02D{y9vd4QBL^c3 zBi2wu*QLn{sdPXI=N4}Xc=-*qIadU3J%ED~xefx&&Vn#FI3YulS&X0wniR%frdn3e zKz$7(XgVhgJe5}ZTEkYuoWjxz>aVj_-G-O4@U9zd;1`quQj0*N z+C}*VMVX*}9k{5?ECzR~U_}9F6f-dodH%)<+@n)~wuqpa4AwxkQV7pTEy+kN0+k^U zB?_5&$@#eji6xmyIjL~>fFfQAn&ygiAtjT6r~oWf=ay9 z;#<50;AK(qNttF2eLLk8Md(M7Jo5p6&0vokycy;8tc?#F9LPbZ?PqV zyTe7GQL>_gpsdaevH>*YR|INSYqCQM5OCQ6ihZzduvJAzK*iQk5CKkaU;>=zL?PX; zcxW`mL!xOlDCL0$c^P>5!1*7PuUQzGeuKI)pnT5sw@L#VnxIM%)&#<8m?op2CWoI} zh?`qcA83HfPm{^dPg4$k-U&321Rhqp#Zz38Sdy8HJmnh(ayqCnTNDan$$|)w`ylha zAm86&Ny^X9fs9Uq`-r_DHK5#61WMaQpb^U=X^_}r5CKa6MUo)aP7tvVL464eIT*!QnHYuGnK&7KfaZ$90Rs*$Hb$oJe1=SH;E7Dg zI53F(0#n5XRs~Vd#>mIW^qJ2FCdT%Q$DfH&h>wAh;WtD*cnr$Ux6f~!jKIQT7DR5hUSt_nSP#(`uIP+I}1p94{Yny|qc<(3MnVY&G!sX4`Z z=y?y6&u*ca2~~<(s)EuDx&!l4OUm<$vh`q#EI>n?w?Ol3NDj;|NG$@7q!jDHy6vEp ziypW|sfD2FjN+1_Qqby4NOPkI+zC@EAgf%Jfe2|-N;a62XnEdXH(pj}UJ zRzUXyObw`p0gW|+G90Fw;`|(N4-uRIz&Q*(;z4Wa;`2*OQozHi;Hh=+)b}kJR7aPV zWabp>fd^+mgPq_^4w{uHk_V-4v?K>njF|oePx{^BOiwNG0nh9~iWl&>5onPIc!v5G zr&Fk>k4wC(U)U`{*8mS!-}rD3S682SXGdob*IS%Hu7UAj6-C*g0su6T2cD<^XFa4Q z6}V6Ul?S&tY#?h`>_E*Ea0ioxor4hsL95Cnm_Q^53xHRdfmk3c!3H8BScH{_iHljl RTSyjM#{Okt=aUtX0RRer1Q!4R literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bfb9adfbf9715d2a282b7b490096df7c5d2d589 GIT binary patch literal 4934 zcmYe~<>g{vU|^WXFgv|agn{8Ph=Yt-7#J8F7#J9eA2Bd6q%fo~<}gG-XvQc;FrO)k z2~0CbF@tHAD3%n46s8>3T(&5-T=pn-Mv!{u9FAPhD9&82C@wIcC5JngCyEEmX3gQv z<%{BDWJqONz@I9xkTFWoogsxSg}sF#g}s?6O30ldg(HQtg&~DARj8RcO4ywtg)4=- zg&~C-%olNINa0E0ZDB~^ZDxuRO=ZXuOBGLLPZg46Na35ql)|4P(8AKp7$pIgVM`U4 zWJqOCVU%P@5uC%6B9tNwmX%Cl3}(<2c?t5ppC;2SCQtuc9G)eqMTsT(MVd^vxIH{w zT;rWXgM$5oZgB^D_=iI|nvA#D!#(|6{KJDa8E^5YrjP0EJ={Qwn1W(;UVW<`k9|mMG>_mK4Sm);UbzFkp#d1-p#nmOyYpW?o)u zk!M~>YEfEZa;o1-##?MfsU@XFdC81Oc7WI*>pdX(Ja%f&+j(&1Z zrhYNR@x^)tmA6=t0L${uVM^gk;csDy;smED!COM$#FUs^ zl3A7t^|#+I7TuT{{pXM%K47oOa*I7TwYWGjJ@pn#T4qk_EiO>x#3yGY78T!;&dtn= zFD*z(EJ=mLcNr+UQj_!ZQi_vVA!dL{5F6xQaH5Q1U|^_WtYL^}s9{QBC}k)TDPhcF zs%5HSs$qy{E@7!*X$Hx%rhrJc67~fgHOvb^Y|a{nEanAVDNH5Y%?u(8H4Iq{;tVOw z;tUHJ85vSoY8c{qK*?N_)z9r0qe2y{f}Wn9LJ=s5X!73Th==)uxwx|U7F%&iN`7g{ zE!KFjuegH}OHzF@b2Cd)i*E787lC|~1LbnYL()KM$}LWid`W(OPVp_)U$lNFNwwDbc-DmX$-(A>U&u?Fl;NVKIO*eu{E0%bG?kRLRe{cbUGg=n%ud;xNK5j>KL zK&BRng5nGu`d|VS1>nLB+%N!@urSwy!XInsLvoKMvtN-6$SherSPWkflAvHreFq5fm@<}`FWVJ2`yRu9Q-tyi@=2f zxF`T6gJe*2LSvT!#0Ft-^s0cO7gPc=fXhV25~dm^a1LayVOYSD!UW2d(CBo##a>*J zSX7dlqRCpM3<^VV_EQJ3z=@O{T42Mn8o~|WFa;CfNCrg!C}4^~H5Mq6L8VZY99Cb! zi=ZL{Z0Qsf&|r^%TmUMzAq5XCk1;ZoFfU*Mc`b{zhH)V?s9_k)pvmM{#im+prJ!1j zoXd(#LD`EfCqF$swdfX0W?ou8*q@rviXK#SASD#ASL_)W7(n%CF{oB$fRq!mI6MNW z&ajsi@CX6r5r{uP!4C5WqO5@AIFKC37Xrm4nK?NMMWuOpnR)4YdU~2Hko*P;jv@C3QR zCO=4Ph3S?|Jf5c2EuQ$C#NrZIMusMQu%#elA*mmn@Ihgf0SW_9EeFcORU$|Y9Yn6h zs2M>a0(UE@*e+pMz_5^^mJ#IUEJg`XV*%7iV9I6fw2nBPEbpP13d-86W=YCr2PCGNWKLbgk(6v zXP~5z4zdB{GY&=p7Cu&R^3Y_0l=|QTAJjBOP930p0!p04D;O9UN*J;jK`oFXB~aAvJVu)nO(_mpJ;i;T~BnPfyz;ZkW z3}DrevVtL)L6gPr7DsYoUUF(qYRWCvR8W8N7E4NgUaBT<5vb-WQU#aTnZ=1EC6z^> ze0EDPJ+;I&EiDz?_3%k8OU=2(4l21~dgDY%sX1&Fmk(rW`nirp3T2!20 zbW6}XwK6F`u_y&xw-%Kalz`g?w>VuZl2Z#ny>4g_-(m+9hIy$)Nbv(obhmi&3sUpI z&Gx+1qEb*Cff^qS>=KMzOdO0%j694QjG)F08<^x^DgspBS{bE`xkV&M#6 zF%FPe9uI1T*>))C8-r9IhjdCpaBbr zCEzFpWv^RoC6xu4dFe%g{vU|^WXFgv}9fq~&Mh=Yt785kHG7#J9eWf&M3QW&BbQW&EcQ<$QdQkbKd zQ&^%{Qdpx{Q`mwTG}&K*^t}XWc*(@T!0?h8M6iGeaRvqkKTWnRF+H_dzaXTZlX-=vg$j8N?P-J0*K>+;IS>gZy literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 0000000..1010a13 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,163 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + for opt_str in opt._long_opts + opt._short_opts: + options.append((opt_str, opt.nargs)) + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``

`` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(`file`, `path` or `dir`)i + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/base_command.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..dc4f591 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,214 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[Any]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Any, Any]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + if getattr(options, "build_dir", None): + deprecated( + reason=( + "The -b/--build/--build-dir/--build-directory " + "option is deprecated and has no effect anymore." + ), + replacement=( + "use the TMPDIR/TEMP/TMP environment variable, " + "possibly combined with --no-clean" + ), + gone_in="21.3", + issue=8333, + ) + + if "2020-resolver" in options.features_enabled: + logger.warning( + "--use-feature=2020-resolver no longer has any effect, " + "since it is now the default dependency resolver in pip. " + "This will become an error in pip 21.0." + ) + + try: + status = self.run(options, args) + assert isinstance(status, int) + return status + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to stderr + # because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + finally: + self.handle_pip_version_check(options) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..15ef422 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1009 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import textwrap +import warnings +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.cli.progress_bars import BAR_TYPES +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_install_build_global( + options: Values, check_options: Optional[Values] = None +) -> None: + """Disable wheels if per-setup.py call options are set. + + :param options: The OptionParser options to update. + :param check_options: The options to check, if not supplied defaults to + options. + """ + if check_options is None: + check_options = options + + def getname(n: str) -> Optional[Any]: + return getattr(check_options, n, None) + + names = ["build_options", "global_options", "install_options"] + if any(map(getname, names)): + control = options.format_control + control.disallow_binaries() + warnings.warn( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + stacklevel=2, + ) + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + # Run only if inside a virtualenv, bail if not. + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=SUPPRESS_HELP, +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=list(BAR_TYPES.keys()), + default="on", + help=( + "Specify type of progress to be displayed [" + + "|".join(BAR_TYPES.keys()) + + "] (default: %default)" + ), +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form [user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = "invalid --python-version value: {!r}: {}".format( + value, + error_msg, + ) + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help="Prefer older binary packages over newer source packages.", + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +build_dir: Callable[..., Option] = partial( + PipOption, + "-b", + "--build", + "--build-dir", + "--build-directory", + dest="build_dir", + type="path", + metavar="dir", + help=SUPPRESS_HELP, +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + +install_options: Callable[..., Option] = partial( + Option, + "--install-option", + dest="install_options", + action="append", + metavar="options", + help="Extra arguments to be supplied to the setup.py install " + 'command (use like --install-option="--install-scripts=/usr/local/' + 'bin"). Use multiple --install-option options to pass multiple ' + "options to setup.py install. If you are using an option with a " + "directory path, be sure to use absolute path.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + "Arguments to {} must be a hash name " # noqa + "followed by a value, like --hash=sha256:" + "abcde...".format(opt_str) + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( # noqa + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=["2020-resolver", "fast-deps", "in-tree-build"], + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=["legacy-resolver"], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + isolated_mode, + require_virtualenv, + verbose, + version, + quiet, + log, + no_input, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/command_context.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..4c4feae --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Iterator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Iterator[None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..3911e2d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,70 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..b81fd0b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,87 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import sys +from typing import List, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/parser.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..1a8efdb --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,292 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Iterator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items(self) -> Iterator[Tuple[str, Any]]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + "{} is not a valid value for {} option, " # noqa + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead.".format(val, key) + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + "{} is not a valid value for {} option, " # noqa + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0.".format(val, key) + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..2ecc041 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,250 @@ +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation +from pip._internal.utils.misc import format_size + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +def _select_progress_class(preferred: Bar, fallback: Bar) -> Bar: + encoding = getattr(preferred.file, "encoding", None) + + # If we don't know what encoding this file is in, then we'll just assume + # that it doesn't support unicode and use the ASCII bar. + if not encoding: + return fallback + + # Collect all of the possible characters we want to use with the preferred + # bar. + characters = [ + getattr(preferred, "empty_fill", ""), + getattr(preferred, "fill", ""), + ] + characters += list(getattr(preferred, "phases", [])) + + # Try to decode the characters we're using for the bar using the encoding + # of the given file, if this works then we'll assume that we can use the + # fancier bar and if not we'll fall back to the plaintext bar. + try: + "".join(characters).encode(encoding) + except UnicodeEncodeError: + return fallback + else: + return preferred + + +_BaseBar: Any = _select_progress_class(IncrementalBar, Bar) + + +class InterruptibleMixin: + """ + Helper to ensure that self.finish() gets called on keyboard interrupt. + + This allows downloads to be interrupted without leaving temporary state + (like hidden cursors) behind. + + This class is similar to the progress library's existing SigIntMixin + helper, but as of version 1.2, that helper has the following problems: + + 1. It calls sys.exit(). + 2. It discards the existing SIGINT handler completely. + 3. It leaves its own handler in place even after an uninterrupted finish, + which will have unexpected delayed effects if the user triggers an + unrelated keyboard interrupt some time after a progress-displaying + download has already completed, for example. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + """ + Save the original SIGINT handler for later. + """ + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + self.original_handler = signal(SIGINT, self.handle_sigint) + + # If signal() returns None, the previous handler was not installed from + # Python, and we cannot restore it. This probably should not happen, + # but if it does, we must restore something sensible instead, at least. + # The least bad option should be Python's default SIGINT handler, which + # just raises KeyboardInterrupt. + if self.original_handler is None: + self.original_handler = default_int_handler + + def finish(self) -> None: + """ + Restore the original SIGINT handler after finishing. + + This should happen regardless of whether the progress display finishes + normally, or gets interrupted. + """ + super().finish() # type: ignore + signal(SIGINT, self.original_handler) + + def handle_sigint(self, signum, frame): # type: ignore + """ + Call self.finish() before delegating to the original SIGINT handler. + + This handler should only be in place while the progress display is + active. + """ + self.finish() + self.original_handler(signum, frame) + + +class SilentBar(Bar): + def update(self) -> None: + pass + + +class BlueEmojiBar(IncrementalBar): + + suffix = "%(percent)d%%" + bar_prefix = " " + bar_suffix = " " + phases = ("\U0001F539", "\U0001F537", "\U0001F535") + + +class DownloadProgressMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + self.message: str = (" " * (get_indentation() + 2)) + self.message + + @property + def downloaded(self) -> str: + return format_size(self.index) # type: ignore + + @property + def download_speed(self) -> str: + # Avoid zero division errors... + if self.avg == 0.0: # type: ignore + return "..." + return format_size(1 / self.avg) + "/s" # type: ignore + + @property + def pretty_eta(self) -> str: + if self.eta: # type: ignore + return f"eta {self.eta_td}" # type: ignore + return "" + + def iter(self, it): # type: ignore + for x in it: + yield x + # B305 is incorrectly raised here + # https://github.com/PyCQA/flake8-bugbear/issues/59 + self.next(len(x)) # noqa: B305 + self.finish() + + +class WindowsMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # The Windows terminal does not support the hide/show cursor ANSI codes + # even with colorama. So we'll ensure that hide_cursor is False on + # Windows. + # This call needs to go before the super() call, so that hide_cursor + # is set in time. The base progress bar class writes the "hide cursor" + # code to the terminal in its init, so if we don't set this soon + # enough, we get a "hide" with no corresponding "show"... + if WINDOWS and self.hide_cursor: # type: ignore + self.hide_cursor = False + + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + # Check if we are running on Windows and we have the colorama module, + # if we do then wrap our file with it. + if WINDOWS and colorama: + self.file = colorama.AnsiToWin32(self.file) # type: ignore + # The progress code expects to be able to call self.file.isatty() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.isatty = lambda: self.file.wrapped.isatty() + # The progress code expects to be able to call self.file.flush() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.flush = lambda: self.file.wrapped.flush() + + +class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin): + + file = sys.stdout + message = "%(percent)d%%" + suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s" + + +class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar): + pass + + +class DownloadSilentBar(BaseDownloadProgressBar, SilentBar): + pass + + +class DownloadBar(BaseDownloadProgressBar, Bar): + pass + + +class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar): + pass + + +class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar): + pass + + +class DownloadProgressSpinner( + WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner +): + + file = sys.stdout + suffix = "%(downloaded)s %(download_speed)s" + + def next_phase(self) -> str: + if not hasattr(self, "_phaser"): + self._phaser = itertools.cycle(self.phases) + return next(self._phaser) + + def update(self) -> None: + message = self.message % self + phase = self.next_phase() + suffix = self.suffix % self + line = "".join( + [ + message, + " " if message else "", + phase, + " " if suffix else "", + suffix, + ] + ) + + self.writeln(line) + + +BAR_TYPES = { + "off": (DownloadSilentBar, DownloadSilentBar), + "on": (DefaultDownloadProgressBar, DownloadProgressSpinner), + "ascii": (DownloadBar, DownloadProgressSpinner), + "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner), + "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner), +} + + +def DownloadProgressProvider(progress_bar, max=None): # type: ignore + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter + else: + return BAR_TYPES[progress_bar][0](max=max).iter diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/req_command.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..35c4e80 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,453 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = logging.getLogger(__name__) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> PipSession: + assert not options.cache_dir or os.path.isabs(options.cache_dir) + session = PipSession( + cache=( + os.path.join(options.cache_dir, "http") if options.cache_dir else None + ), + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, retries=0, timeout=min(5, options.timeout) + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + if sys.platform == "darwin" or sys.platform == "linux": + if os.getuid() != 0: + return + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "2020-resolver" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + req_tracker: RequirementTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "2020-resolver": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + req_tracker=req_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + in_tree_build="in-tree-build" in options.features_enabled, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "2020-resolver": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/spinners.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..d76048a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,157 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Iterator + +from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: IO[str] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Iterator[SpinnerInterface]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Iterator[None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..cd93391 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..6ff33a0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,112 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import OrderedDict, namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple('CommandInfo', 'module_path, class_name, summary') + +# The ordering matters for help display. +# Also, even though the module path starts with the same +# "pip._internal.commands" prefix in each case, we include the full path +# because it makes testing easier (specifically when modifying commands_dict +# in test setup / teardown by adding info for a FakeCommand class defined +# in a test-related module). +# Finally, we need to pass an iterable of pairs here rather than a dict +# so that the ordering won't be lost when using Python 2.7. +commands_dict: Dict[str, CommandInfo] = OrderedDict([ + ('install', CommandInfo( + 'pip._internal.commands.install', 'InstallCommand', + 'Install packages.', + )), + ('download', CommandInfo( + 'pip._internal.commands.download', 'DownloadCommand', + 'Download packages.', + )), + ('uninstall', CommandInfo( + 'pip._internal.commands.uninstall', 'UninstallCommand', + 'Uninstall packages.', + )), + ('freeze', CommandInfo( + 'pip._internal.commands.freeze', 'FreezeCommand', + 'Output installed packages in requirements format.', + )), + ('list', CommandInfo( + 'pip._internal.commands.list', 'ListCommand', + 'List installed packages.', + )), + ('show', CommandInfo( + 'pip._internal.commands.show', 'ShowCommand', + 'Show information about installed packages.', + )), + ('check', CommandInfo( + 'pip._internal.commands.check', 'CheckCommand', + 'Verify installed packages have compatible dependencies.', + )), + ('config', CommandInfo( + 'pip._internal.commands.configuration', 'ConfigurationCommand', + 'Manage local and global configuration.', + )), + ('search', CommandInfo( + 'pip._internal.commands.search', 'SearchCommand', + 'Search PyPI for packages.', + )), + ('cache', CommandInfo( + 'pip._internal.commands.cache', 'CacheCommand', + "Inspect and manage pip's wheel cache.", + )), + ('index', CommandInfo( + 'pip._internal.commands.index', 'IndexCommand', + "Inspect information available from package indexes.", + )), + ('wheel', CommandInfo( + 'pip._internal.commands.wheel', 'WheelCommand', + 'Build wheels from your requirements.', + )), + ('hash', CommandInfo( + 'pip._internal.commands.hash', 'HashCommand', + 'Compute hashes of package archives.', + )), + ('completion', CommandInfo( + 'pip._internal.commands.completion', 'CompletionCommand', + 'A helper command used for command completion.', + )), + ('debug', CommandInfo( + 'pip._internal.commands.debug', 'DebugCommand', + 'Show information useful for debugging.', + )), + ('help', CommandInfo( + 'pip._internal.commands.help', 'HelpCommand', + 'Show help for commands.', + )), +]) + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6c918f3a7cdc5993e3663044440810acaea86be GIT binary patch literal 3097 zcmYe~<>g{vU|^WXFgx9VpMl{qh=Ytp85kHG7#J9evltl|LK#vRq8L&bQhE$dmwiNberYP=I z<`j-p?i9`xt`zQO<}{`ho>cA>-W0wRelSlUl{-Z+MJPoW%o9oFP7zHJOA!b2BvQFk zBvYhPq`^FyRPGen6uA_6Fi#g&mfgM#W2Mv#Td*pN##y4O)*O`2lFgaxl=4ttWvDOJeySR6x$TL6nikw zA(cDDF~upx8O(D@c(<@b@u%{pa-{M~GNky-VM_5$@oQm;5=dbRX3+GnQsoLrOwLYBPgO|H&nrpH z%*)J6S4hmsQ7FhPP)N?t%}vZpDdu_!iYz}(rd!6Ff0mNg)dbc=I^2_sb@)J|4aRmeyz110d>g2a-{q?}ZRl+=RMyp+_u8dHQ&TMP%g^JPfpBHNX$!7NYBYnO3VRetF+8?sAj!eY{jXG zMadaBqZuN7i#Hgo3}(6{gsTux8Q=+uNO&xR0xB^%BNcZ*fn;y-ID;sdX{w%i#RaL! zC17XfLfl=DS)g95P@a*Rnxl{mQml82H8U?IwF0NfVA)$do*+dqlZ{~}qeOC9VrEVv zDA?1A@^clS*-`ix%2$Qb;?xvyv_cCvkOb5Yy<4m)sY#{jID-c) zdyB^fqzGn%8b(GdEly1<%>mm1){vf=mktV`)SLp`0hF3kaEsd`HKzb(t~l6SkmJE7 zL0wy{cZ(Osj8Dl-F41JZ#R4kKZ?R>UCl;j_-(o9DEh#O^OJ)RBBT&r2z`(%Dz`)=Q zs`jlI7#Ku3@cVZf2@wt6@uHs9~sKNnxDB zRKvK0v5&Eqy@oxQL6fPg)rkG71%BI z^wg5Xl9D1#4zSK5ZIE(qh$OgnyTyg5-HLQUvTP7pc%a3D72INnhT%$vA~OaChF|ge z8Tq-X`swAFB_)PXDk!xeU*9(~C9&AU*H=F$GfBUovLquv&sfh=zc{lbRTrAMiuDUJ z3-sZYrasi@V*U8|%)HE!_;|g7%3FNN;NXgfN=AYr0^Cev;bY`tv*UJX+Uqa;HxLkcqlYqC^H!J-Eg6AFo?CHcC^`9(#k$t8M4pfsb&cuO!nwIn_{ zC%-r~J~y!>IU}{$Pm}c)drD?nT25wCktHZ#S#$EsQ;Q%m#*&>{S**zni4?FbA4E6Q zx5eNi_@% literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/cache.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/cache.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..654d4699d730f3e7ca1f5d996022b6e72434c80b GIT binary patch literal 6030 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 QV3c6vVdP;HVB%s108^)N(f|Me literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/debug.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/debug.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de37d20c66cbea5ed50b72b25be4dde35a3cec4f GIT binary patch literal 6656 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/download.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0249c5d89a204ebf3a3fe038c08ae00e8efb1064 GIT binary patch literal 3979 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/hash.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/hash.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94336f6e670e6c37d25d1eb81d9189d8c03fe126 GIT binary patch literal 2121 zcmYe~<>g{vU|^WXFgtxa8w0~*5C<8vFfcGUFfcF_&tYI-NMT4}%wdRv(2P-xU_Mh6 zQwl>0Qx0=3OB4$uNRBy&HJ2@l4a{cAVbA4=;sCQ*b2xLkqPTLoqqxC*wj7>Z-YDK& zz9>F0pFM{^S0G9tS1?MDks+0Ffl#XOLdGZ&cZL*>6wVfg6wXwRX67i-R51`t;hMvo z!kxm?!V)E(!Whh;$@>!IZa+=NTWn#8Ii;z^nvAztd@_qmG#PKPJLl)-Cg!DRGTmZz z4GQuPy2TzG>g?7Ju^=sQK2Zcur#wMH8(Y{q*x&>GbdG{BwryVU!f?q zAT_ZhF)1e%Y*J=kaY7SJj)9`o zlG38QWJaXG0kL@)7#N&EsmY3gfuV*Wiy@0Kg)xOGg}H<&g{6c!g>?Z-3fltK5~hWW z3mH?`d)XO5s@N8=r*ME&FJuCxlVAo-PQNN9-NY(xUERc-^!%dCl8oG2oCqdsaY=qr zYL!YzMk*wv;8Gypl@_O3Ddgv+g2J!5wu(tdL6h|sOG;{S$u0KejQq^x)Z$xgiOC?J z-C|EkO-n4zDY?axk(yIb1oDF>$1RTJ+?4qIf|BA}T!|@QR%U))5eEYULlHXz1H&!0 zwEUvn#FASqS^1fHx7Z32i;7c=ZV6}R6{i-JfHY?2=f$TN<(C$K(r9sNPTER_B54K& zhF{V88Tq-X`swAFB_)PXDk!xeU*9(~C9&AU*H=F$GfBUovLquv&sfh=zc{lbRTmoh z#rg%A1^V%sc_pbud5Jmt$&fT(tPhH9y@JYH+z7`OOMzlR3=}<#Y>X_7Oi;+e$nl@) z7aK>FI8y4$g}Ei_(jWKyjMP3^ECdSs54@Kw$xnXgg3uGZl-0qHh6X z2~!sHLPkc05|&_w8pbTvTIL!i7lv4gT9y*F6vi5s8s-vq5ZTPs%)-b}s8GTY%%I8S zS0$iYY{dmhwzjIpR;tCCoJA6#kmfEZ%FHW?FD*_?Prb!lTv>dJt+*s5wWz2F%BMT!RBMTE7BL^c3BhP;}rYe5q;3_K3)8x6u5g(tIn420Oe~T+VJ~uz5 zGzY}yiH|QVP0WGHu*b)zgFS=d<^S(x~^!Qz_CMJgb(Kz@b9 z9mr^quRs_SYVf!VVPIe=VW?q9VQgmVH>zbSVO+pe!?=*KmbrwvhN+p+g&~%&mZgSy z0ZR=FC{_#Q!WmMSSQuCsnwc3H@&pVSik%D?7{M@-fsvtxc>(J}hF}Iw<|@S?Z~>uE z0?VN(ndzy;C7>*s2rh>7ZZQ=l`DwDolAl4rc8jf~vH&Cpjv2Xv%mO`l{?kj&$<#|q zEKZGwX2c>;?Qjc=qT-UolG5V%Vo16LCC^(@sK%9+Wabp>fjpC13@&EC1Z;NOMLRv(^HFz)IgqK19>U62%H{@bU>*A#h?O%gAoLI7|EUCldew literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/help.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/help.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14874ec39a1e49161bfda56da2b46f72646215f8 GIT binary patch literal 1295 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/install.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/install.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..741edc0433cc26e582a0cf178369a0ef1cc1529f GIT binary patch literal 17648 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46e1bfdac4f9876f11abf26885be93c116dd73bc GIT binary patch literal 3089 zcmYe~<>g{vU|^WXFgyJZF9XA45C<8vGB7YWFfcF_uV7$cNMT4}%wdQE(M&mvxlB<^ zj37314s$L`6bqQmlEa$I7R3f;v*xhpazt@}*=#wSxm;0Px!h6QU_N^ePcCm1FPP1d z!K6j32u2_^9BSR{~0`XLdg^W>>?hGkB zDZDKVDZHs1sa(x0QBo<4!3>&wFF}6r(`3BG7M7S(np&*Mc#Fj+v$#Z)@s?n6VqSh; zW^!UqW>so@USe*lCgUx3=ltB<#Jm(urdz_nsl~;a`FT(g-^_~4yj#NMiA8zwnQ8Gw zrFrp*#qmY?`5?2{gF~I2U4w%`#(L%zmn7!oB$j06=eZUYHcQy8L{QW&F{Q<$Py zQkYX%<}jwPrm(fJM6sr_rLw1TNHU~yrm)XpPT@%5Y+;GwN?{IW(B!%$5Sj;dDm07| zofsJyxD*r=6yP!n1&PVoiRr1udR$KYMCU_19;;vj4NN-)Jw1q0Of|Yi z3O2~;4D3#@25>egN-ZfZ%1dTMN)I45Cj$e6GbnqzFfcIGFk~@gF{Uu4Fo6<7Is+&% zq_Fq0Gs0vzQaDq%Qn*1`u9p=o%Cvwvg%6}}A-E_AX3*sKt76hEs^ZnvMRLt89wbij zEjCc_4Bo>`Wfr+{n}*q3?=3LzPp z#R`z{Qb|wosl_F?*b&4c2JC$B^KRc$wi(hT=MhOOB51| zvlY_vixiUc^U^Yla>2PzAwLZ%X{V&-q=IZI*3)Dz5@ujvC=vk?;vfPP_?j%YIFfTy z;`0kiif?fxrhr+Q`FXe4z!|^jmT+cXacWTsNI_-%P=Bo=%4`s(LoCh0@6fw7*YesN|=sxCA=73&vd z7U;)k=9Q!tvEoTj9(Y_ka1p*5h7#Rxpl?XO7Ffx<~1v6-JgR(70W^sN_Vo7RBRj_AX zSz=CR3UcbVQcx{Y$V|`6FG@{O&;{oZc*H3{<5D5Dq98T7q*wt|(V^%r*3)DvQet3W zxW!%!sqw0`BJ)cXa!ZR#6hJvmA+ZEhE*6(4iol7T=@w67X-R%OG{4+pFH0>-$}djU6uu>#o>~$Q z&57|)#}sjcoW=_afcV_}l+;@+AYT-L>akmFIr-`7sYSQgK{az`UV4!LC|iNjO%V@> z#R(#KL1wU(ftvugIN^a)BmolVgg79xr1BOUD6}$5ir7J#I2afhG`WgEsT>?WMam#i zRR#uzD8ZuC!s7Un{CI>>Iv}H%i&6`3aezuQkOOaVf%7l8;*Ju8D~&HmEXgQNEdl3S z2%!McT$*PF%2z?4#LvjZ#KOqI$i&F@pN*M~QGkhsk%^h<4;vd7EU*3LVgcnlmVaz4 zY>YzST*$@9@}KQL3oBR`3lAd;BhP;}W)?;+CN{<@5sbW8RGO#BeTyR=-1>=+zr_^~ z3f|J3)cE*YJn`{`rHMHpf5gY%Vvmnc$xn`tzr|WwoS2?kqzDQMCJ+J2t+$wqONwqW zXXcd@fjj{56R1>zut2^m;$vW75C!=T6s#PKELKa%JYF>w#;2NLr8stAG__ddWGNdP#}J zsqvs#P0ULv0ySc9$zm!hN-cz|0hKo3_`ik4wBnM)lG5V%;v$eoZb_h;hG?b~ zffC*=K~(9Y)WRZA(nL4AD78>8IX|zsq^LBxB)_N_oan*n7u^D|Z}oCBi<67MiJCJ# zwZsRU1B%Q+(V+_>Kw%9Ddelg`#bJ}1pHiBWY6r@R#h}#B!N|kN!^FeH!zch^G4e19 Ku<$T(F#`Y#G>&Tk literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..189b3892c95f16e52747126818ab9e2de987144e GIT binary patch literal 4852 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 can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + + self.cmd_opts.add_option( + '--format', + action='store', + dest='list_format', + default="human", + choices=('human', 'abspath'), + help="Select the output format among: human (default) or abspath" + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[Any]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not " + "function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError('Too many arguments') + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError('Too many arguments') + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, '*')) + + http_cache_location = self._cache_dir(options, 'http') + wheels_cache_location = self._cache_dir(options, 'wheels') + http_cache_size = filesystem.format_directory_size(http_cache_location) + wheels_cache_size = filesystem.format_directory_size( + wheels_cache_location + ) + + message = textwrap.dedent(""" + Package index page cache location: {http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Wheels location: {wheels_cache_location} + Wheels size: {wheels_cache_size} + Number of wheels: {package_count} + """).format( + http_cache_location=http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ).strip() + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError('Too many arguments') + + if args: + pattern = args[0] + else: + pattern = '*' + + files = self._find_wheels(options, pattern) + if options.list_format == 'human': + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info('Nothing cached.') + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f' - {wheel} ({size})') + logger.info('Cache contents:\n') + logger.info('\n'.join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if not files: + return + + results = [] + for filename in files: + results.append(filename) + + logger.info('\n'.join(sorted(results))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError('Too many arguments') + + if not args: + raise CommandError('Please provide a pattern') + + files = self._find_wheels(options, args[0]) + + # Only fetch http files if no specific pattern given + if args[0] == '*': + files += self._find_http_files(options) + + if not files: + raise CommandError('No matching packages') + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError('Too many arguments') + + return self.remove_cache_items(options, ['*']) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + http_dir = self._cache_dir(options, 'http') + return filesystem.find_files(http_dir, '*') + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, 'wheels') + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/check.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..eb020be --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,47 @@ +import logging +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[Any]) -> int: + + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, version, dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, version, req, dep_name, dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/completion.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..4593cdd --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,91 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + 'bash': """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + 'zsh': """ + function _pip_completion {{ + local words cword + read -Ac words + read -cn cword + reply=( $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$(( cword-1 )) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) + }} + compctl -K _pip_completion {prog} + """, + 'fish': """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + '--bash', '-b', + action='store_const', + const='bash', + dest='shell', + help='Emit completion code for bash') + self.cmd_opts.add_option( + '--zsh', '-z', + action='store_const', + const='zsh', + dest='shell', + help='Emit completion code for zsh') + self.cmd_opts.add_option( + '--fish', '-f', + action='store_const', + const='fish', + dest='shell', + help='Emit completion code for fish') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ['--' + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, '').format( + prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + 'ERROR: You must pass {}\n' .format(' or '.join(shell_options)) + ) + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/configuration.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..64b7cd2 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,266 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with name + - set: Set the name=value + - unset: Unset the value associated with name + - debug: List the configuration files and values defined under them + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen on the to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get name + %prog [] set name value + %prog [] unset name + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + '--editor', + dest='editor', + action='store', + default=None, + help=( + 'Editor to use to edit the file. Uses VISUAL or EDITOR ' + 'environment variables if not provided.' + ) + ) + + self.cmd_opts.add_option( + '--global', + dest='global_file', + action='store_true', + default=False, + help='Use the system-wide configuration file only' + ) + + self.cmd_opts.add_option( + '--user', + dest='user_file', + action='store_true', + default=False, + help='Use the user configuration file only' + ) + + self.cmd_opts.add_option( + '--site', + dest='site_file', + action='store_true', + default=False, + help='Use the current environment configuration file only' + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [key for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) if value] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", + fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.\ + get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", 'env_var') + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f'PIP_{key.upper()}' + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + + try: + subprocess.check_call([editor, fname]) + except subprocess.CalledProcessError as e: + raise PipError( + "Editor Subprocess exited with exit code {}" + .format(e.returncode) + ) + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments + """ + if len(args) != n: + msg = ( + 'Got unexpected number of arguments, expected {}. ' + '(example: "{} config {}")' + ).format(n, get_prog(), example) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/debug.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..0041bc0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,204 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip import __file__ as pip_location +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info('%s: %s', name, value) + + +def show_sys_implementation() -> None: + logger.info('sys.implementation:') + implementation_name = sys.implementation.name + with indent_log(): + show_value('name', implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + vendor_txt_path = os.path.join( + os.path.dirname(pip_location), + '_vendor', + 'vendor.txt' + ) + + with open(vendor_txt_path) as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [line.strip().split(' ', 1)[0] + for line in f.readlines() if '==' in line] + + # Transform into "module" -> version dict. + return dict(line.split('==', 1) for line in lines) # type: ignore + + +def get_module_from_module_name(module_name: str) -> ModuleType: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower() + # PATCH: setuptools is actually only pkg_resources. + if module_name == 'setuptools': + module_name = 'pkg_resources' + + __import__( + f'pip._vendor.{module_name}', + globals(), + locals(), + level=0 + ) + return getattr(pip._vendor, module_name) + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, '__version__', None) + + if not version: + # Try to find version in debundled module info. + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = '' + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ' (Unable to locate actual module version, using'\ + ' vendor.txt specified version)' + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ' (CONFLICT: vendor.txt suggests version should'\ + ' be {})'.format(expected_version) + logger.info('%s==%s%s', module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info('vendored library versions:') + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = '' + if formatted_target: + suffix = f' (target: {formatted_target})' + + msg = 'Compatible tags: {}{}'.format(len(tags), suffix) + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = ( + '...\n' + '[First {tag_limit} tags shown. Pass --verbose to show all.]' + ).format(tag_limit=tag_limit) + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = set() + for key, _ in config.items(): + levels.add(key.split('.')[0]) + + if not levels: + return "Not specified" + + levels_that_override_global = ['install', 'wheel', 'download'] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return 'global' + + if 'global' in levels: + levels.remove('global') + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value('pip version', get_pip_version()) + show_value('sys.version', sys.version) + show_value('sys.executable', sys.executable) + show_value('sys.getdefaultencoding', sys.getdefaultencoding()) + show_value('sys.getfilesystemencoding', sys.getfilesystemencoding()) + show_value( + 'locale.getpreferredencoding', locale.getpreferredencoding(), + ) + show_value('sys.platform', sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get('REQUESTS_CA_BUNDLE')) + show_value("CURL_CA_BUNDLE", os.environ.get('CURL_CA_BUNDLE')) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/download.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..fe750eb --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,139 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.build_dir()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + '-d', '--dest', '--destination-dir', '--destination-directory', + dest='download_dir', + metavar='dir', + default=os.curdir, + help=("Download packages into

."), + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=True + ) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + if downloaded: + write_output('Successfully downloaded %s', ' '.join(downloaded)) + + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/freeze.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..883cec4 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,84 @@ +import sys +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + +DEV_PKGS = {'pip', 'setuptools', 'distribute', 'wheel'} + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-r', '--requirement', + dest='requirements', + action='append', + default=[], + metavar='file', + help="Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times.") + self.cmd_opts.add_option( + '-l', '--local', + dest='local', + action='store_true', + default=False, + help='If in a virtualenv that has global access, do not output ' + 'globally-installed packages.') + self.cmd_opts.add_option( + '--user', + dest='user', + action='store_true', + default=False, + help='Only output packages installed in user-site.') + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + '--all', + dest='freeze_all', + action='store_true', + help='Do not skip these packages in the output:' + ' {}'.format(', '.join(DEV_PKGS))) + self.cmd_opts.add_option( + '--exclude-editable', + dest='exclude_editable', + action='store_true', + help='Exclude editable package from output.') + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(DEV_PKGS) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + '\n') + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/hash.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..267a83a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,55 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = '%prog [options] ...' + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-a', '--algorithm', + dest='algorithm', + choices=STRONG_HASHES, + action='store', + default=FAVORITE_HASH, + help='The hash algorithm to use: one of {}'.format( + ', '.join(STRONG_HASHES))) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output('%s:\n--hash=%s:%s', + path, algorithm, _hash_of_file(path, algorithm)) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, 'rb') as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/help.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6ffaf9b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(' - '.join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/index.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..397c77a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[Any]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError('You need to specify exactly one argument') + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Union[LegacyVersion, Version]] = ( + candidate.version + for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = (version for version in versions + if not version.is_prerelease) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + 'No matching distribution found for {}'.format(query)) + + formatted_versions = [str(ver) for ver in sorted( + versions, reverse=True)] + latest = formatted_versions[0] + + write_output('{} ({})'.format(query, latest)) + write_output('Available versions: {}'.format( + ', '.join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/install.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..53bdb09 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,750 @@ +import errno +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.format_control import FormatControl +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.distutils_args import parse_distutils_args +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import ( + BinaryAllowedPredicate, + build, + should_build_for_install_command, +) + +logger = getLogger(__name__) + + +def get_check_binary_allowed(format_control: FormatControl) -> BinaryAllowedPredicate: + def check_binary_allowed(req: InstallRequirement) -> bool: + canonical_name = canonicalize_name(req.name or "") + allowed_formats = format_control.get_allowed_formats(canonical_name) + return "binary" in allowed_formats + + return check_binary_allowed + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + '-t', '--target', + dest='target_dir', + metavar='dir', + default=None, + help='Install packages into . ' + 'By default this will not replace existing files/folders in ' + '. Use --upgrade to replace existing packages in ' + 'with new versions.' + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + '--user', + dest='use_user_site', + action='store_true', + help="Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)") + self.cmd_opts.add_option( + '--no-user', + dest='use_user_site', + action='store_false', + help=SUPPRESS_HELP) + self.cmd_opts.add_option( + '--root', + dest='root_path', + metavar='dir', + default=None, + help="Install everything relative to this alternate root " + "directory.") + self.cmd_opts.add_option( + '--prefix', + dest='prefix_path', + metavar='dir', + default=None, + help="Installation prefix where lib, bin and other top-level " + "folders are placed") + + self.cmd_opts.add_option(cmdoptions.build_dir()) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + '-U', '--upgrade', + dest='upgrade', + action='store_true', + help='Upgrade all specified packages to the newest available ' + 'version. The handling of dependencies depends on the ' + 'upgrade-strategy used.' + ) + + self.cmd_opts.add_option( + '--upgrade-strategy', + dest='upgrade_strategy', + default='only-if-needed', + choices=['only-if-needed', 'eager'], + help='Determines how dependency upgrading should be handled ' + '[default: %default]. ' + '"eager" - dependencies are upgraded regardless of ' + 'whether the currently installed version satisfies the ' + 'requirements of the upgraded package(s). ' + '"only-if-needed" - are upgraded only when they do not ' + 'satisfy the requirements of the upgraded package(s).' + ) + + self.cmd_opts.add_option( + '--force-reinstall', + dest='force_reinstall', + action='store_true', + help='Reinstall all packages even if they are already ' + 'up-to-date.') + + self.cmd_opts.add_option( + '-I', '--ignore-installed', + dest='ignore_installed', + action='store_true', + help='Ignore the installed packages, overwriting them. ' + 'This can break your system if the existing package ' + 'is of a different version or was installed ' + 'with a different package manager!' + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + + self.cmd_opts.add_option(cmdoptions.install_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + cmdoptions.check_install_build_global(options) + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + install_options = options.install_options or [] + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if (os.path.exists(options.target_dir) and not + os.path.isdir(options.target_dir)): + raise CommandError( + "Target path exists but is not a directory, will not " + "continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + reject_location_related_install_options( + reqs, options.install_options + ) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows( + modifying_pip=modifying_pip + ) + + check_binary_allowed = get_check_binary_allowed( + finder.format_control + ) + + reqs_to_build = [ + r for r in requirement_set.requirements.values() + if should_build_for_install_command( + r, check_binary_allowed + ) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=[], + ) + + # If we're using PEP 517, we cannot do a direct install + # so we fail here. + pep517_build_failure_names: List[str] = [ + r.name # type: ignore + for r in build_failures if r.use_pep517 + ] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {} which use" + " PEP 517 and cannot be installed directly".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a direct + # install for those. + for r in build_failures: + if not r.use_pep517: + r.legacy_install_reason = 8368 + + to_install = resolver.get_installation_order( + requirement_set + ) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and + options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + install_options, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter('name')) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = ' '.join(items) + if installed_desc: + write_output( + 'Successfully installed %s', installed_desc, + ) + except OSError as error: + show_traceback = (self.verbosity >= 1) + + message = create_os_error_message( + error, show_traceback, options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) # noqa + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme('', home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + 'Target directory %s already exists. Specify ' + '--upgrade to force replacement.', + target_item_dir + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + 'Target directory %s already exists and is ' + 'a link. pip will not automatically replace ' + 'links, please remove if replacement is ' + 'desired.', + target_item_dir + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move( + os.path.join(lib_dir, item), + target_item_dir + ) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "2020-resolver" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + "{name} {version} requires {requirement}, " + "which is not installed." + ).format( + name=project_name, + version=version, + requirement=dependency[1], + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "2020-resolver" else "you'll") + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None +) -> List[str]: + scheme = get_scheme( + '', + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) for d in set( + get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info("Defaulting to user installation because normal site-packages " + "is not writeable") + return True + + +def reject_location_related_install_options( + requirements: List[InstallRequirement], options: Optional[List[str]] +) -> None: + """If any location-changing --install-option arguments were passed for + requirements or on the command-line, then show a deprecation warning. + """ + def format_options(option_names: Iterable[str]) -> List[str]: + return ["--{}".format(name.replace("_", "-")) for name in option_names] + + offenders = [] + + for requirement in requirements: + install_options = requirement.install_options + location_options = parse_distutils_args(install_options) + if location_options: + offenders.append( + "{!r} from {}".format( + format_options(location_options.keys()), requirement + ) + ) + + if options: + location_options = parse_distutils_args(options) + if location_options: + offenders.append( + "{!r} from command line".format( + format_options(location_options.keys()) + ) + ) + + if not offenders: + return + + raise CommandError( + "Location-changing options found in --install-option: {}." + " This is unsupported, use pip-level options like --user," + " --prefix, --root, and --target instead.".format( + "; ".join(offenders) + ) + ) + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend([ + user_option_part, " or ", + permissions_part.lower(), + ]) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if (WINDOWS and error.errno == errno.ENOENT and error.filename and + len(error.filename) > 260): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/list.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..79768ca --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,337 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Iterator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import stdlib_pkgs, tabulate, write_output +from pip._internal.utils.parallel import map_multithread + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + latest_version: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-o', '--outdated', + action='store_true', + default=False, + help='List outdated packages') + self.cmd_opts.add_option( + '-u', '--uptodate', + action='store_true', + default=False, + help='List uptodate packages') + self.cmd_opts.add_option( + '-e', '--editable', + action='store_true', + default=False, + help='List editable projects.') + self.cmd_opts.add_option( + '-l', '--local', + action='store_true', + default=False, + help=('If in a virtualenv that has global access, do not list ' + 'globally-installed packages.'), + ) + self.cmd_opts.add_option( + '--user', + dest='user', + action='store_true', + default=False, + help='Only output packages installed in user-site.') + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + '--pre', + action='store_true', + default=False, + help=("Include pre-release and development versions. By default, " + "pip only finds stable versions."), + ) + + self.cmd_opts.add_option( + '--format', + action='store', + dest='list_format', + default="columns", + choices=('columns', 'freeze', 'json'), + help="Select the output format among: columns (default), freeze, " + "or json", + ) + + self.cmd_opts.add_option( + '--not-required', + action='store_true', + dest='not_required', + help="List packages that are not dependencies of " + "installed packages.", + ) + + self.cmd_opts.add_option( + '--exclude-editable', + action='store_false', + dest='include_editable', + help='Exclude editable package from output.', + ) + self.cmd_opts.add_option( + '--include-editable', + action='store_true', + dest='include_editable', + help='Include editable package from output.', + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, self.parser + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError( + "Options --outdated and --uptodate cannot be combined.") + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Iterator["_DistWithLatestInfo"]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo" + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [candidate for candidate in all_candidates + if not candidate.version.is_prerelease] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = 'wheel' + else: + typ = 'sdist' + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map_multithread(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == 'columns' and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == 'freeze': + for dist in packages: + if options.verbose >= 1: + write_output("%s==%s (%s)", dist.raw_name, + dist.version, dist.location) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == 'json': + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join(map(lambda x: '-' * x, sizes))) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + running_outdated = options.outdated + # Adjust the header for the `pip list --outdated` case. + if running_outdated: + header = ["Package", "Version", "Latest", "Type"] + else: + header = ["Package", "Version"] + + data = [] + if options.verbose >= 1 or any(x.editable for x in pkgs): + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, str(proj.version)] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if options.verbose >= 1 or proj.editable: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + 'name': dist.raw_name, + 'version': str(dist.version), + } + if options.verbose >= 1: + info['location'] = dist.location or "" + info['installer'] = dist.installer + if options.outdated: + info['latest_version'] = str(dist.latest_version) + info['latest_filetype'] = dist.latest_filetype + data.append(info) + return json.dumps(data) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/search.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..aafbe4d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,164 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-i', '--index', + dest='index', + metavar='URL', + default=PyPI.pypi_url, + help='Base URL of Python Package Index (default %default)') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError('Missing required argument (search query).') + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({'name': query, 'summary': query}, 'or') + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit['name'] + summary = hit['summary'] + version = hit['version'] + + if name not in packages.keys(): + packages[name] = { + 'name': name, + 'summary': summary, + 'versions': [version], + } + else: + packages[name]['versions'].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]['versions']): + packages[name]['summary'] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output('INSTALLED: %s (latest)', dist.version) + else: + write_output('INSTALLED: %s', dist.version) + if parse_version(latest).pre: + write_output('LATEST: %s (pre-release; install' + ' with "pip install --pre")', latest) + else: + write_output('LATEST: %s', latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = max([ + len(hit['name']) + len(highest_version(hit.get('versions', ['-']))) + for hit in hits + ]) + 4 + + for hit in hits: + name = hit['name'] + summary = hit['summary'] or '' + latest = highest_version(hit.get('versions', ['-'])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ('\n' + ' ' * (name_column_width + 3)).join( + summary_lines) + + name_latest = f'{name} ({latest})' + line = f'{name_latest:{name_column_width}} - {summary}' + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/show.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..31eff7e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,234 @@ +import csv +import logging +import pathlib +from optparse import Values +from typing import Iterator, List, NamedTuple, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-f', '--files', + dest='files', + action='store_true', + default=False, + help='Show the full list of installed files for each package.') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning('ERROR: Please provide a package name or names.') + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def _covert_legacy_entry(entry: Tuple[str, ...], info: Tuple[str, ...]) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +def search_packages_info(query: List[str]) -> Iterator[_PackageInfo]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = { + dist.canonical_name: dist + for dist in env.iter_distributions() + } + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning('Package(s) not found: %s', ', '.join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> List[str]: + return [ + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name in { + canonicalize_name(d.name) for d in dist.iter_dependencies() + } + ] + + def _files_from_record(dist: BaseDistribution) -> Optional[Iterator[str]]: + try: + text = dist.read_text('RECORD') + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _files_from_legacy(dist: BaseDistribution) -> Optional[Iterator[str]]: + try: + text = dist.read_text('installed-files.txt') + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = dist.location + info = dist.info_directory + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _covert_legacy_entry(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + entry_points_text = dist.read_text('entry_points.txt') + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = _files_from_record(dist) or _files_from_legacy(dist) + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.version), + location=dist.location or "", + requires=[req.name for req in dist.iter_dependencies()], + required_by=_get_requiring_packages(dist), + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterator[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + write_output("Requires: %s", ', '.join(dist.requires)) + write_output("Required-by: %s", ', '.join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..c54a5f3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,100 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import protect_pip_from_modification_on_windows + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + '-r', '--requirement', + dest='requirements', + action='append', + default=[], + metavar='file', + help='Uninstall all the packages listed in the given requirements ' + 'file. This option can be used multiple times.', + ) + self.cmd_opts.add_option( + '-y', '--yes', + dest='yes', + action='store_true', + help="Don't ask for confirmation of uninstall deletions.") + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, + options=options, + session=session): + req = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f'You must give at least one requirement to {self.name} (see ' + f'"pip help {self.name}")' + ) + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + + warn_if_run_as_root() + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..59f0de4 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,176 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + Requirements: setuptools>=0.8, and wheel. + + 'pip wheel' uses the bdist_wheel setuptools extension from the wheel + package to build individual wheels. + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + + self.cmd_opts.add_option( + '-w', '--wheel-dir', + dest='wheel_dir', + metavar='dir', + default=os.curdir, + help=("Build wheels into , where the default is the " + "current working directory."), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.build_dir()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + '--no-verify', + dest='no_verify', + action='store_true', + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + '--pre', + action='store_true', + default=False, + help=("Include pre-release and development versions. By default, " + "pip only finds stable versions."), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_install_build_global(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=True + ) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError( + "Failed to build one or more wheels" + ) + + return SUCCESS diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/configuration.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..2d10e32 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/configuration.py @@ -0,0 +1,403 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import logging +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = 'pip.ini' if WINDOWS else 'pip.conf' +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = logging.getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name): + # type: (str) -> str + """Make a name consistent regardless of source (environment or file) + """ + name = name.lower().replace('_', '-') + if name.startswith('--'): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name): + # type: (str) -> List[str] + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + "Perhaps you wanted to use 'global.{}' instead?" + ).format(name) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files(): + # type: () -> Dict[Kind, List[str]] + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) + for path in appdirs.site_config_dirs('pip') + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser('~'), + 'pip' if WINDOWS else '.pip', + CONFIG_BASENAME, + ) + new_config_file = os.path.join( + appdirs.user_config_dir("pip"), CONFIG_BASENAME + ) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated, load_only=None): + # type: (bool, Optional[Kind]) -> None + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers = { + variant: [] for variant in OVERRIDE_ORDER + } # type: Dict[Kind, List[Tuple[str, RawConfigParser]]] + self._config = { + variant: {} for variant in OVERRIDE_ORDER + } # type: Dict[Kind, Dict[str, Any]] + self._modified_parsers = [] # type: List[Tuple[str, RawConfigParser]] + + def load(self): + # type: () -> None + """Loads configuration from configuration files and environment + """ + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self): + # type: () -> Optional[str] + """Returns the file with highest priority in configuration + """ + assert self.load_only is not None, \ + "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self): + # type: () -> Iterable[Tuple[str, Any]] + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key): + # type: (str) -> Any + """Get a value from the configuration. + """ + try: + return self._dictionary[key] + except KeyError: + raise ConfigurationError(f"No such key - {key}") + + def set_value(self, key, value): + # type: (str, Any) -> None + """Modify a value in the configuration. + """ + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key): + # type: (str) -> None + """Unset a value in the configuration.""" + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not (parser.has_section(section) + and parser.remove_option(section, name)): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self): + # type: () -> None + """Save the current in-memory state. + """ + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + with open(fname, "w") as f: + parser.write(f) + + # + # Private routines + # + + def _ensure_have_load_only(self): + # type: () -> None + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self): + # type: () -> Dict[str, Any] + """A dictionary representing the loaded configuration. + """ + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self): + # type: () -> None + """Loads configuration from configuration files + """ + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug( + "Skipping file '%s' (variant: %s)", fname, variant + ) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant, fname): + # type: (Kind, str) -> RawConfigParser + logger.debug("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname): + # type: (str) -> RawConfigParser + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + try: + parser.read(fname) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason="contains invalid {} characters".format( + locale.getpreferredencoding(False) + ), + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self): + # type: () -> None + """Loads configuration from environment variables + """ + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys(self, section, items): + # type: (str, Iterable[Tuple[str, Any]]) -> Dict[str, Any] + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self): + # type: () -> Iterable[Tuple[str, str]] + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self): + # type: () -> Iterable[Tuple[Kind, List[str]]] + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. + """ + # SMELL: Move the conditions out of this function + + # environment variables have the lowest priority + config_file = os.environ.get('PIP_CONFIG_FILE', None) + if config_file is not None: + yield kinds.ENV, [config_file] + else: + yield kinds.ENV, [] + + config_files = get_configuration_files() + + # at the base we have any global configuration + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user configuration next + should_load_user_config = not self.isolated and not ( + config_file and os.path.exists(config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # finally virtualenv configuration first trumping others + yield kinds.SITE, config_files[kinds.SITE] + + def get_values_in_config(self, variant): + # type: (Kind) -> Dict[str, Any] + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self): + # type: () -> Tuple[str, RawConfigParser] + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname, parser): + # type: (str, RawConfigParser) -> None + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self): + # type: () -> str + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..96ba4d4 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a85584a4f7017a77ed3d477434148180373a74d8 GIT binary patch literal 787 zcmYe~<>g{vU|^WXFgrb;nStRkh=Yuo85kHG7#J9eT^JY`QW#Pga~N_NqZk=MY^EHh zT;?cdFq=7tC6_gd70hPIVasKYVrOJXWlv>HVV%R2!j{6`!V<-i!V%1%$@vmwz9!=> z5yzzBlA^@q5|_;4lA_F{(vr;lJWa-1Lc#f^MaijXqJrTWsi`?=f-%P=Bo=%4`s(LoCg~ScmSp7T8S7c<7iX5F>J}s>XD6no7V8&e7U;)k=9Q!t z-3O~E7nU&EKV%~1@tXNe9DT!y1?OrR~;h2qGVCcD@rZY yD@rYdIlhRMfq?<+L~wv25!?(647WIJa`RJ4b5iX<>7W?o6COq|WMN`t`Ue1UOya2k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/base.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/base.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc88f36197e473fda289126cb4bd9443df06691d GIT binary patch literal 1914 zcmYe~<>g{vU|^WXFgyJY3j@Pr5C<8vGB7YWFfcF_2QV-&q%fo~<}gHoXr>&-T&5@{ zMi84hhdGxeiUrJO$zjc9i(&(_S##KPIiffi8Qd9C*izVA7*g0%8L~K2IC`0*xKbE{ z88kUxg6#6sWW2@UUr>^npO=`U$#{#$C9}AsC^M-PB%;Z9i#H%KIXf{u)h#nGCACPC z@s^NhUU5lcPEJs2VQFSjYHn&?NixVFWDIgRh+iDRz`&5o5XG3n5XF?j7{#2*lERe2 zJcp^BA&oJGC55$xCyF(dEsH&sBb8HD15;`7j5-C9u!~1xI2^N+u|gB<8>j zfjdD16yhM?7ANL{LNu{BKMxdKMWuPVC7HRY3Mr`tsd*`>dC8fn#hUm6FS#f+u_RR? zQ2{xI74nm^Qj<#*QY#Abi$P8)$$*DrVp4utszPpRNn%Q3NunOuX?~hax0s7k3vaO% zrIwTy zQep_Df>I0e^?fr_5{o^2ef4uPlk^KJOEU8FjP)$_i!)17bz#A%Uyxa#AD@|5l3J9P zn4_P9lrf9-LCIUMpt6XYfq_8^M;fo8=udL1VJDkmj@{2^_o&kFc>?7HNqSS)KqEr-r z#KY2<65K;9RYq7ngjc&JKPW+gih}s~TU_z+x%nxjIjQmSw|L^?3riDopfc?7@hSPq z@$p5VvK1Wbx0n-?l5g=PLW3|jwIm}yr3e(VMIdh%34?qBN)@+QlJfI&io`&X!wXHF z$*DOx@$pDe#|u&o@@)|t0|Nsn5fp=X9E>ddA}lP7BFrpIER0P5z_OZ*w>Uw*2d8sQ z?jmWB$!sN+1(|v2UTP Af&c&j literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eb7ac9aa57e4cb7ad40ed26ead87e0890e7f3d8 GIT binary patch literal 1233 zcmYe~<>g{vU|^WXFgtxV69dCz5C<8vFfcGUFfcF_yD%^?q%fo~<}lm!&XB^I!q&o&!j{U~%pAp$!XC_^$?+0oz9!=> z4*!CZ%>2B>98JbsJT95VB}JJ@r63Va##M z(ZUkNnZg>(pviel)HAQRBrzu^H3ix3s*a%4f}+&o)Vz{ng~U9COqe2t0*H(BxVRJ) z6cj=-GK&>b@>7cy^72a*@={Y%6cY0)6$*+{3lfVGLB3N+ELJGVNL46GEiBC}N=;G7 z%uCBJ%7w^fBo-?q<`ktSrc{EBOG-`6Q%KIwEhsHXP0<4jX)@koD@rXXEy_z~MDja` z4Z_Z#$l_pNV5nipV#s0)W?0GSr^$4SxhS>p7Ef_vNoH|cW@<`&Ql%#2EtcZcoV1k; zMLY})48KzKGxBp&_0!8UOG*r(R8VR`zP@i}N@B5xudjYiW|DqEWl2VUp0S>#esN|= zsxH*?#rg%A1^V%sc_pbud5JmtDM+zdtPc+>y@JYHa_Olh@derG@kOb{`K3k4sm1Zg zss%vKX9D?)vC0H%Oz7b^z)zF;7F!xPdEDYpD$UGEiO(#~&jAN-5jz6|LozeSbSMU~ z;h_dfJt+*q3`L;e0|$yGa}hTK149u%hyXbaED9lb85kID$wDGF6~zznxv3?IDTyVC z!f?+pR~cjX3|{@3T(>yl`AU-IXA#Mk=KprS!V_;z51UVB_3~(^AunDoSFf#oE zi~DJE-eN1MEXd4D2OE7$vLLfSFTN}_FD1W74m?-?rxt;N y_?8l?GEiJq=s{CbJS6IhKyC*+0?EN}SKs2WfdqveDDH|u(Z$2W!^FeL!wdlaNK|D2 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..195ac63d9c218b7e429be331d834e1da3713614c GIT binary patch literal 3567 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 aAaC8`uz>`V9VkY@egh>W9!4HU9%cY*#I;rc literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/base.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..51ab130 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,38 @@ +import abc +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.req import InstallRequirement + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + """ + + def __init__(self, req: InstallRequirement) -> None: + super().__init__() + self.req = req + + @abc.abstractmethod + def get_pkg_resources_distribution(self) -> Optional[Distribution]: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + raise NotImplementedError() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/installed.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..670ac3e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,22 @@ +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + def get_pkg_resources_distribution(self) -> Optional[Distribution]: + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..5e4128e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,95 @@ +import logging +from typing import Set, Tuple + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + def get_pkg_resources_distribution(self) -> Distribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + self._setup_isolation(finder) + + self.req.prepare_metadata() + + def _setup_isolation(self, finder: PackageFinder) -> None: + def _raise_conflicts( + conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting) + ), + ) + raise InstallationError(error_message) + + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", "Installing build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + _raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + reqs = backend.get_requires_for_build_wheel() + + conflicting, missing = self.req.build_env.check_requirements(reqs) + if conflicting: + _raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", "Installing backend dependencies" + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..cfc0c68 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,34 @@ +from zipfile import ZipFile + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + def get_pkg_resources_distribution(self) -> Distribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + # Set as part of preparation during download. + assert self.req.local_file_path + # Wheels are never unnamed. + assert self.req.name + + with ZipFile(self.req.local_file_path, allowZip64=True) as z: + return pkg_resources_distribution_for_wheel( + z, self.req.name, self.req.local_file_path + ) + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/exceptions.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..dbb7ede --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,397 @@ +"""Exceptions used throughout package""" + +import configparser +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import Request, Response + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._internal.req.req_install import InstallRequirement + + +class PipError(Exception): + """Base pip exception""" + + +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class NoneMetadataError(PipError): + """ + Raised when accessing "METADATA" or "PKG-INFO" metadata for a + pip._vendor.pkg_resources.Distribution object and + `dist.has_metadata('METADATA')` returns True but + `dist.get_metadata('METADATA')` returns None (and similarly for + "PKG-INFO"). + """ + + def __init__(self, dist, metadata_name): + # type: (Distribution, str) -> None + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self): + # type: () -> str + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return ( + 'None {} metadata found for distribution: {}'.format( + self.metadata_name, self.dist, + ) + ) + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self): + # type: () -> str + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self): + # type: () -> str + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__(self, error_msg, response=None, request=None): + # type: (str, Response, Request) -> None + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if (self.response is not None and not self.request and + hasattr(response, 'request')): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self): + # type: () -> str + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename + or user-supplied ``#egg=`` value. + """ + def __init__(self, ireq, field, f_val, m_val): + # type: (InstallRequirement, str, str, str) -> None + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self): + # type: () -> str + template = ( + "Requested {} has inconsistent {}: " + "filename has {!r}, but metadata has {!r}" + ) + return template.format(self.ireq, self.field, self.f_val, self.m_val) + + +class InstallationSubprocessError(InstallationError): + """A subprocess call failed during installation.""" + def __init__(self, returncode, description): + # type: (int, str) -> None + self.returncode = returncode + self.description = description + + def __str__(self): + # type: () -> str + return ( + "Command errored out with exit status {}: {} " + "Check the logs for full command output." + ).format(self.returncode, self.description) + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self): + # type: () -> None + self.errors = [] # type: List[HashError] + + def append(self, error): + # type: (HashError) -> None + self.errors.append(error) + + def __str__(self): + # type: () -> str + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return '\n'.join(lines) + return '' + + def __nonzero__(self): + # type: () -> bool + return bool(self.errors) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + req = None # type: Optional[InstallRequirement] + head = '' + order = -1 # type: int + + def body(self): + # type: () -> str + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f' {self._requirement_name()}' + + def __str__(self): + # type: () -> str + return f'{self.head}\n{self.body()}' + + def _requirement_name(self): + # type: () -> str + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else 'unknown package' + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ("Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:") + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ("Can't verify hashes for these file:// requirements because they " + "point to directories:") + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ('Hashes are required in --require-hashes mode, but they are ' + 'missing from some requirements. Here is a list of those ' + 'requirements along with the hashes their downloaded archives ' + 'actually had. Add lines like these to your requirements files to ' + 'prevent tampering. (If you did not enable --require-hashes ' + 'manually, note that it turns on automatically when any package ' + 'has a hash.)') + + def __init__(self, gotten_hash): + # type: (str) -> None + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self): + # type: () -> str + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = (self.req.original_link if self.req.original_link + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, 'req', None)) + return ' {} --hash={}:{}'.format(package or 'unknown package', + FAVORITE_HASH, + self.gotten_hash) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ('In --require-hashes mode, all requirements must have their ' + 'versions pinned with ==. These do not:') + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + order = 4 + head = ('THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS ' + 'FILE. If you have updated the package versions, please update ' + 'the hashes. Otherwise, examine the package contents carefully; ' + 'someone may have tampered with them.') + + def __init__(self, allowed, gots): + # type: (Dict[str, List[str]], Dict[str, _Hash]) -> None + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self): + # type: () -> str + return ' {}:\n{}'.format(self._requirement_name(), + self._hash_comparison()) + + def _hash_comparison(self): + # type: () -> str + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + def hash_then_or(hash_name): + # type: (str) -> chain[str] + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(' or')) + + lines = [] # type: List[str] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((' Expected {} {}'.format(next(prefix), e)) + for e in expecteds) + lines.append(' Got {}\n'.format( + self.gots[hash_name].hexdigest())) + return '\n'.join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file + """ + + def __init__(self, reason="could not be loaded", fname=None, error=None): + # type: (str, Optional[str], Optional[configparser.Error]) -> None + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self): + # type: () -> str + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..2961667 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb040cfc130badcee3150e2f1451009b72c490ef GIT binary patch literal 218 zcmYe~<>g{vU|^WXFgsm=fq~&Mh=Yt785kHG7#J9eIT#oiQW&BbQW%37G?}WzJ@Zmh zD-<&GN>YmwlS?x5^AwWvQ&PG7G#PKP$H%ASC&$OHWGG@{V1N+6V)Qfeb5r%x%QH(# z453s|YC*ofZ)Qqjv4^j(eokhRenDkPMt+{Lo~3?qW=X1UL1J=tVtQ(^enDn|emvN+ nyu=*+Opx9B@$s2?nI-Y@dIgoYIBatBQ%ZAE?LhAR4DtW~t}{F+ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/collector.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/collector.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2ffd04d92c19580ee9db27505ca66cd214d8521 GIT binary patch literal 15942 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 Z7`Ygk{_t>#a54O60&Nxf$73bH3II{A;e-GH literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d36aa80c478c6d499dfa6bb61cbacd6717ef98f GIT binary patch literal 28096 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/collector.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/collector.py new file mode 100644 index 0000000..c52e009 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,534 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import cgi +import collections +import functools +import html +import itertools +import logging +import os +import re +import urllib.parse +import urllib.request +import xml.etree.ElementTree +from optparse import Values +from typing import ( + Callable, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Union, +) + +from pip._vendor import html5lib, requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import pairwise, redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +logger = logging.getLogger(__name__) + +HTMLElement = xml.etree.ElementTree.Element +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in '+:': + return scheme + return None + + +class _NotHTML(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_html_header(response: Response) -> None: + """Check the Content-Type header to ensure the response contains HTML. + + Raises `_NotHTML` if the content type is not text/html. + """ + content_type = response.headers.get("Content-Type", "") + if not content_type.lower().startswith("text/html"): + raise _NotHTML(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_html_response(url: str, session: PipSession) -> None: + """Send a HEAD request to the URL, and ensure the response contains HTML. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotHTML` if the content type is not text/html. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {'http', 'https'}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_html_header(resp) + + +def _get_html_response(url: str, session: PipSession) -> Response: + """Access an HTML page with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML, to avoid downloading a large file. + Raise `_NotHTTP` if the content type cannot be determined, or + `_NotHTML` if it is not HTML. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got HTML, and raise + `_NotHTML` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_html_response(url, session=session) + + logger.debug('Getting page %s', redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": "text/html", + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is HTML + # or not. However we can check after we've downloaded it. + _ensure_html_header(resp) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers. + """ + if headers and "Content-Type" in headers: + content_type, params = cgi.parse_header(headers["Content-Type"]) + if "charset" in params: + return params['charset'] + return None + + +def _determine_base_url(document: HTMLElement, page_url: str) -> str: + """Determine the HTML document's base URL. + + This looks for a ```` tag in the HTML document. If present, its href + attribute denotes the base URL of anchor tags in the document. If there is + no such tag (or if it does not have a valid href attribute), the HTML + file's URL is used as the base URL. + + :param document: An HTML document representation. The current + implementation expects the result of ``html5lib.parse()``. + :param page_url: The URL of the HTML document. + """ + for base in document.findall(".//base"): + href = base.get("href") + if href is not None: + return href + return page_url + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile('(@|%2F)', re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [''])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return ''.join(cleaned_parts) + + +def _clean_link(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +def _create_link_from_element( + anchor: HTMLElement, + page_url: str, + base_url: str, +) -> Optional[Link]: + """ + Convert an anchor element in a simple repository page to a Link. + """ + href = anchor.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor.get('data-requires-python') + pyrequire = html.unescape(pyrequire) if pyrequire else None + + yanked_reason = anchor.get('data-yanked') + if yanked_reason: + yanked_reason = html.unescape(yanked_reason) + + link = Link( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + ) + + return link + + +class CacheablePageContent: + def __init__(self, page: "HTMLPage") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return (isinstance(other, type(self)) and + self.page.url == other.page.url) + + def __hash__(self) -> int: + return hash(self.page.url) + + +def with_cached_html_pages( + fn: Callable[["HTMLPage"], Iterable[Link]], +) -> Callable[["HTMLPage"], List[Link]]: + """ + Given a function that parses an Iterable[Link] from an HTMLPage, cache the + function's result (keyed by CacheablePageContent), unless the HTMLPage + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "HTMLPage") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_html_pages +def parse_links(page: "HTMLPage") -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + document = html5lib.parse( + page.content, + transport_encoding=page.encoding, + namespaceHTMLElements=False, + ) + + url = page.url + base_url = _determine_base_url(document, url) + for anchor in document.findall(".//a"): + link = _create_link_from_element( + anchor, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +class HTMLPage: + """Represents one page, along with its URL""" + + def __init__( + self, + content: bytes, + encoding: Optional[str], + url: str, + cache_link_parsing: bool = True, + ) -> None: + """ + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + self.content = content + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +def _handle_get_page_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_html_page(response: Response, cache_link_parsing: bool = True) -> HTMLPage: + encoding = _get_encoding_from_headers(response.headers) + return HTMLPage( + response.content, + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing) + + +def _get_html_page( + link: Link, session: Optional[PipSession] = None +) -> Optional["HTMLPage"]: + if session is None: + raise TypeError( + "_get_html_page() missing 1 required keyword argument: 'session'" + ) + + url = link.url.split('#', 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning('Cannot look at %s URL %s because it does not support ' + 'lookup as web pages.', vcs_scheme, link) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if (scheme == 'file' and os.path.isdir(urllib.request.url2pathname(path))): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith('/'): + url += '/' + url = urllib.parse.urljoin(url, 'index.html') + logger.debug(' file: URL is directory, getting %s', url) + + try: + resp = _get_html_response(url, session=session) + except _NotHTTP: + logger.warning( + 'Skipping page %s because it looks like an archive, and cannot ' + 'be checked by a HTTP HEAD request.', link, + ) + except _NotHTML as exc: + logger.warning( + 'Skipping page %s because the %s request got Content-Type: %s.' + 'The only supported Content-Type is text/html', + link, exc.request_desc, exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_page_fail(link, exc) + except RetryError as exc: + _handle_get_page_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_page_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_page_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_page_fail(link, "timed out") + else: + return _make_html_page(resp, + cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, session: PipSession, + options: Values, + suppress_no_index: bool = False + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + 'Ignoring indexes: %s', + ','.join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, index_urls=index_urls, + ) + link_collector = LinkCollector( + session=session, search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_page(self, location: Link) -> Optional[HTMLPage]: + """ + Fetch an HTML page containing package links. + """ + return _get_html_page(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/package_finder.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..3962958 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,982 @@ +"""Routines related to PyPI, indexes""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import itertools +import logging +import re +from typing import FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS +from pip._internal.utils.urls import url_to_path + +__all__ = ['FormatControl', 'BestCandidateResult', 'PackageFinder'] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = ( + Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] +) + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, link, + ) + else: + if not is_compatible: + version = '.'.join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + 'Link requires a different Python (%s not in: %r): %s', + version, link.requires_python, link, + ) + return False + + logger.debug( + 'Ignoring failed Requires-Python check (%s not in: %r) ' + 'for link: %s', + version, link.requires_python, link, + ) + + return True + + +class LinkEvaluator: + + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r'-py([123]\.?[0-9]?)$') + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[bool, Optional[str]]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (is_candidate, result), where `result` is (1) a + version string if `is_candidate` is True, and (2) if + `is_candidate` is False, an optional string to log the reason + the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or '' + return (False, f'yanked for reason: {reason}') + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (False, 'not a file') + if ext not in SUPPORTED_EXTENSIONS: + return (False, f'unsupported archive format: {ext}') + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = 'No binaries permitted for {}'.format( + self.project_name) + return (False, reason) + if "macosx10" in link.path and ext == '.zip': + return (False, 'macosx10 one') + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return (False, 'invalid wheel filename') + if canonicalize_name(wheel.name) != self._canonical_name: + reason = 'wrong project name (not {})'.format( + self.project_name) + return (False, reason) + + supported_tags = self._target_python.get_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = wheel.get_formatted_file_tags() + reason = ( + "none of the wheel's tags ({}) are compatible " + "(run pip debug --verbose to show compatible tags)".format( + ', '.join(file_tags) + ) + ) + return (False, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f'No sources permitted for {self.project_name}' + return (False, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, self._canonical_name, + ) + if not version: + reason = f'Missing project version for {self.project_name}' + return (False, reason) + + match = self._py_version_re.search(version) + if match: + version = version[:match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return (False, 'Python version is incorrect') + + supports_python = _check_link_requires_python( + link, version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + # Return None for the reason text to suppress calling + # _log_skipped_link(). + return (False, None) + + logger.debug('Found link %s, version: %s', link, version) + + return (True, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Hashes, + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + 'Given no hashes to check %s links for project %r: ' + 'discarding no candidates', + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = 'discarding no candidates' + else: + discard_message = 'discarding {} non-matches:\n {}'.format( + len(non_matches), + '\n '.join(str(candidate.link) for candidate in non_matches) + ) + + logger.debug( + 'Checked %s links for project %r against %s hashes ' + '(%s matches, %s no digest): %s', + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message + ) + + return filtered + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + ) -> None: + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates. + """ + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates. + """ + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + versions = { + str(v) for v in specifier.filter( + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [ + c for c in candidates if str(c.version) in versions + ] + + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -(wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + )) + except ValueError: + raise UnsupportedWheel( + "{} is not a supported wheel for this platform. It " + "can't be sorted.".format(wheel.filename) + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r'^(\d+)(.*)$', wheel.build_tag) + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, yank_value, binary_preference, candidate.version, + pri, build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Link] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, reason: str) -> None: + if link not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug('Skipping link: %s: %s', reason, link) + self._logged_links.add(link) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + is_candidate, result = link_evaluator.evaluate_link(link) + if not is_candidate: + if result: + self._log_skipped_link(link, reason=result) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=result, + ) + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + 'Fetching project page and analyzing links: %s', project_url, + ) + html_page = self._link_collector.fetch_page(project_url) + if html_page is None: + return [] + + page_links = list(parse_links(html_page)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [url_to_path(c.link.url) for c in file_candidates] + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use. + """ + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, specifier=req.specifier, hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = parse_version(req.satisfied_by.version) + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ", ".join(sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + )) or "none" + + if installed_version is None and best_candidate is None: + logger.critical( + 'Could not find a version that satisfies the requirement %s ' + '(from versions: %s)', + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound( + 'No matching distribution found for {}'.format( + req) + ) + + best_installed = False + if installed_version and ( + best_candidate is None or + best_candidate.version <= installed_version): + best_installed = True + + if not upgrade and installed_version is not None: + if best_installed: + logger.debug( + 'Existing installed version (%s) is most up-to-date and ' + 'satisfies requirement', + installed_version, + ) + else: + logger.debug( + 'Existing installed version (%s) satisfies requirement ' + '(most up-to-date version is %s)', + installed_version, + best_candidate.version, + ) + return None + + if best_installed: + # We have an existing version, and its the best version + logger.debug( + 'Installed version (%s) is most up-to-date (past versions: ' + '%s)', + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + logger.debug( + 'Using version %s (newest of versions: %s)', + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/sources.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..56ab238 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,224 @@ +import logging +import mimetypes +import os +import pathlib +from typing import Callable, Iterable, Optional, Tuple + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._path = pathlib.Path(os.path.realpath(path)) + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if not _is_html_file(url): + continue + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if _is_html_file(url): + continue + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, +) -> Tuple[Optional[str], Optional[LinkSource]]: + + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..0b66371 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,351 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Iterator, List, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _distutils, _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_prefixed_libs", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + +if os.environ.get("_PIP_LOCATIONS_NO_WARN_ON_MISMATCH"): + _MISMATCH_LEVEL = logging.DEBUG +else: + _MISMATCH_LEVEL = logging.WARNING + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Iterator[str]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags: str = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in + # the "pythonX.Y" part of the path, but distutils does. + skip_sysconfig_abiflag_bug = ( + sys.version_info < (3, 8) + and not WINDOWS + and k in ("headers", "platlib", "purelib") + and tuple(_fix_abiflags(old_v.parts)) == new_v.parts + ) + if skip_sysconfig_abiflag_bug: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621", + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + old = _distutils.get_bin_prefix() + new = _sysconfig.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + old = _distutils.get_purelib() + new = _sysconfig.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + old = _distutils.get_platlib() + new = _sysconfig.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old + + +def get_prefixed_libs(prefix: str) -> List[str]: + """Return the lib locations under ``prefix``.""" + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + + warned = [ + _warn_if_mismatch( + pathlib.Path(old_pure), + pathlib.Path(new_pure), + key="prefixed-purelib", + ), + _warn_if_mismatch( + pathlib.Path(old_plat), + pathlib.Path(new_plat), + key="prefixed-platlib", + ), + ] + if any(warned): + _log_context(prefix=prefix) + + if old_pure == old_plat: + return [old_pure] + return [old_pure, old_plat] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..727fcbb240374b34dff0b07e9656d19d00cd7603 GIT binary patch literal 8447 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 Yg2;npK=MpKdFuH%_*eu4`MCMG0gvX01^@s6 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19c8d2723af45a7ad3f34f678861730e8257ec1a GIT binary patch literal 4657 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 msdk`TQLMzkz`(`G0fS6Dj6BR-%o5Ce9DD*y%u Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + # Typeshed does not include find_config_files() for some reason. + paths = d.find_config_files() # type: ignore + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update(dict(purelib=i.install_lib, platlib=i.install_lib)) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase # type: ignore + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) + + +def get_prefixed_libs(prefix: str) -> Tuple[str, str]: + return ( + get_python_lib(plat_specific=False, prefix=prefix), + get_python_lib(plat_specific=True, prefix=prefix), + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..1c95aa3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,219 @@ +import distutils.util # FIXME: For change_root. +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + for key in SCHEME_KEYS: + value = distutils.util.change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] + + +def get_prefixed_libs(prefix: str) -> typing.Tuple[str, str]: + paths = sysconfig.get_paths(vars={"base": prefix, "platbase": prefix}) + return (paths["purelib"], paths["platlib"]) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/base.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..4a65db2 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,52 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: typing.Optional[str] = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/main.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..8f53286 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/main.py @@ -0,0 +1,13 @@ +from typing import List, Optional + + +def main(args=None): + # type: (Optional[List[str]]) -> int + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..0cfe9ad --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,48 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "get_default_environment", + "get_environment", + "get_wheel_distribution", +] + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + from .pkg_resources import Environment + + return Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + from .pkg_resources import Environment + + return Environment.from_paths(paths) + + +def get_wheel_distribution(wheel_path: str, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + from .pkg_resources import Distribution + + return Distribution.from_wheel(wheel_path, canonical_name) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77f7273cf2d6fd01548b44a9bc8b8d4898f712c4 GIT binary patch literal 1839 zcmYe~<>g{vU|^WXFgrbhje+4Yh=Yt-7#J8F7#J9eQy3T+QW#Pga~N_NqZo6UqL>&N zQkYVhbC`2kqF8cSqgWXk(iu`%7BNP#rLv~5&S6YpOJQ$eiDFM>N@YytkYtc#NM%jo zn8TF9nZnh=62+Oyk;;+ElEOWQIfW;Mw}mB&D}^tZL6iR_$bL%$5=9Or&7O^rgFch&d zFfiN_Pfsn0Pf1NnEX^s2PemxY#SfA|77zmolxL)-=ESEU8L!EBi>)ZNq_ik68RRe+ z2Dyfbfq}sp6gVQFz+p^b0tHSj10zEX!vdy-48aVV%!!+9Uj&v;E-flb%_~tra+Dqymx6+VLP$ntu>!;q#R`de3P_$+$jmD) zNz6-5RY)t!&xM$ikzbser;wDGoSmANqNfmouo`R{R^7!J`K3823Q4I7Nu`-NB@ojR z5{fH}^$HS8G7=IL67y0NauX{RN{dq!k`t3NGV{{G#+BqN6lWwBr6OEXT#{Ils*sqR zoL^L2tdN|TlT)k*R$2r~PAeI2aU(fFllc~JL3Vn4QEG91X;E@&aS;zF-q@jmRm9D} zz_5~`h@XLh;a9wVMt*LpetLOkNr@qp3Q8@=*Z0j#Ni6p8_0`YGOwuo?EXl~vGuE@z zFU~AU)h$R&&Q45EE!Ho{EYOe7%qvMP%1g}A&rK~!Oi3(B)Q^wP%*!l^kJl@xEMjM1 zVBiDAD9E7<>^w|h5lyCBte`+BE&^qiWKh(@k^v|QFvF687;-XTWMrseT) zJ+mw|Pa!k6Ait^2q6Fx<6vN5kV1(=kccMpEiOpr1{rXRFF7$UKQA*mF(*DRF*g+wv7pF= zMJy;%L5TpIza@|(mWh#}h6xn0HH-_Hz){NwjapD1hldFyZ$l#&5uso=s28Jzi2^Jw zVvS)1wGG$0#QQ1A`hoMmczxia;WMn%uY8N-7I7^U{kzF;@hN zvRf>m6pmE>v&Y9L=H$f3gER6i=Hil~B2aPwn}B2w+_GC7Ho5sJr8%i~pln_Y%J2eA M0!$p7d^{370JVn&n*aa+ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/base.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/__pycache__/base.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b55271a17c6cad63e8556a92d41f2762451a03f9 GIT binary patch literal 9452 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 str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +class BaseDistribution(Protocol): + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def info_directory(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def canonical_name(self) -> "NormalizedName": + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + raise NotImplementedError() + + @property + def editable(self) -> bool: + raise NotImplementedError() + + @property + def local(self) -> bool: + raise NotImplementedError() + + @property + def in_usersite(self) -> bool: + raise NotImplementedError() + + @property + def in_site_packages(self) -> bool: + raise NotImplementedError() + + def read_text(self, name: str) -> str: + """Read a file in the .dist-info (or .egg-info) directory. + + Should raise ``FileNotFoundError`` if ``name`` does not exist in the + metadata directory. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + @property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO.""" + raise NotImplementedError() + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does not, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + raise NotImplementedError() + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions.""" + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..3c9bfe3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,153 @@ +import email.message +import logging +import zipfile +from typing import ( + TYPE_CHECKING, + Collection, + Iterable, + Iterator, + List, + NamedTuple, + Optional, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.utils import misc # TODO: Move definition here. +from pip._internal.utils.packaging import get_installer, get_metadata +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + +from .base import BaseDistribution, BaseEntryPoint, BaseEnvironment, DistributionVersion + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +logger = logging.getLogger(__name__) + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_wheel(cls, path: str, name: str) -> "Distribution": + with zipfile.ZipFile(path, allowZip64=True) as zf: + dist = pkg_resources_distribution_for_wheel(zf, name, path) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def info_directory(self) -> Optional[str]: + return self._dist.egg_info + + @property + def canonical_name(self) -> "NormalizedName": + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + @property + def installer(self) -> str: + return get_installer(self._dist) + + @property + def editable(self) -> bool: + return misc.dist_is_editable(self._dist) + + @property + def local(self) -> bool: + return misc.dist_is_local(self._dist) + + @property + def in_usersite(self) -> bool: + return misc.dist_in_usersite(self._dist) + + @property + def in_site_packages(self) -> bool: + return misc.dist_in_site_packages(self._dist) + + def read_text(self, name: str) -> str: + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + return self._dist.get_metadata(name) + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + @property + def metadata(self) -> email.message.Message: + return get_metadata(self._dist) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(extras).intersection(self._dist.extras) + return self._dist.requires(extras) + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..4d49ccd --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24302b322a95c3b36a16833313cac726a60eb9a7 GIT binary patch literal 252 zcmYe~<>g{vU|^WXFgx9mfq~&Mh=Yt785kHG7#J9eIT#oiQW&BbQW%37G?}U_92E)@ zld}`kQx!@w5=#`4^Ycm)GxLfSa`RJCbBZB?MX3cvsl};zB?_r|C7C6esl|F+ewvK8 z*yH0<@{{A^S27eaF)%=gU$Ocb`MIh3>E)RvC5BKcD77G8-#0TQvDm}cS3f5+Nxz`7 zBqKl1SkF?wII|>G7wU#${esK_{rJqhlGLKS#2kHyBlP3rGxIV_;^XxSDsOSvg{vU|^WXFgyJsGXuk85C<8vFfcGUFfcF_TQD#%q%fo~<}lWot6t67f#0bV@8vO>xf8El4a%_06ov%u5ETM#ijAPH_MO14Al96k`fQ6jKUg z6mvR53ezISD3(;#RMu3s6y_9`IV|lAX^bhXDQqn~QS7O#DeQ9?Q#evMTUeqvpggV= z?iQ9P&UOYChA6IJ22Gw@qMmuhC5bsXi6xo&dCrM>DVZsWC8<@GL8%2rsl};zCB+Jf z3I+Kksd*)ti8%^N$uK2K3TgR83Ykc{^|%xi6cjX>Z?WVh=BD0aFH0>d&dkrd#gdbm zm+hy?QpCo=^Zz`#($Si=y{P{LTl z)C^)V)iBpE#50$$G&5we)-Yr-)G%Z*)i7i+r!kkXr7-q_qbHa_lgUq$=@xT#YUM4y zl+?7$yv)4x_~e|#;$ls9urqG)f}
  • P942u@;vWq!!)ch>y?A%PfhHF9OAYCd)0B z;?$fpuwI1Xm5jGI<00n8$FF4g6{nw(pPQdO^>Z?l z^b0CWGV=3`^(^&^GfPr+3lfvF6Vp?R^$Ri!^y4%0N>YpR5_9x(^HWlDiuK{)tyfT4 z#K*wEzzYf)5QBk{jggCyjfstskCEwLl^oWH)Ps3Lld*`Cfq@~J5f;)63=AMP$al^l zBSk=|oN)mtKpA0yx{w(hlvSEGSPj>xRxGO3Q9zKIb}LzKv8Ck~%L=Qu2%R zAPF!tFI^8B97RkZgLpu8NrDx^5~Us_QR;y*G}vjkq)_EcOEPncp{j~N`50^?k`ux1 Z1Uc~*hYchw>_Dlo7!>n7OgxM{%m5qCXV?G$ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac87897c732bc178ce459c387411a540f16b1d17 GIT binary patch literal 7047 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/index.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/index.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ba22f5e78b6484eed11d9bdd54ac3bcfc58f96a GIT binary patch literal 1231 zcmYe~<>g{vU|^WXFgx9eg@NHQh=Yt-7#J8F7#J9ejTjghQW#Pga~Pr+-5FAtQkYv9 zQka{WqL@;dQdm-0Q`mZ$qL@>eQrJ^Cz-*Qj#$X0b&X*w5{E|T=G6tCo;ukwHFfgPt zL@}l?L@}i>Mlq)|q%bXFjABV;O=V4CPGOnD+|H232r|EgCyEU$%07oFg(HQtg(Zr; zoq>fRiX)golj{~wKw@%sVtT4)UP@|3m3vTXK~ZXPYFmoS9mrkeHmDT3oD9lCO}Omr{_QnO9QGrJ$gopviiRxwI(f7F%9wNlt$9 zEw19s+=86cc#s%JL1jTEm?fN+nUfk{T#{dun4TJ+lAoKHndhg;T*S=4z)-}_z`$^e ztthpmv?wnbBm(j`2!q%#3=W49hGvEZj0+hU8EP177~+{qn6p?Gu+}gxWXxi#VTfm| zVOYSP!nhD5#{p(Df!UljOf?MgTqz8}44TY-x7Z*~yu|`?o+kG#*5cBF)S_D)@$s2? znI-Y@U{~E@D=o^&$xOP%T98;&oO+9+v?!;zASbh=2oy87ctPHZPs=ZgFGwuOC}IWq zgAGK0Jfq2ci={X6*n2A(Z*j)QC+8#<7sto1WcU@OpOK%Ns-Iq-SyEyMrGiom z^7VZ)Qxc0ke0}wEGL!TRDoZl*^NjT@^@}r0QgsU;@mH*0kXfJ~pP5&ZT9lWVqo13f zlA2Sjp9zXqy@JXj9tH*mZcvH@F&G%R7}*#F7v%Y3V0|6u|d9d2AL+nz`#(#kj1!wsfHnoxrT8eQ!s-jqn{>A5iiK!e4t2VFD=T+ z%FoOLdt8&LNDw3=1|me@geZswGE5v~D#!{3#wsaPmz5Ufz{6IP6BILfiMgrq@wd3* z<8$*OHxxn5}J(QIIj|e=_pApF4041lLqm1ap+~e#RExrdf;>i30#l^Zm|SZ t26*1$2uUq20kM$W5B3Sj{kJ%5Ai-nD2nt+KoNzGni8C>>{AXhZkpR>1KEwb3 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/link.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/link.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cca937d7e66350e7844266c506944e5bbbb6bbc0 GIT binary patch literal 10312 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f23ba020b126ee819c4ea4a7e57f6c0959a160c GIT binary patch literal 3471 zcmYe~<>g{vU|^WXFgyK+AOpi=5C<7EGcYhXFfcF_w=gg;q%fo~<}gG-XvQc;FrO)k z2~0CbF@tHADAp8)6s8=uT=pn-Mvz+O9FAPhC{8e&C5J1QJBl03X3gQr<&EM6v)OX^ za`~h9a|NOV7#UI-7YL>bEo6)mc4tUoPvK}`Na1K^iV{g-3}(>ed3Wig2{<_`FWYii8+~7squMQxl7lGlG-z3sS4xxD*r=6kPL?6AOw< za}rBZixo;TQWbLYlM_oa^YcKw#1e&q%mRhXVuj@VytK^p(xTK9g_3-QVz4oKU;}P( zrDf)&#OGw@Wf$M#%FIhitpNGHSd+PklYxPu2$U*ru@$A3losVBgAxHONZ1(|7+4q> z7@R?gqKSclA)TR?xrWh&A=aRlrG{kzLki-tTikP85tQ0IZD`?8H&qF*cWirFx4hPj3*g{7A%m_d`ZDiG``P{=qJr6!i7DkLf(1)4&B zQdVkmi9%vpNotV-EEQztrGtYm0TB`jkiY?%^NX?W7HdXHNkMT{CT3`sXO?83hj~$I zVQFSjszQiQuzql`kB&k{etBwHY7y9y;^G{I-29Z%oK%I(JcWSDl8pR3Pz>eemnbBb zC1&O%Cgr5+tz<%kz9#=IuHur!qLN~eWkqZZ3=FrJ@{4b=fYUBpYDH#oN%1YV#Dap< zyp$qPD!s*-S&~{*lAoVbe2XqTMgdM{PgtHqFe0ciA8ytdFh($x0sW2iV@DZC6H8_nNt#v2&7vqpj2~Gw;(Y&J25@ASic~%KtDb+uOzi7FEK|yH$Npcr&u47a^s7W^9xe-3My~0C4*yG z5|jqjKq-@tg^`1ii;;tohmnPmhlPz%fRTrhi;;zq=|2lA8xs>F6C=~VDj}pap$9R- z4<&Jf5;_wsaSJdoFw`*CFvK&|Fx4=`Go~;EGpuCvE8=5dV9;c~#ZsJ_lZFT zax4%zaKQ!^cVTD-s{-Z86!rzYHH-^E#WROrl~qUvD3zzARw$Gf5o> zD`e)CCFW$N=qMEAq$U=pDijpumu04aaw{Y`>Q#yP4qI10zEr6DSsoR6tS4SOhA| zRx;gU(lfZlTw0U^i9JvnE&@j(r%iflUTQ@_kzFdtJdoimj8$gHF_@lO5}yXDRZ2=y zQ{v%;u$~QwnNw`12RGstBbO#WxL7R$C5BsE#hJMUIjNvR7wnEAkaLT~!AYmID5tm} zC$ppol)!JX<)xP71{VFF3N3W<3sa8pW)Qx!@wGK)d^0%Ar92PLvFhDBY64nk#_GGGMtYKWh2C9^cwQ3ks7{wVtBEbxr zOn$!@^)=aVaTeqkXI6kJl_CRB;zFcD*22>KlGGwlK;Pm>%}W7SL{RtKV$R7=)?_R) z18G5I8NS?XQ1BE~7G#3bTOlZ&fXYh-P*Kdt_m71GR7h9Zpr-^xkYme4sD@(Xcu;Bp zhk^*Wn5Ad#avuc1kUW5OyE3;2q#UZBCzG)fCCpZ5}-_mEda7Wp$GCD1G@-sl?pM= z(d4}zQ`1o6#@$tnu`6b2i z@wd2>a}tY-b5lz)@>7aHiL1yS6iCV-0#wHqnSxlLz5pa7!I2IoK)xsf)m4HZ2ZM?! z4ki{B4kjjMHbyo^rayd|5SoXBPZ6w6Q?v*aRkzqdjgQQ{^deAITVw$$ns^`$7Cms2 z0$e8EVk@aE04V~w>6UasW`SOOS!!NNevuxe(U6&!u2));nNti&sZwASuoi?Kqy+)V z(~y!EO#xV|9w_b;OCZfC2~-mx3UV`xlfjKJaA|#uGd;D$2i$Zj0#)#k!Wk3>*aGJk fhYchm>_8c~7?i^}7-5iyiHC`Yk%v)$iHjKkm4%w5 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07134a014a6d938287c6386dd3fb7fdc72136d5c GIT binary patch literal 1654 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 None: + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate + ) + + def __repr__(self) -> str: + return "".format( + self.name, self.version, self.link, + ) + + def __str__(self) -> str: + return '{!r} candidate (version {} at {})'.format( + self.name, self.version, self.link, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/direct_url.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..5bef2c5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,220 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + "{!r} has unexpected type for {} (expected {})".format( + value, key, expected_type + ) + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs: str, + commit_id: str, + requested_revision: Optional[str] = None, + resolved_revision: Optional[str] = None, + resolved_revision_type: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + self.resolved_revision = resolved_revision + self.resolved_revision_type = resolved_revision_type + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + resolved_revision=_get(d, str, "resolved_revision"), + resolved_revision_type=_get(d, str, "resolved_revision_type"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + resolved_revision=self.resolved_revision, + resolved_revision_type=self.resolved_revision_type, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + ) -> None: + self.hash = hash + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable: bool = False, + ) -> None: + self.editable = editable + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls( + editable=_get_required(d, bool, "editable", default=False) + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +class DirectUrl: + + def __init__( + self, + url: str, + info: InfoType, + subdirectory: Optional[str] = None, + ) -> None: + self.url = url + self.info = info + self.subdirectory = subdirectory + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) and + self.info.vcs == "git" and + user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/format_control.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..2523f59 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,84 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed. + """ + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all( + getattr(self, k) == getattr(other, k) + for k in self.__slots__ + ) + + def __repr__(self) -> str: + return "{}({}, {})".format( + self.__class__.__name__, + self.no_binary, + self.only_binary + ) + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith('-'): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(',') + while ':all:' in new: + other.clear() + target.clear() + target.add(':all:') + del new[:new.index(':all:') + 1] + # Without a none, we want to discard everything as :all: covers it + if ':none:' not in new: + return + for name in new: + if name == ':none:': + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard('source') + elif canonical_name in self.no_binary: + result.discard('binary') + elif ':all:' in self.only_binary: + result.discard('source') + elif ':all:' in self.no_binary: + result.discard('binary') + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ':all:', self.no_binary, self.only_binary, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/index.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b179806 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/index.py @@ -0,0 +1,32 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints + """ + + __slots__ = ['url', 'netloc', 'simple_url', 'pypi_url', + 'file_storage_domain'] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path('simple') + self.pypi_url = self._url_for_path('pypi') + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex( + 'https://pypi.org/', file_storage_domain='files.pythonhosted.org' +) +TestPyPI = PackageIndex( + 'https://test.pypi.org/', file_storage_domain='test-files.pythonhosted.org' +) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/link.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..e76f0db --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/link.py @@ -0,0 +1,288 @@ +import functools +import logging +import os +import posixpath +import re +import urllib.parse +from typing import TYPE_CHECKING, Dict, List, NamedTuple, Optional, Tuple, Union + +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.models import KeyBasedCompareMixin +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import HTMLPage + +logger = logging.getLogger(__name__) + + +_SUPPORTED_HASHES = ("sha1", "sha224", "sha384", "sha256", "sha512", "md5") + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL + """ + + __slots__ = [ + "_parsed_url", + "_url", + "comes_from", + "requires_python", + "yanked_reason", + "cache_link_parsing", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "HTMLPage"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + cache_link_parsing: bool = True, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of HTMLPage where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link + should be cached. PyPI index urls should + generally have this set to False, for + example. + """ + + # url can be a UNC windows share + if url.startswith('\\\\'): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + if self.requires_python: + rp = f' (requires-python:{self.requires_python})' + else: + rp = '' + if self.comes_from: + return '{} (from {}){}'.format( + redact_auth_from_url(self._url), self.comes_from, rp) + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f'' + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip('/') + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f'URL {self._url!r} produced no filename' + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip('/'))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, '')) + + _egg_fragment_re = re.compile(r'[#&]egg=([^&]*)') + + @property + def egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _subdirectory_fragment_re = re.compile(r'[#&]subdirectory=([^&]*)') + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _hash_re = re.compile( + r'({choices})=([a-f0-9]+)'.format(choices="|".join(_SUPPORTED_HASHES)) + ) + + @property + def hash(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(2) + return None + + @property + def hash_name(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(1) + return None + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split('#', 1)[0].split('?', 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == 'file' + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return self.hash_name is not None + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed. + """ + if hashes is None or not self.has_hash: + return False + # Assert non-None so mypy knows self.hash_name and self.hash are str. + assert self.hash_name is not None + assert self.hash is not None + + return hashes.is_hash_allowed(self.hash_name, hex_digest=self.hash) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + @classmethod + def from_link(cls, link: Link) -> "_CleanResult": + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return cls( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _CleanResult.from_link(link1) == _CleanResult.from_link(link2) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/scheme.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..47590de --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + + +SCHEME_KEYS = ['platlib', 'purelib', 'headers', 'scripts', 'data'] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib: str, + purelib: str, + headers: str, + scripts: str, + data: str, + ) -> None: + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/search_scope.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..41c0c97 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,126 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith('~'): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == 'https': + logger.warning( + 'pip is configured with locations that require ' + 'TLS/SSL, however the ssl module in Python is not ' + 'available.' + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, ' + 'please provide a scheme.', redacted_index_url) + + redacted_index_urls.append(redacted_index_url) + + lines.append('Looking in indexes: {}'.format( + ', '.join(redacted_index_urls))) + + if self.find_links: + lines.append( + 'Looking in links: {}'.format(', '.join( + redact_auth_from_url(url) for url in self.find_links)) + ) + return '\n'.join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, + urllib.parse.quote(canonicalize_name(project_name))) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith('/'): + loc = loc + '/' + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..c7f8c57 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,46 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = ['allow_yanked', 'allow_all_prereleases', 'format_control', + 'prefer_binary', 'ignore_requires_python'] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/target_python.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..bc33812 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,111 @@ +import sys +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = '.'.join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_tags(). + self._valid_tags: Optional[List[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = '.'.join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ('platforms', self.platforms), + ('version_info', display_version), + ('abis', self.abis), + ('implementation', self.implementation), + ] + return ' '.join( + f'{key}={value!r}' for key, value in key_values + if value is not None + ) + + def get_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..be56462 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,92 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P.+?)-(?P.*?)) + ((-(?P\d[^-]*?))?-(?P.+?)-(?P.+?)-(?P.+?) + \.whl|\.dist-info)$""", + re.VERBOSE + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename( + f"{filename} is not a valid wheel filename." + ) + self.filename = filename + self.name = wheel_info.group('name').replace('_', '-') + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group('ver').replace('_', '-') + self.build_tag = wheel_info.group('build') + self.pyversions = wheel_info.group('pyver').split('.') + self.abis = wheel_info.group('abi').split('.') + self.plats = wheel_info.group('plat').split('.') + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions + for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min(tags.index(tag) for tag in self.file_tags if tag in tags) + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b27b7b8 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2eb1b52f759cccabeb522be069fb69a8c68b11c3 GIT binary patch literal 240 zcmYe~<>g{vU|^WXFgx9Zfq~&Mh=Yt785kHG7#J9eIT#oiQW&BbQW%37G?}Wjo%8cb z5;OCP6$(m=QgbR5@={C6^NX@|i&AqEOHxx5N=q_xGD|X3i}kqtG#PKP$H%ASC&$OH zWGG@{V1N+6;`B4}b5r%x%QH(#453s|YC*ofZ)Qqjv4^j(eokhRenDkPMt+{Lo~3?q zW=X1UL1J=tVtQ(^enDn|etc$LNorAEVvau4e*O6P%)HE!_;|g7%3B;Zx%nxjIjMFa JUwj663jig{MKb^Z literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/auth.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/auth.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7a044ede37b211d61b65c2949b176800cf30e7f GIT binary patch literal 7437 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 Ao&W#< literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/download.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b69bb67d000c9c9c79ef1823b1d917d5920a0f83 GIT binary patch literal 5471 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..68f33e7049e992a7eb47d37112597f64b40b3f2c GIT binary patch literal 8337 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 J3$Ta?0st=050d}@ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/session.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/session.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5364c91744168b5f6c8d38cb8d90acc0f3a627fd GIT binary patch literal 10536 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/utils.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/utils.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc2d7c0679c9ff4758a840ac8f577b059e0adace GIT binary patch literal 1418 zcmYe~<>g{vU|^WXFgx8^fPvvLh=Yt-85kHG7#J9eOBfg!LK#vRQW$d>av7r-bD5%; z7(sld9Ohh>D3)B-C{{3^IfpHmJ&K)?A%!J{HIp%lBb70gGnF%qNs=LzD}~L5A(b_S zJ%wWqQwnDaR|`uNcPdL7V=8MZPbyO?uOveX_Z;RFo)q2|)+oLd_Fx80zLy~PXfoYm zamh?Bxy9jGl3J8ll3%3BbW6zD-!H_~FC^aCBh=43KG-wL^%h4^YH>k+UU8}><1I12 z)ROZ2qHO2 zTSB3EnIMJ>m@|22&IBj3-a}SGgA_aJ$!xjb25|k3o1)8 z^7D-KEcJ^sOHy?U5|gtN(^HG}3o;Az<1_P0Qj78ubM*5dX-U7dBr~U2ub}dlKv805 zacX>8eo;KcfwG{~AO}h!j4X^itW1moj694YOl(Y2Ok)38SU@Bb3kzeBIK=flAlGvx zXO!k;#}{W-r51s5Vlop*KNQ1~Su)7rAO;48Duo(`EQTz`8pagH6sBG#7lv4_TBaJN zFa}13LZNVmJRKH>5~fNYP$FXlB}aw@%r%UlWLCpe>`>?dRjC)rkjG@ekis0ypvh8Y z?4DVcnx~McP?TC&np#{^tN_bGItm3v`DK|YsR|_-sR}8HC5Z}P=N9X^X)@m8gG5<; za(-S(YF>$-Cd)16qQvrBY{ex-sfoF__#8`0iZYW*OHv`x$WoM=n4-yC1oC&01jzHO zVAH@+1tG*hqWrKF6AzXywgmYeB*VbM#KgwPB+m4LONxh)hna_wg^`J|NFEfN{I}Rj zDho36(u+U=SOf~WDCvUC0=@XM)V!4ZB0ZSr^m6l4Qge!nSQr=>ia@2?EeWtPSUl^c zR)ETe%>2A!a55_bDB5yHg=9LujgG>WC1mX`+ u;)Ae2?!LuglbfGXnv-e=Dnp8e7#J9Ym;{)3L?xI7WSRamF|shS{R04=cXO=( literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16f650de4f7e12ad353299b71f89a4a9613a6214 GIT binary patch literal 2039 zcmYe~<>g{vU|^WXFgx9voq^#oh=Yt-7#J8F7#J9e+ZY%aQW&BbQW#U1au}l+!8B78 zGni(HVohO8Va{R8WshRd<%r^71gT@m;mqZV;sUc-bGUPPqIke;wjADEz9>FMhE(>V zloZAk_8gX6{wV%jfhYk+hE&D{f~i6a8KZ>V8B#b>I9nJ}I8#}(M6yJinWMx~n1UHJ zxvG>aa&w9bl5;YX^g@af^NI`di%JwSa|?1(b5rw55=%1k^SEAuyy2(Gbc;76GQc(7 z*~8V@+tbhe7HddpK~AbB<1I12)ROZ2qHO2wgnFYbA#l@NV zd76y31d0+fi&Nv%@{8h&OA<>;i#3^UamIV(7ng)o7Np+djrUC~D$YpE$w^GgNlgaX zij3KzoMJBq28L9ID8>|qD5ey~DCQKNRF+iMRJIi66qY$G?F?y*DXb}MExb|eDZDA{ zsVu1+scfm7DIAgvDV%dyQ@B#NTUevG+8J0FqPT+@H2H1`1!NXPfWrYE230`;Mfqi! zDX9vH3JF-kC;=^y6v{FaK}r$+P2f^cP*BKE%1TWx(F3#H{4`l^ac1VFq*lb27UkSx zFNTE7EuPZi)cBOdlGKvS+|*laMX4pFMS01f1OxRl11kdq12YsCYcVh|lrS_iEMTl* zUdYJEP{NeOynv;KaUo+ZOASjFYYjs@TMbhULp*y5LokCTqn{?nE!N`Fg4Cj09P#m) zd6^~g@weDYi*j-@lWwsVBo-B?-r^`N%7L)hijy-^b5n1z$3qz$@lbbavfg4TPR&Ux z0wwe!ZUzR1A|3_?hA3``mkJV#N{Ux9-r|gpPtHj!E{>01$?z*iKO;XkRX@Evv!uij zN(H4BxprX&`7`1KA90r0NzVCTAz6rxxoMWESYhXXcfp z7Ud=8=;uLFnLZ>s^a?7A_!$@&BtUtJ0~AoqJd8Yy9E?@cn9->R^LG&_6=^aRfi&oW zJd}}NTyl#&BQY-}C$;DnPf==NX=-svd{TZ&#hDCbpil%!UafWkFIllc})N@7XkE%uDm#FW&c;#+LR zB}J);xm9u=At3<@si2Ilpjxa@o{^c8s*s*qQj(dMuAo}1DR_%3vp6%axFj(zIrSEE zaY<2;2q=jNfCxbb28LT)rA0ZVdEiu5BnlE>DabD_DPjXDkOT4gz;f|Lsl^5PdBv%> zn2Qq2i$K}n76)96Ehj%c9h8!ji!w_xlM{1paYM?I_~iVQR86iTF_3Z6AVLO2$bty4 z>7bNeQhbZKv?!-Y0VJvcvXeQrBDqKs#03*lATf4mDgdb})&a#gJ0GJEBM&1JBL^cJ zBNGJvVPgaF_!#*Zxfod(nLsjsSy-#2up~dIftrkNAjAX8hk1#)sqyi*xZ>k;^HWN5 zKy04)_`=e}9H9#KI`R H#KjB%UYacy literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/auth.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..6245f5f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,316 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +import urllib.parse +from typing import Any, Dict, List, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +Credentials = Tuple[str, str, str] + +try: + import keyring +except ImportError: + keyring = None +except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None + + +def get_keyring_auth(url: Optional[str], username: Optional[str]) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + global keyring + if not url or not keyring: + return None + + try: + try: + get_credential = keyring.get_credential + except AttributeError: + pass + else: + logger.debug("Getting credentials from keyring for %s", url) + cred = get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username: + logger.debug("Getting password from keyring for %s", url) + password = keyring.get_password(url, username) + if password: + return username, password + + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None + return None + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, prompting: bool = True, index_urls: Optional[List[str]] = None + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + for u in self.index_urls: + prefix = remove_auth_from_url(u).rstrip("/") + "/" + if url.startswith(prefix): + return u + return None + + def _get_new_credentials( + self, + original_url: str, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + get_keyring_auth(index_url, username) or + get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc + if username is None and password is None: + username, password = self.passwords.get(netloc, (None, None)) + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") + if not username: + return None, None, False + auth = get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if not keyring: + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + # We are not able to prompt the user so simply return the response + if not self.prompting: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Query the keyring for credentials: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = (parsed.netloc, username, password) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert keyring is not None, "should never reach here without keyring" + if not keyring: + return + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + keyring.set_password(*creds) + except Exception: + logger.exception("Failed to save credentials") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/cache.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..a672dbe --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,69 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from typing import Iterator, Optional + +from pip._vendor.cachecontrol.cache import BaseCache +from pip._vendor.cachecontrol.caches import FileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Iterator[None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(BaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = FileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + with open(path, "rb") as f: + return f.read() + + def set(self, key: str, value: bytes) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(value) + + replace(f.name, path) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/download.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..5d3d92a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/download.py @@ -0,0 +1,184 @@ +"""Download files with progress indicators. +""" +import cgi +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.cli.progress_bars import DownloadProgressProvider +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = "{} ({})".format(logged_url, format_size(total_length)) + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + if not show_progress: + return chunks + + return DownloadProgressProvider(progress_bar, max=total_length)(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + _type, params = cgi.parse_header(content_disposition) + filename = params.get("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(filename) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..f29e26d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Iterator, List, Optional, Tuple +from zipfile import BadZipfile, ZipFile + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> Distribution: + """Return a pkg_resources.Distribution from the given wheel URL. + + This uses HTTP range requests to only fetch the potion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as wheel: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + zip_file = ZipFile(wheel) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return pkg_resources_distribution_for_wheel(zip_file, name, wheel.name) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> Optional[bool]: + return self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Iterator[None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipfile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Iterator[Tuple[int, int]]: + """Return an iterator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/session.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..f6a27fb --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/session.py @@ -0,0 +1,454 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +# When mypy runs on Windows the call to distro.linux_distribution() is skipped +# resulting in the failure: +# +# error: unused 'type: ignore' comment +# +# If the upstream module adds typing, this comment should be removed. See +# https://github.com/nir0s/distro/pull/269 +# +# mypy: warn-unused-ignores=False + +import email.utils +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import Any, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Union + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter +from pip._vendor.requests.adapters import BaseAdapter, HTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + # https://github.com/nir0s/distro/pull/269 + linux_distribution = distro.linux_distribution() # type: ignore + distro_infos = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + resp.status_code = 404 + resp.raw = exc + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + host_port = parse_netloc(host) + if host_port not in self.pip_trusted_origins: + self.pip_trusted_origins.append(host_port) + + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not host_port[1]: + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Iterator[SecureOrigin]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host) + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/utils.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..070490d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Iterator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = CONTENT_CHUNK_SIZE +) -> Iterator[bytes]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..d0495f6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,60 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: bytes, + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44672982e34f29a336c878c4ae7475adb9433e73 GIT binary patch literal 188 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 II7B%_0lso7XaE2J literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36c0351b9f4ab12ade8f38a05888604ef4bc1354 GIT binary patch literal 6274 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d5c67a8ad3469855291fc0a8e15e8a7f4f292f0 GIT binary patch literal 14214 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 L?LZFr400#{ycjcJ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2ed7255af8628008cb470f073fffd6f08c0607b GIT binary patch literal 1140 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 S0!%!NJd7f2T+AGz9C842*}{4N literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..2950dd9 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,35 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata(build_env, backend): + # type: (BuildEnvironment, Pep517HookCaller) -> str + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory( + kind="modern-metadata", globally_managed=True + ) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that Pep517HookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing wheel metadata") + with backend.subprocess_runner(runner): + distinfo_dir = backend.prepare_metadata_for_build_wheel( + metadata_dir + ) + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..f2cac8c --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory): + # type: (str) -> str + """Find an .egg-info subdirectory in `directory`. + """ + filenames = [ + f for f in os.listdir(directory) if f.endswith(".egg-info") + ] + + if not filenames: + raise InstallationError( + f"No .egg-info directory found in {directory}" + ) + + if len(filenames) > 1: + raise InstallationError( + "More than one .egg-info directory found in {}".format( + directory + ) + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env, # type: BuildEnvironment + setup_py_path, # type: str + source_dir, # type: str + isolated, # type: bool + details, # type: str +): + # type: (...) -> str + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + 'Running setup.py (path:%s) egg_info for package %s', + setup_py_path, details, + ) + + egg_info_dir = TempDirectory( + kind="pip-egg-info", globally_managed=True + ).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + call_subprocess( + args, + cwd=source_dir, + command_desc='python setup.py egg_info', + ) + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..57c6e24 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,38 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name, # type: str + backend, # type: Pep517HookCaller + metadata_directory, # type: str + tempd, # type: str +): + # type: (...) -> Optional[str] + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug('Destination directory: %s', tempd) + + runner = runner_with_spinner_message( + f'Building wheel for {name} (PEP 517)' + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error('Failed building wheel for %s', name) + return None + return os.path.join(tempd, wheel_name) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..314d002 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,110 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import ( + LOG_DIVIDER, + call_subprocess, + format_command_args, +) + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> str + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f'Command arguments: {command_desc}\n' + + if not command_output: + text += 'Command output: None' + elif logger.getEffectiveLevel() > logging.DEBUG: + text += 'Command output: [use --verbose to show]' + else: + if not command_output.endswith('\n'): + command_output += '\n' + text += f'Command output:\n{command_output}{LOG_DIVIDER}' + + return text + + +def get_legacy_build_wheel_path( + names, # type: List[str] + temp_dir, # type: str + name, # type: str + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> Optional[str] + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = ( + 'Legacy build of wheel for {!r} created no files.\n' + ).format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + 'Legacy build of wheel for {!r} created more than one file.\n' + 'Filenames (choosing first): {}\n' + ).format(name, names) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name, # type: str + setup_py_path, # type: str + source_dir, # type: str + global_options, # type: List[str] + build_options, # type: List[str] + tempd, # type: str +): + # type: (...) -> Optional[str] + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f'Building wheel for {name} (setup.py)' + with open_spinner(spin_message) as spinner: + logger.debug('Destination directory: %s', tempd) + + try: + output = call_subprocess( + wheel_args, + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error('Failed building wheel for %s', name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/check.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..2fd2550 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,153 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import TYPE_CHECKING, Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.req.req_install import InstallRequirement + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: DistributionVersion + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict['NormalizedName', PackageDetails] +Missing = Tuple['NormalizedName', Requirement] +Conflicting = Tuple['NormalizedName', DistributionVersion, Requirement] + +MissingDict = Dict['NormalizedName', List[Missing]] +ConflictingDict = Dict['NormalizedName', List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing requirements for %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set(package_set, should_ignore=None): + # type: (PackageSet, Optional[Callable[[str], bool]]) -> CheckResult + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps = set() # type: Set[Missing] + conflicting_deps = set() # type: Set[Conflicting] + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate() + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install): + # type: (List[InstallRequirement]) -> ConflictDetails + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ) + ) + + +def _simulate_installation_of(to_install, package_set): + # type: (List[InstallRequirement], PackageSet) -> Set[NormalizedName] + """Computes the version of packages after installing to_install. + """ + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_pkg_resources_distribution() + + assert dist is not None + name = canonicalize_name(dist.project_name) + package_set[name] = PackageDetails(dist.parsed_version, dist.requires()) + + installed.add(name) + + return installed + + +def _create_whitelist(would_be_installed, package_set): + # type: (Set[NormalizedName], PackageSet) -> Set[NormalizedName] + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/freeze.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..71a7b4a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,277 @@ +import collections +import logging +import os +from typing import ( + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Set, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: Optional[str] + editable: bool + comments: List[str] + + +def freeze( + requirement=None, # type: Optional[List[str]] + local_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] + isolated=False, # type: bool + exclude_editable=False, # type: bool + skip=() # type: Container[str] +): + # type: (...) -> Iterator[str] + installations = {} # type: Dict[str, FrozenRequirement] + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options = set() # type: Set[str] + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files = collections.defaultdict(list) # type: Dict[str, List[str]] + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if (not line.strip() or + line.strip().startswith('#') or + line.startswith(( + '-r', '--requirement', + '-f', '--find-links', + '-i', '--index-url', + '--pre', + '--trusted-host', + '--process-dependency-links', + '--extra-index-url', + '--use-feature'))): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith('-e') or line.startswith('--editable'): + if line.startswith('-e'): + line = line[2:].strip() + else: + line = line[len('--editable'):].strip().lstrip('=') + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub('', line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name( + line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub('', line).strip(), + line_req.name + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[ + line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning("Requirement %s included multiple times [%s]", + name, ', '.join(sorted(set(files)))) + + yield( + '## The following requirements were added by ' + 'pip freeze:' + ) + for installation in sorted( + installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + if isinstance(dist.version, Version): + return f"{dist.raw_name}=={dist.version}" + return f"{dist.raw_name}==={dist.version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, editable, comments) for use in + FrozenRequirement.from_dist(). + """ + if not dist.editable: + return _EditableInfo(requirement=None, editable=False, comments=[]) + if dist.location is None: + display = _format_as_name_version(dist) + logger.warning("Editable requirement not found on disk: %s", display) + return _EditableInfo( + requirement=None, + editable=True, + comments=[f"# Editable install not found ({display})"], + ) + + location = os.path.normcase(os.path.abspath(dist.location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', display, + location, + ) + return _EditableInfo( + requirement=location, + editable=True, + comments=[f'# Editable install with no version control ({display})'], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + editable=True, + comments=[f'# Editable {vcs_name} install with no remote ({display})'], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + editable=True, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + + except BadCommand: + logger.warning( + 'cannot determine version of editable source in %s ' + '(%s command not found in path)', + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=None, editable=True, comments=[]) + + except InstallationError as exc: + logger.warning( + "Error when trying to get requirement for VCS system %s, " + "falling back to uneditable format", exc + ) + else: + return _EditableInfo(requirement=req, editable=True, comments=[]) + + logger.warning('Could not determine repository location of %s', location) + + return _EditableInfo( + requirement=None, + editable=False, + comments=['## !! Could not determine repository location'], + ) + + +class FrozenRequirement: + def __init__(self, name, req, editable, comments=()): + # type: (str, Union[str, Requirement], bool, Iterable[str]) -> None + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + # TODO `get_requirement_info` is taking care of editable requirements. + # TODO This should be refactored when we will add detection of + # editable that provide .dist-info metadata. + req, editable, comments = _get_editable_info(dist) + if req is None and not editable: + # if PEP 610 metadata is present, attempt to use it + direct_url = dist.direct_url + if direct_url: + req = direct_url_as_pep440_direct_reference( + direct_url, dist.raw_name + ) + comments = [] + if req is None: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self): + # type: () -> str + req = self.req + if self.editable: + req = f'-e {req}' + return '\n'.join(list(self.comments) + [str(req)]) + '\n' diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..2000b66 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..657153a944a149cd1347f8bf25b6a289d9466211 GIT binary patch literal 252 zcmYe~<>g{vU|^WXFgx9pfq~&Mh=Yt785kHG7#J9eIT#oiQW&BbQW%37G?}V&-13VQ za`RJ4b5e^Hic)hDOHxx5O7ayl^NLFnb8<5C(iI94ld}`kQ;YSu{4^PFvB$@!uYOKul72yDNk)F2v7V)V zab`)XF3ep0g3JQ__{_YL)S|q^9R2)))S|?a%>2A!eW)Y!g{vU|^WXFgtxQD+9x05C<7EGcYhXFfcF_r!g=vq%cG=q%fv13 z=P>0mM=|HJM6u+uMzJ!2|5P0dSA)nvRS;8dEKlj53JmRXdamz$bbqRDuRD>E-8HLoN-CqG@2 z@s><(Vs>gg*!+_G{G8%=s15OnMd`(wjJNoc6LWIni%XNBE=mT6CCF|D1_o{h1_n+B z1_ozP=+!VVFqAMXU`%1GVO_|?$WX#m!&bvs!%)Ls!&Jju!;-?(%U;V>!raWz@4(1V z!_hCp$WX#k!&SqX!raTm$Pmtu!otG9!qCjj$dD&s$WR<$z`zKGkqlU5^N?jzSb`Ze zS*xNwAz`SHs8EoYoSm2s3ROf1=jNxR>M8i<7ndj`7NwVh!lPIru_#rcAhEbuwH(!9LPymW{RQe-Hkn;sJ^Bf(Ska28LTK zd5Iun!Cr|ksEjX2EXlaVky)IdlUS0Pa*Hzwlse*5^U7{Xmga#%EHx#*IKQ+gIW;~d zvnVyWB)_Qg77HjPtYj#XU|?YQRiF=YseXESW=V-5lnP2M$k+GHOi3*E@b%Tt$xPBO zs4U6I&okDu)CYM)7i4l`dTOzLL1uw|d}dxrYEfQdj(&bYY7scK7wbdANgtLO;&Z^6 zL$9FnmH<>P9wrC!S+N2r1q$#mF)^aRpKM$ljBF6Ge??ND;1RmT9v`2QpBx{5iyah< znR)5A*h(r3GV{`lm_Q)~%Kk+xpx_cO$SlxW>4fZPo788||a2uYA5 fIc#$CQ%ZAE?HEB>5~P-eiGxvuiH8vknYfq%X-amn literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d76444e2cff8eee194f1b23841f6bf6e1c6be963 GIT binary patch literal 3456 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..4cb6004 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" +import logging +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + install_options, # type: List[str] + global_options, # type: Sequence[str] + prefix, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool + name, # type: str + setup_py_path, # type: str + isolated, # type: bool + build_env, # type: BuildEnvironment + unpacked_source_directory, # type: str +): + # type: (...) -> None + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info('Running setup.py develop for %s', name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + cwd=unpacked_source_directory, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/legacy.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 0000000..8debaf4 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,132 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +import sys +from distutils.util import change_root +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.models.scheme import Scheme +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir +from pip._internal.utils.setuptools_build import make_setuptools_install_args +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class LegacyInstallFailure(Exception): + def __init__(self): + # type: () -> None + self.parent = sys.exc_info() + + +def write_installed_files_from_setuptools_record( + record_lines: List[str], + root: Optional[str], + req_description: str, +) -> None: + def prepend_root(path): + # type: (str) -> str + if root is None or not os.path.isabs(path): + return path + else: + return change_root(root, path) + + for line in record_lines: + directory = os.path.dirname(line) + if directory.endswith('.egg-info'): + egg_info_dir = prepend_root(directory) + break + else: + message = ( + "{} did not indicate that it installed an " + ".egg-info directory. Only setup.py projects " + "generating .egg-info directories are supported." + ).format(req_description) + raise InstallationError(message) + + new_lines = [] + for line in record_lines: + filename = line.strip() + if os.path.isdir(filename): + filename += os.path.sep + new_lines.append( + os.path.relpath(prepend_root(filename), egg_info_dir) + ) + new_lines.sort() + ensure_dir(egg_info_dir) + inst_files_path = os.path.join(egg_info_dir, 'installed-files.txt') + with open(inst_files_path, 'w') as f: + f.write('\n'.join(new_lines) + '\n') + + +def install( + install_options, # type: List[str] + global_options, # type: Sequence[str] + root, # type: Optional[str] + home, # type: Optional[str] + prefix, # type: Optional[str] + use_user_site, # type: bool + pycompile, # type: bool + scheme, # type: Scheme + setup_py_path, # type: str + isolated, # type: bool + req_name, # type: str + build_env, # type: BuildEnvironment + unpacked_source_directory, # type: str + req_description, # type: str +): + # type: (...) -> bool + + header_dir = scheme.headers + + with TempDirectory(kind="record") as temp_dir: + try: + record_filename = os.path.join(temp_dir.path, 'install-record.txt') + install_args = make_setuptools_install_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + record_filename=record_filename, + root=root, + prefix=prefix, + header_dir=header_dir, + home=home, + use_user_site=use_user_site, + no_user_config=isolated, + pycompile=pycompile, + ) + + runner = runner_with_spinner_message( + f"Running setup.py install for {req_name}" + ) + with indent_log(), build_env: + runner( + cmd=install_args, + cwd=unpacked_source_directory, + ) + + if not os.path.exists(record_filename): + logger.debug('Record file %s not found', record_filename) + # Signal to the caller that we didn't install the new package + return False + + except Exception: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure + + # At this point, we have successfully installed the requirement. + + # We intentionally do not use any encoding to read the file because + # setuptools writes the file using distutils.file_util.write_file, + # which does not specify an encoding. + with open(record_filename) as f: + record_lines = f.read().splitlines() + + write_installed_files_from_setuptools_record(record_lines, root, req_description) + return True diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..e713a19 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,803 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Iterable, + Iterator, + List, + NewType, + Optional, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.six import ensure_str, ensure_text, reraise + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import BaseDistribution, get_wheel_distribution +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + from typing import Protocol + + class File(Protocol): + src_record_path = None # type: RecordPath + dest_path = None # type: str + changed = None # type: bool + + def save(self): + # type: () -> None + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType('RecordPath', str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path, blocksize=1 << 20): + # type: (str, int) -> Tuple[str, str] + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = 'sha256=' + urlsafe_b64encode( + h.digest() + ).decode('latin1').rstrip('=') + return (digest, str(length)) + + +def csv_io_kwargs(mode): + # type: (str) -> Dict[str, Any] + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {'mode': mode, 'newline': '', 'encoding': 'utf-8'} + + +def fix_script(path): + # type: (str) -> bool + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, 'rb') as script: + firstline = script.readline() + if not firstline.startswith(b'#!python'): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b'#!' + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, 'wb') as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata): + # type: (Message) -> bool + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts): + # type: (Sequence[str]) -> Optional[str] + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir = collections.defaultdict(set) # type: Dict[str, Set[str]] + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(i).rstrip(os.sep) for i in + os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append(os.path.normcase(os.path.dirname(sys.executable))) + warn_for = { + parent_dir: scripts for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(parent_dir) not in not_warn_dirs + } # type: Dict[str, Set[str]] + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts = sorted(dir_scripts) # type: List[str] + if len(sorted_scripts) == 1: + start_text = "script {} is".format(sorted_scripts[0]) + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + "The {} installed in '{}' which is not on PATH." + .format(start_text, parent_dir) + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows(outrows): + # type: (Iterable[InstalledCSVRow]) -> List[Tuple[str, str, str]] + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (ensure_str(record_path, encoding='utf-8'), hash_, str(size)) + for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path): + # type: (RecordPath) -> str + return record_path + + +def _fs_to_record_path(path, relative_to=None): + # type: (str, Optional[str]) -> RecordPath + if relative_to is not None: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == \ + os.path.splitdrive(relative_to)[0].lower(): + path = os.path.relpath(path, relative_to) + path = path.replace(os.path.sep, '/') + return cast('RecordPath', path) + + +def _parse_record_path(record_column): + # type: (str) -> RecordPath + p = ensure_text(record_column, encoding='utf-8') + return cast('RecordPath', p) + + +def get_csv_rows_for_installed( + old_csv_rows, # type: List[List[str]] + installed, # type: Dict[RecordPath, RecordPath] + changed, # type: Set[RecordPath] + generated, # type: List[str] + lib_dir, # type: str +): + # type: (...) -> List[InstalledCSVRow] + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows = [] # type: List[InstalledCSVRow] + for row in old_csv_rows: + if len(row) > 3: + logger.warning('RECORD line has more than three elements: %s', row) + old_record_path = _parse_record_path(row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path)) + else: + digest = row[1] if len(row) > 1 else '' + length = row[2] if len(row) > 2 else '' + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + for installed_record_path in installed.values(): + installed_rows.append((installed_record_path, '', '')) + return installed_rows + + +def get_console_script_specs(console): + # type: (Dict[str, str]) -> List[str] + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop('pip', None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append('pip = ' + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append( + 'pip{} = {}'.format(sys.version_info[0], pip_script) + ) + + scripts_to_generate.append( + f'pip{get_major_minor_version()} = {pip_script}' + ) + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r'pip(\d(\.\d)?)?$', k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop('easy_install', None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append( + 'easy_install = ' + easy_install_script + ) + + scripts_to_generate.append( + 'easy_install-{} = {}'.format( + get_major_minor_version(), easy_install_script + ) + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r'easy_install(-\d\.\d)?$', k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap('{} = {}'.format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__(self, src_record_path, dest_path, zip_file): + # type: (RecordPath, str, ZipFile) -> None + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self): + # type: () -> ZipInfo + return self._zip_file.getinfo(self.src_record_path) + + def save(self): + # type: () -> None + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(self.dest_path) + ensure_dir(parent_dir) + + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file): + # type: (File) -> None + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self): + # type: () -> None + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point): + # type: (str) -> None + super().__init__( + "Invalid script entry point: {} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information.".format(entry_point) + ) + + +def _raise_for_invalid_entrypoint(specification): + # type: (str) -> None + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make(self, specification, options=None): + # type: (str, Dict[str, Any]) -> List[str] + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name, # type: str + wheel_zip, # type: ZipFile + wheel_path, # type: str + scheme, # type: Scheme + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> None + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed = {} # type: Dict[RecordPath, RecordPath] + changed = set() # type: Set[RecordPath] + generated = [] # type: List[str] + + def record_installed(srcfile, destfile, modified=False): + # type: (RecordPath, str, bool) -> None + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(_fs_to_record_path(destfile)) + + def all_paths(): + # type: () -> Iterable[RecordPath] + names = wheel_zip.namelist() + # If a flag is set, names may be unicode in Python 2. We convert to + # text explicitly so these are valid for lookup in RECORD. + decoded_names = map(ensure_text, names) + for name in decoded_names: + yield cast("RecordPath", name) + + def is_dir_path(path): + # type: (RecordPath) -> bool + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path, target_path): + # type: (str, str) -> None + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker(zip_file, dest): + # type: (ZipFile, str) -> Callable[[RecordPath], File] + def make_root_scheme_file(record_path): + # type: (RecordPath) -> File + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker(zip_file, scheme): + # type: (ZipFile, Scheme) -> Callable[[RecordPath], File] + scheme_paths = {} + for key in SCHEME_KEYS: + encoded_key = ensure_text(key) + scheme_paths[encoded_key] = ensure_text( + getattr(scheme, key), encoding=sys.getfilesystemencoding() + ) + + def make_data_scheme_file(record_path): + # type: (RecordPath) -> File + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format( + wheel_path, scheme_key, record_path, valid_scheme_keys + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path): + # type: (RecordPath) -> bool + return path.split("/", 1)[0].endswith(".data") + + paths = all_paths() + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition( + is_data_scheme_path, file_paths + ) + + make_root_scheme_file = root_scheme_file_maker( + wheel_zip, + ensure_text(lib_dir, encoding=sys.getfilesystemencoding()), + ) + files = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path): + # type: (RecordPath) -> bool + parts = path.split("/", 2) + return ( + len(parts) > 2 and + parts[0].endswith(".data") and + parts[1] == "scripts" + ) + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution(wheel_path, canonicalize_name(name)) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file): + # type: (File) -> bool + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith('.exe'): + matchname = name[:-4] + elif name.lower().endswith('-script.py'): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return (matchname in console or matchname in gui) + + script_scheme_files = map(make_data_scheme_file, script_scheme_paths) + script_scheme_files = filterfalse( + is_entrypoint_wrapper, script_scheme_files + ) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + for file in files: + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths(): + # type: () -> Iterator[str] + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith('.py'): + continue + yield full_installed_path + + def pyc_output_path(path): + # type: (str) -> str + """Return the path the pyc file would have been written to. + """ + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with captured_stdout() as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings('ignore') + for path in pyc_source_file_paths(): + # Python 2's `compileall.compile_file` requires a str in + # error cases, so we must convert to the native type. + path_arg = ensure_str( + path, encoding=sys.getfilesystemencoding() + ) + success = compileall.compile_file( + path_arg, force=True, quiet=True + ) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {''} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap('{} = {}'.format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend( + maker.make_multiple(gui_scripts_to_generate, {'gui': True}) + ) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path, **kwargs): + # type: (str, **Any) -> Iterator[BinaryIO] + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, 'INSTALLER') + with _generate_file(installer_path) as installer_file: + installer_file.write(b'pip\n') + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, 'REQUESTED') + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text('RECORD') + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, 'RECORD') + + with _generate_file(record_path, **csv_io_kwargs('w')) as record_file: + # The type mypy infers for record_file is different for Python 3 + # (typing.IO[Any]) and Python 2 (typing.BinaryIO). We explicitly + # cast to typing.IO[str] as a workaround. + writer = csv.writer(cast('IO[str]', record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description): + # type: (str) -> Iterator[None] + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(req_description, e.args[0]) + reraise( + InstallationError, InstallationError(message), sys.exc_info()[2] + ) + + +def install_wheel( + name, # type: str + wheel_path, # type: str + scheme, # type: Scheme + req_description, # type: str + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> None + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/prepare.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..73b32c7 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,655 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import mimetypes +import os +import shutil +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filesystem import copy2_fixed +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import display_path, hide_url, is_installable_dir, rmtree +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_prepared_distribution( + req, # type: InstallRequirement + req_tracker, # type: RequirementTracker + finder, # type: PackageFinder + build_isolation, # type: bool +): + # type: (...) -> Distribution + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + with req_tracker.track(req): + abstract_dist.prepare_distribution_metadata(finder, build_isolation) + return abstract_dist.get_pkg_resources_distribution() + + +def unpack_vcs_link(link, location): + # type: (Link, str) -> None + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url)) + + +class File: + + def __init__(self, path, content_type): + # type: (str, Optional[str]) -> None + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +def get_http_url( + link, # type: Link + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> File + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir( + link, download_dir, hashes + ) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def _copy2_ignoring_special_files(src, dest): + # type: (str, str) -> None + """Copying special files is not supported, but as a convenience to users + we skip errors copying them. This supports tools that may create e.g. + socket files in the project source directory. + """ + try: + copy2_fixed(src, dest) + except shutil.SpecialFileError as e: + # SpecialFileError may be raised due to either the source or + # destination. If the destination was the cause then we would actually + # care, but since the destination directory is deleted prior to + # copy we ignore all of them assuming it is caused by the source. + logger.warning( + "Ignoring special file error '%s' encountered copying %s to %s.", + str(e), + src, + dest, + ) + + +def _copy_source_tree(source, target): + # type: (str, str) -> None + target_abspath = os.path.abspath(target) + target_basename = os.path.basename(target_abspath) + target_dirname = os.path.dirname(target_abspath) + + def ignore(d, names): + # type: (str, List[str]) -> List[str] + skipped = [] # type: List[str] + if d == source: + # Pulling in those directories can potentially be very slow, + # exclude the following directories if they appear in the top + # level dir (and only it). + # See discussion at https://github.com/pypa/pip/pull/6770 + skipped += ['.tox', '.nox'] + if os.path.abspath(d) == target_dirname: + # Prevent an infinite recursion if the target is in source. + # This can happen when TMPDIR is set to ${PWD}/... + # and we copy PWD to TMPDIR. + skipped += [target_basename] + return skipped + + shutil.copytree( + source, + target, + ignore=ignore, + symlinks=True, + copy_function=_copy2_ignoring_special_files, + ) + + +def get_file_url( + link, # type: Link + download_dir=None, # type: Optional[str] + hashes=None # type: Optional[Hashes] +): + # type: (...) -> File + """Get file and optionally check its hash. + """ + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir( + link, download_dir, hashes + ) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link, # type: Link + location, # type: str + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> Optional[File] + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location) + return None + + # Once out-of-tree-builds are no longer supported, could potentially + # replace the below condition with `assert not link.is_existing_dir` + # - unpack_url does not need to be called for in-tree-builds. + # + # As further cleanup, _copy_source_tree and accompanying tests can + # be removed. + if link.is_existing_dir(): + deprecated( + "A future pip version will change local packages to be built " + "in-place without first copying to a temporary directory. " + "We recommend you use --use-feature=in-tree-build to test " + "your packages with this new behavior before it becomes the " + "default.\n", + replacement=None, + gone_in="21.3", + issue=7555 + ) + if os.path.isdir(location): + rmtree(location) + _copy_source_tree(link.file_path, location) + return None + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir(link, download_dir, hashes): + # type: (Link, str, Optional[Hashes]) -> Optional[str] + """ Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info('File was already downloaded %s', download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + logger.warning( + 'Previously-downloaded file %s has bad hash. ' + 'Re-downloading.', + download_path + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement + """ + + def __init__( + self, + build_dir, # type: str + download_dir, # type: Optional[str] + src_dir, # type: str + build_isolation, # type: bool + req_tracker, # type: RequirementTracker + session, # type: PipSession + progress_bar, # type: str + finder, # type: PackageFinder + require_hashes, # type: bool + use_user_site, # type: bool + lazy_wheel, # type: bool + in_tree_build, # type: bool + ): + # type: (...) -> None + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.req_tracker = req_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # Memoized downloaded files, as mapping of url: (path, mime type) + self._downloaded = {} # type: Dict[str, Tuple[str, str]] + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req): + # type: (InstallRequirement) -> None + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.original_link_is_in_wheel_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = str(req.req or req) + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.original_link_is_in_wheel_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir(self, req, parallel_builds): + # type: (InstallRequirement, bool) -> None + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir() and self.in_tree_build: + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + + # If a checkout exists, it's unwise to keep going. version + # inconsistencies are logged later, but do not fail the + # installation. + # FIXME: this won't upgrade when there's an existing + # package unpacked in `req.source_dir` + if is_installable_dir(req.source_dir): + raise PreviousBuildDirError( + "pip can't proceed with requirements '{}' due to a" + "pre-existing build directory ({}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again.".format(req, req.source_dir) + ) + + def _get_linked_req_hashes(self, req): + # type: (InstallRequirement) -> Hashes + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if req.original_link is None and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_using_lazy_wheel(self, link): + # type: (Link) -> Optional[Distribution] + """Fetch metadata using lazy wheel, if possible.""" + if not self.use_lazy_wheel: + return None + if self.require_hashes: + logger.debug('Lazy wheel is not used as hash checking is required') + return None + if link.is_file or not link.is_wheel: + logger.debug( + 'Lazy wheel is not used as ' + '%r does not points to a remote wheel', + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + 'Obtaining dependency information from %s %s', + name, wheel.version, + ) + url = link.url.split('#', 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug('%s does not support range requests', url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs, # type: Iterable[InstallRequirement] + parallel_builds=False, # type: bool + ): + # type: (...) -> None + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download = {} # type: Dict[Link, InstallRequirement] + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + req.local_file_path = filepath + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement(self, req, parallel_builds=False): + # type: (InstallRequirement, bool) -> Distribution + """Prepare a requirement to be obtained from req.link.""" + assert req.link + link = req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path, None + else: + # The file is not available, attempt to fetch only metadata + wheel_dist = self._fetch_metadata_using_lazy_wheel(link) + if wheel_dist is not None: + req.needs_more_preparation = True + return wheel_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more(self, reqs, parallel_builds=False): + # type: (Iterable[InstallRequirement], bool) -> None + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path, None + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs = [] # type: List[InstallRequirement] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement(self, req, parallel_builds): + # type: (InstallRequirement, bool) -> Distribution + assert req.link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + hashes = self._get_linked_req_hashes(req) + + if link.is_existing_dir() and self.in_tree_build: + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, req.source_dir, self._download, + self.download_dir, hashes + ) + except NetworkConnectionError as exc: + raise InstallationError( + 'Could not install requirement {} because of HTTP ' + 'error {} for URL {}'.format(req, exc, link) + ) + else: + file_path, content_type = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type) + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, self.req_tracker, self.finder, self.build_isolation, + ) + return dist + + def save_linked_requirement(self, req): + # type: (InstallRequirement) -> None + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + 'Not copying link to destination directory ' + 'since it is a directory: %s', link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info('Saved %s', download_path) + + def prepare_editable_requirement( + self, + req, # type: InstallRequirement + ): + # type: (...) -> Distribution + """Prepare an editable requirement + """ + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info('Obtaining %s', req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + 'The editable requirement {} cannot be installed when ' + 'requiring hashes, because there is no single file to ' + 'hash.'.format(req) + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + + dist = _get_prepared_distribution( + req, self.req_tracker, self.finder, self.build_isolation, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req, # type: InstallRequirement + skip_reason # type: str + ): + # type: (...) -> Distribution + """Prepare an already-installed requirement + """ + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + "is set to {}".format(req.satisfied_by) + ) + logger.info( + 'Requirement %s: %s (%s)', + skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + 'Since it is already installed, we are trusting this ' + 'package without checking its hash. To ensure a ' + 'completely repeatable environment, install into an ' + 'empty virtualenv.' + ) + return InstalledDistribution(req).get_pkg_resources_distribution() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/pyproject.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..b99a21c --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,183 @@ +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import tomli +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import InstallationError + + +def _is_list_of_str(obj): + # type: (Any) -> bool + return ( + isinstance(obj, list) and + all(isinstance(item, str) for item in obj) + ) + + +def make_pyproject_path(unpacked_source_directory): + # type: (str) -> str + return os.path.join(unpacked_source_directory, 'pyproject.toml') + + +BuildSystemDetails = namedtuple('BuildSystemDetails', [ + 'requires', 'backend', 'check', 'backend_path' +]) + + +def load_pyproject_toml( + use_pep517, # type: Optional[bool] + pyproject_toml, # type: str + setup_py, # type: str + req_name # type: str +): + # type: (...) -> Optional[BuildSystemDetails] + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.load(f) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format( + build_system["build-backend"] + ) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file. + elif use_pep517 is None: + use_pep517 = has_pyproject + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0", "wheel"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + error_template = ( + "{package} has a pyproject.toml file that does not comply " + "with PEP 518: {reason}" + ) + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise InstallationError( + error_template.format(package=req_name, reason=( + "it has a 'build-system' table but not " + "'build-system.requires' which is mandatory in the table" + )) + ) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InstallationError(error_template.format( + package=req_name, + reason="'build-system.requires' is not a list of strings.", + )) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement: + raise InstallationError( + error_template.format( + package=req_name, + reason=( + "'build-system.requires' contains an invalid " + "requirement: {!r}".format(requirement) + ), + ) + ) + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check = [] # type: List[str] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend, or wheel + # (which is needed by the backend) in their requirements. So we + # make a note to check that those requirements are present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0", "wheel"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..10cde21 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,94 @@ +import collections +import logging +from typing import Iterator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", "InstallRequirement", + "parse_requirements", "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +class InstallationResult: + def __init__(self, name: str) -> None: + self.name = name + + def __repr__(self) -> str: + return f"InstallationResult(name={self.name!r})" + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Iterator[Tuple[str, InstallRequirement]]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + install_options: List[str], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + 'Installing collected packages: %s', + ', '.join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info('Attempting uninstall: %s', req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall( + auto_confirm=True + ) + else: + uninstalled_pathset = None + + try: + requirement.install( + install_options, + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62037a06d5dbfd0c549b6d2369b51cfb676261a5 GIT binary patch literal 2551 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_file.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_file.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75cae7a868f4674f63789d426f64e86e49d3d6b9 GIT binary patch literal 13361 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%0A)rP$Yi?pmGNe2N7loiH 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 ILnba}0Ohy>E&u=k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a60834459dbf2091c31017ae6b27b70722684b2 GIT binary patch literal 4271 zcmYe~<>g{vU|^WXFgyK*00YBg5C<8vFfcGUFfcF_?_*$KNMT4}%wdRv(2P-xU_Mh6 z6PRX>VoqU5Vaj32WsPEG1gT-pVasKYV$bD>;>hKU;>_iW;>zWY;?CuX;sMLE|DU6Z~DeQBYQaDmL zTUeSIqa?sG94TCq3@O}m7*lvsc){Y5?hGk>DO@cKDO}A=QBo<4!3>)GFF`)@(`3BG z8&Z^*oSKxFoE=hGkgCaci^U}~x#SjyXGv;NVo83{Ee`*JlFaa!yL27Ln3MHzXQW(M*7#YGDYM7zs>4D8-t6{5QDrG2Y0I9TPD9k8ftzj!+Yi26$ z^I~XXtYHI*+b|Sn8zaY<@kNqlZ%QFdz4EuP}UvecCLvc#Oy)Z$w#d5O8Hw>a}s z%ON7S`0|S~(=+oDb0GYc3`H^w3=F?w^)vEwQ}xr!GfPSgp;S<6LB76kW=dkQhp(@G zPG*vRL1jrsex9+OrG9Z{Nvdu^Vsdt3dTOzLL1uw|d}dxrYEfQdj($;UAqdBp6eT8S zrxxiIRNj&*El5c$NsUj~dZ!YIJV#3;bX z!^p?T#l*zO!7RYY!N|eH$H?;=#wwBng@O=LdIKfo?9`%_j77W*3=AkKifubvj8Ix6BlEVE;PnK@^H)wD}|RaFfgPtfJ)vdrc~w>#uTPGOexGMEG;ZiEGY~r ztaBJs*izVASfW@{*;3h4IV2e*8B*CmbShgarzArPV+zL{mK4qut`?Rku2k++<`nKZ zOpsDDiYJvfg)xP14pRz$ia-lX6d#-~m?G4|62+gw2)02uMWlr#N+4A*ODL5$RTx|* zgLH|eh=I#q5pZcM4h||mO{OAH8iyoLCb*9n7(i@L?cxjy4h04Vh8o5ihIob&#%6{Z zhIl4W0!?A8VaNg}H*gYR@~e_`E=o--L5=a$A}dgIv)*EjheS$oYRN5*_|&|TqRiCd zA`J!xh9XdyYckzpDNfBvgSZEj`H>=vBR)PeFS8^*-U{R#Hjq0R*%&z(tE4eAn;uMU z5y;uej3C8O3}VAQB?QiM3mC!PU;^cu8irs7O^`QSK}im)H<%F)F46;~HO3-CkPpz@ z%NY;yU}{l(ygkUlAUhct`53EYusRo#!s9hrZgHemB*&Lj7Np){2eHZ$b8fML7$r%N z7y=sv^$ds&iY0Iify&<+h6M}@89;S(Fhda^*m1YmlXFrN^GXXeSs?B-0XfzbM3{jH zG-q?fgNp5v_;|3HAj28ha0GE`1t>Z|k(QI0mkn_pSOe5`pyCbWLa<3H(4eki%whsn zZwnbg#ak^?32PSH0`?k)ERGtcg-kG4bKYXlNG#3(l>=Ul+;_C8L1U1ndzy;C6F>j9hARWvhp+YAaTSD@w+8RmK6fxQnd4Y)z^Ra6-dDptDC||H zjwvY$iFpc`%`SzKe6&hHk4pgx{HkQDYZWq!6%uobQWH}u6_Qdxl?15HD6vwguD!)r zUd38klBR2+$#{zc9OIdJ=~Xh0DJiKb3aZ6uW~UY@s1|AR6@enV$PpCdEcpegdAC?V zhTjr&%gjmj%P(=uFU?DVG-lY+@{4j4OKx%dLwy%TjSfX6^HfQk`N z)xpD5C56Q+(Bd5<9e|2oP;;{w)FcH}3=r2tdKop~@&^?2AlE~x3MO!Zgt!ljgKn{c zn^AReCoyp`vN2XkU~v*yp{D39j`(;`BR@X=7FT?HZhlH>PHKGoEuQ%J!qUVXhzvMy z6&Zp2Zww+pskaE!<+{b|lvteVT9KRz?&uYPqNm6Lq=XYhfRhQRTZZIlP>2*4;;P-0vyty79+^yVkrg&1`Z|xRz5b6*Vq`De)Dh$un5Qr zaPzUTFltJJ4KD&UKyI;v8l9PW>EP<-7AvU2E(W{t7F$VW0Z0NA{t%17egefJ*keVY z#Cc1yAhSRZ-Z9b3%}+_qDb@q$0FeKpWKrddQVaEpQVZk3ovxgmB9PB-$)Kt!Ey>I& z)+9H3qgBL^c7qXH8TBM+!m%*?_lCdtAm!Uq76QUfgj literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2c90e7ef294752682b496ddf95cde60d3a65a2b GIT binary patch literal 18754 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 e0VWP+2~iDhCPpz$31JCU6(hb3zIujw21Wq Tuple[str, Optional[str]]: + m = re.match(r'^(.+)(\[[^\]]+\])$', path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return Requirement("placeholder" + extras.lower()).extras + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + setup_py = os.path.join(url_no_extras, 'setup.py') + setup_cfg = os.path.join(url_no_extras, 'setup.cfg') + if not os.path.exists(setup_py) and not os.path.exists(setup_cfg): + msg = ( + 'File "setup.py" or "setup.cfg" not found. Directory cannot be ' + 'installed in editable mode: {}' + .format(os.path.abspath(url_no_extras)) + ) + pyproject_path = make_pyproject_path(url_no_extras) + if os.path.isfile(pyproject_path): + msg += ( + '\n(A "pyproject.toml" file was found, but editable ' + 'mode currently requires a setuptools-based build.)' + ) + raise InstallationError(msg) + + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith('file:'): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + Requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f'{version_control}:'): + url = f'{version_control}+{url}' + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f'{editable_req} is not a valid editable requirement. ' + f'It should either be a path to a local project or a VCS URL ' + f'(beginning with {backends}).' + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + return package_name, url, set() + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + msg = "" + if os.path.exists(req): + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + with open(req) as fp: + # parse first line only + next(parse_requirements(fp.read())) + msg += ( + "The argument you provided " + "({}) appears to be a" + " requirements file. If that is the" + " case, use the '-r' flag to install" + " the packages specified within it." + ).format(req) + except RequirementParseError: + logger.debug( + "Cannot parse '%s' as requirements file", req, exc_info=True + ) + else: + msg += f" File '{req}' does not exist." + return msg + + +class RequirementParts: + def __init__( + self, + requirement: Optional[Requirement], + link: Optional[Link], + markers: Optional[Marker], + extras: Set[str], + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = Requirement(name) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + user_supplied: bool = False, +) -> InstallRequirement: + + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split('@', 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + 'Requirement %r looks like a filename, but the ' + 'file does not exist', + name + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = '; ' + else: + marker_sep = ';' + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == 'file' and re.search(r'\.\./', link.url): + link = Link( + path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f'{text} (from {line_source})' + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + req = Requirement(req_as_string) + except InvalidRequirement: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif ('=' in req_as_string and + not any(op in req_as_string for op in operators)): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = '' + msg = with_source( + f'Invalid requirement: {req_as_string!r}' + ) + if add_msg: + msg += f'\nHint: {add_msg}' + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith(']'): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, comes_from, link=parts.link, markers=parts.markers, + use_pep517=use_pep517, isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = Requirement(req_string) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if (req.url and comes_from and comes_from.link and + comes_from.link.netloc in domains_not_allowed): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + "{} depends on {} ".format(comes_from.name, req) + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + options=parsed_req.options, + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + install_options=ireq.install_options, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_file.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..b94379e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,528 @@ +""" +Requirements file parsing +""" + +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import TYPE_CHECKING, Any, Callable, Dict, Iterator, List, Optional, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + from pip._internal.index.package_finder import PackageFinder + +__all__ = ['parse_requirements'] + +ReqFileLines = Iterator[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r'^(http|https|file):', re.I) +COMMENT_RE = re.compile(r'(^|\s+)#.*$') + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r'(?P\$\{(?P[A-Z0-9_]+)\})') + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.install_options, + cmdoptions.global_options, + cmdoptions.hash, +] + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: PipSession, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Iterator[ParsedRequirement]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, + options=options, + finder=finder, + session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + + # preserve for the nested code path + line_comes_from = '{} {} (line {})'.format( + '-c' if line.constraint else '-r', line.filename, line.lineno, + ) + + assert line.is_requirement + + if line.is_editable: + # For editable requirements, we don't support per-requirement + # options, so just return the parsed requirement. + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + ) + else: + if options: + # Disable wheels if the user has specified build options + cmdoptions.check_install_build_global(options, line.opts) + + # get the options that apply to requirements + req_options = {} + for dest in SUPPORTED_OPTIONS_REQ_DEST: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f'line {line.lineno} of {line.filename}' + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional[PipSession] = None, +) -> None: + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled + if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + if opts.index_url: + index_urls = [opts.index_url] + if opts.no_index is True: + index_urls = [] + if opts.extra_index_urls: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f'line {lineno} of {filename}' + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional[PipSession] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: PipSession, + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse(self, filename: str, constraint: bool) -> Iterator[ParsedLine]: + """Parse a given file, yielding parsed lines. + """ + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Iterator[ParsedLine]: + for line in self._parse_file(filename, constraint): + if ( + not line.is_requirement and + (line.opts.requirements or line.opts.constraints) + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file(self, filename: str, constraint: bool) -> Iterator[ParsedLine]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f'Invalid requirement: {line}\n{e.msg}' + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + opts, _ = parser.parse_args(shlex.split(options_str), defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(' ') + args = [] + options = tokens[:] + for token in tokens: + if token.startswith('-') or token.startswith('--'): + break + else: + args.append(token) + options.pop(0) + return ' '.join(args), ' '.join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith('\\') or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = ' ' + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, ''.join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip('\\')) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, ''.join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub('', line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: PipSession) -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = get_url_scheme(url) + + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ['http', 'https', 'file']: + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, 'rb') as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f'Could not open requirements file: {exc}') + return url, content diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_install.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..61e41c3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,846 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import os +import shutil +import sys +import uuid +import zipfile +from typing import Any, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor import pkg_resources, six +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pep517.wrappers import Pep517HookCaller +from pip._vendor.pkg_resources import Distribution + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_scheme +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.legacy import LegacyInstallFailure +from pip._internal.operations.install.legacy import install as install_legacy +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + dist_in_site_packages, + dist_in_usersite, + get_distribution, + hide_url, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_metadata +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_dist(metadata_directory: str) -> Distribution: + """Return a pkg_resources.Distribution for the provided + metadata directory. + """ + dist_dir = metadata_directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + return dist_cls( + base_dir, + project_name=dist_name, + metadata=metadata, + ) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + install_options: Optional[List[str]] = None, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + extras: Iterable[str] = (), + user_supplied: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.legacy_install_reason: Optional[int] = None + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath( + os.path.abspath(link.file_path) + ) + + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + self.original_link_is_in_wheel_cache = False + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = { + pkg_resources.safe_extra(extra) for extra in req.extras + } + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the pkg_resources.Distribution object if this requirement + # is already available: + self.satisfied_by: Optional[Distribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.install_options = install_options if install_options else [] + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[Pep517HookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + def __str__(self) -> str: + if self.req: + s = str(self.req) + if self.link: + s += ' from {}'.format(redact_auth_from_url(self.link.url)) + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = '' + if self.satisfied_by is not None: + s += ' in {}'.format(display_path(self.satisfied_by.location)) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f' (from {comes_from})' + return s + + def __repr__(self) -> str: + return '<{} object: {} editable={!r}>'.format( + self.__class__.__name__, str(self), self.editable) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging. + """ + attributes = vars(self) + names = sorted(attributes) + + state = ( + "{}={!r}".format(attr, attributes[attr]) for attr in sorted(names) + ) + return '<{name} object: {{{state}}}>'.format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return pkg_resources.safe_name(self.req.name) + + @property + def specifier(self) -> SpecifierSet: + return self.req.specifier + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + specifiers = self.specifier + return (len(specifiers) == 1 and + next(iter(specifiers)).operator in {'==', '==='}) + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ('',) + if self.markers is not None: + return any( + self.markers.evaluate({'extra': extra}) + for extra in extras_requested) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + link = self.link if trust_internet else self.original_link + if link and link.hash: + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" + """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += '->' + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug('Creating directory %s', build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata. + """ + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = Requirement( + "".join([ + self.metadata["Name"], + op, + self.metadata["Version"], + ]) + ) + + def warn_on_mismatching_name(self) -> None: + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + 'Generating metadata for package %s ' + 'produced metadata for project name %s. Fix your ' + '#egg=%s fragments.', + self.name, metadata_name, self.name + ) + self.req = Requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_distribution(self.req.name) + if not existing_dist: + return + + # pkg_resouces may contain a different copy of packaging.version from + # pip in if the downstream distributor does a poor job debundling pip. + # We avoid existing_dist.parsed_version and let SpecifierSet.contains + # parses the version instead. + existing_version = existing_dist.version + version_compatible = ( + existing_version is not None and + self.req.specifier.contains(existing_version, prereleases=True) + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if dist_in_usersite(existing_dist): + self.should_reinstall = True + elif (running_under_virtualenv() and + dist_in_site_packages(existing_dist)): + raise InstallationError( + "Will not install to the user site because it will " + "lack sys.path precedence to {} in {}".format( + existing_dist.project_name, existing_dist.location) + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + return os.path.join( + self.source_dir, + self.link and self.link.subdirectory_fragment or '') + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, 'setup.py') + + return setup_py + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, + self.pyproject_toml_path, + self.setup_py_path, + str(self) + ) + + if pyproject_toml_data is None: + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = Pep517HookCaller( + self.unpacked_source_directory, backend, backend_path=backend_path, + ) + + def _generate_metadata(self) -> str: + """Invokes metadata generator functions, with the required arguments. + """ + if not self.use_pep517: + assert self.unpacked_source_directory + + if not os.path.exists(self.setup_py_path): + raise InstallationError( + f'File "setup.py" not found for legacy project {self}.' + ) + + return generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=self.name or f"from {self.link}" + ) + + assert self.pep517_backend is not None + + return generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir + + with indent_log(): + self.metadata_directory = self._generate_metadata() + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, '_metadata'): + self._metadata = get_metadata(self.get_dist()) + + return self._metadata + + def get_dist(self) -> Distribution: + return _get_dist(self.metadata_directory) + + def assert_source_matches_version(self) -> None: + assert self.source_dir + version = self.metadata['version'] + if self.req.specifier and version not in self.req.specifier: + logger.warning( + 'Requested %s, but installing version %s', + self, + version, + ) + else: + logger.debug( + 'Source in %s has version %s, which satisfies requirement %s', + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is " + "unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == 'file': + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info('Found existing installation: %s', dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith(prefix + os.path.sep), ( + f"name {name!r} doesn't start with prefix {prefix!r}" + ) + name = name[len(prefix) + 1:] + name = name.replace(os.path.sep, '/') + return name + + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.name + '/' + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = '{}-{}.zip'.format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + 'The file {} exists. (i)gnore, (w)ipe, ' + '(b)ackup, (a)bort '.format( + display_path(archive_path)), + ('i', 'w', 'b', 'a')) + if response == 'i': + create_archive = False + elif response == 'w': + logger.warning('Deleting %s', display_path(archive_path)) + os.remove(archive_path) + elif response == 'b': + dest_file = backup_dir(archive_path) + logger.warning( + 'Backing up %s to %s', + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == 'a': + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, 'w', zipfile.ZIP_DEFLATED, allowZip64=True, + ) + with zip_output: + dir = os.path.normcase( + os.path.abspath(self.unpacked_source_directory) + ) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, parentdir=dirpath, rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + '/') + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, '') + for filename in filenames: + file_arcname = self._get_archive_name( + filename, parentdir=dirpath, rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info('Saved %s', display_path(archive_path)) + + def install( + self, + install_options: List[str], + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True + ) -> None: + scheme = get_scheme( + self.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + global_options = global_options if global_options is not None else [] + if self.editable: + install_editable_legacy( + install_options, + global_options, + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + if self.is_wheel: + assert self.local_file_path + direct_url = None + if self.original_link: + direct_url = direct_url_from_link( + self.original_link, + self.source_dir, + self.original_link_is_in_wheel_cache, + ) + install_wheel( + self.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=self.user_supplied, + ) + self.install_succeeded = True + return + + # TODO: Why don't we do this for editable installs? + + # Extend the list of global and install options passed on to + # the setup.py call with the ones from the requirements file. + # Options specified in requirements file override those + # specified on the command line, since the last option given + # to setup.py is the one that is used. + global_options = list(global_options) + self.global_options + install_options = list(install_options) + self.install_options + + try: + success = install_legacy( + install_options=install_options, + global_options=global_options, + root=root, + home=home, + prefix=prefix, + use_user_site=use_user_site, + pycompile=pycompile, + scheme=scheme, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + req_name=self.name, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + req_description=str(self.req), + ) + except LegacyInstallFailure as exc: + self.install_succeeded = False + six.reraise(*exc.parent) + except Exception: + self.install_succeeded = True + raise + + self.install_succeeded = success + + if success and self.legacy_install_reason == 8368: + deprecated( + reason=( + "{} was installed using the legacy 'setup.py install' " + "method, because a wheel could not be built for it.". + format(self.name) + ), + replacement="to fix the wheel build issue reported above", + gone_in=None, + issue=8368, + ) + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_set.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..08d27c8 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,190 @@ +import logging +from collections import OrderedDict +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils import compatibility_tags + +logger = logging.getLogger(__name__) + + +class RequirementSet: + + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet. + """ + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return ' '.join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = '<{classname} object; {count} requirement(s): {reqs}>' + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=', '.join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def add_requirement( + self, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if (self.check_supported_wheels and not wheel.supported(tags)): + raise InstallationError( + "{} is not a supported wheel on this platform.".format( + wheel.filename) + ) + + # This next bit is really a sanity check. + assert not install_req.user_supplied or parent_req_name is None, ( + "a user supplied req shouldn't have a parent" + ) + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + self.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = self.get_requirement( + install_req.name) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None and + existing_req and + not existing_req.constraint and + existing_req.extras == install_req.extras and + existing_req.req and + install_req.req and + existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + "Double requirement given: {} (already in {}, name={!r})" + .format(install_req, existing_req, install_req.name) + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + self.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = ( + install_req.link and + not ( + existing_req.link and + install_req.link.path == existing_req.link.path + ) + ) + if does_not_satisfy_constraint: + raise InstallationError( + "Could not satisfy constraints for '{}': " + "installation from path or url cannot be " + "constrained to a version".format(install_req.name) + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple(sorted( + set(existing_req.extras) | set(install_req.extras) + )) + logger.debug( + "Setting %s extras to: %s", + existing_req, existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements and + not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 0000000..34c989e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,130 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Iterator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Iterator[None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_requirement_tracker() -> Iterator["RequirementTracker"]: + root = os.environ.get('PIP_REQ_TRACKER') + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context( + TempDirectory(kind='req-tracker') + ).path + ctx.enter_context(update_env_context_manager(PIP_REQ_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with RequirementTracker(root) as tracker: + yield tracker + + +class RequirementTracker: + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Set[InstallRequirement] = set() + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "RequirementTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType] + ) -> None: + self.cleanup() + + def _entry_path(self, link: Link) -> str: + hashed = hashlib.sha224(link.url_without_fragment.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement) -> None: + """Add an InstallRequirement to build tracking. + """ + + assert req.link + # Get the file to write information about this requirement. + entry_path = self._entry_path(req.link) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = '{} is already being built: {}'.format( + req.link, contents) + raise LookupError(message) + + # If we're here, req should really not be building already. + assert req not in self._entries + + # Start tracking this requirement. + with open(entry_path, 'w', encoding="utf-8") as fp: + fp.write(str(req)) + self._entries.add(req) + + logger.debug('Added %s to build tracker %r', req, self._root) + + def remove(self, req: InstallRequirement) -> None: + """Remove an InstallRequirement from build tracking. + """ + + assert req.link + # Delete the created file and the corresponding entries. + os.unlink(self._entry_path(req.link)) + self._entries.remove(req) + + logger.debug('Removed %s from build tracker %r', req, self._root) + + def cleanup(self) -> None: + for req in set(self._entries): + self.remove(req) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement) -> Iterator[None]: + self.add(req) + yield + self.remove(req) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..b689043 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,629 @@ +import csv +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Set, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ( + ask, + dist_in_usersite, + dist_is_local, + egg_link_path, + is_local, + normalize_path, + renames, + rmtree, +) +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = getLogger(__name__) + + +def _script_names(dist: Distribution, script_name: str, is_gui: bool) -> List[str]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + exe_name = os.path.join(bin_dir, script_name) + paths_to_remove = [exe_name] + if WINDOWS: + paths_to_remove.append(exe_name + '.exe') + paths_to_remove.append(exe_name + '.exe.manifest') + if is_gui: + paths_to_remove.append(exe_name + '-script.pyw') + else: + paths_to_remove.append(exe_name + '-script.py') + return paths_to_remove + + +def _unique(fn: Callable[..., Iterator[Any]]) -> Callable[..., Iterator[Any]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Iterator[Any]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + return unique + + +@_unique +def uninstallation_paths(dist: Distribution) -> Iterator[str]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises UninstallationError, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + try: + r = csv.reader(dist.get_metadata_lines('RECORD')) + except FileNotFoundError as missing_record_exception: + msg = 'Cannot uninstall {dist}, RECORD file not found.'.format(dist=dist) + try: + installer = next(dist.get_metadata_lines('INSTALLER')) + if not installer or installer == 'pip': + raise ValueError() + except (OSError, StopIteration, ValueError): + dep = '{}=={}'.format(dist.project_name, dist.version) + msg += (" You might be able to recover from this via: " + "'pip install --force-reinstall --no-deps {}'.".format(dep)) + else: + msg += ' Hint: The package was installed by {}.'.format(installer) + raise UninstallationError(msg) from missing_record_exception + for row in r: + path = os.path.join(dist.location, row[0]) + yield path + if path.endswith('.py'): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + '.pyc') + yield path + path = os.path.join(dn, base + '.pyo') + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) and + path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) + for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) + for d in subdirs) + all_files.update(norm_join(root, dirname, f) + for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + # probably this one https://github.com/python/mypy/issues/390 + _normcased_files = set(map(os.path.normcase, files)) # type: ignore + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if (os.path.isfile(file_) and + os.path.normcase(file_) not in _normcased_files): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | { + os.path.join(folder, "*") for folder in folders + } + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind='uninstall') + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if (path_is_dir and os.path.isdir(new_path)): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for _, save_dir in self._save_dirs.items(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug('Replacing %s from %s', new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + def __init__(self, dist: Distribution) -> None: + self.paths: Set[str] = set() + self._refuse: Set[str] = set() + self.pth: Dict[str, UninstallPthEntries] = {} + self.dist = dist + self._moved_paths = StashedUninstallPathSet() + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + return is_local(path) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(normalize_path(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self.paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == '.py': + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = normalize_path(pth_file) + if self._permitted(pth_file): + if pth_file not in self.pth: + self.pth[pth_file] = UninstallPthEntries(pth_file) + self.pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self.paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self.paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self.dist.project_name, + ) + return + + dist_name_version = ( + self.dist.project_name + "-" + self.dist.version + ) + logger.info('Uninstalling %s:', dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self.paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose('Removing file or directory %s', path) + + for pth in self.pth.values(): + pth.remove() + + logger.info('Successfully uninstalled %s', dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation + """ + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self.paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self.paths) + will_skip = set() + + _display('Would remove:', will_remove) + _display('Would not remove (might be manually added):', will_skip) + _display('Would not remove (outside of prefix):', self._refuse) + if verbose: + _display('Will actually move:', compress_for_rename(self.paths)) + + return ask('Proceed (Y/n)? ', ('y', 'n', '')) != 'n' + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self.dist.project_name, + ) + return + logger.info('Rolling back uninstall of %s', self.dist.project_name) + self._moved_paths.rollback() + for pth in self.pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: Distribution) -> "UninstallPathSet": + dist_path = normalize_path(dist.location) + if not dist_is_local(dist): + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.key, + dist_path, + sys.prefix, + ) + return cls(dist) + + if dist_path in {p for p in {sysconfig.get_path("stdlib"), + sysconfig.get_path("platstdlib")} + if p}: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.key, + dist_path, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path(dist) + develop_egg_link_egg_info = '{}.egg-info'.format( + pkg_resources.to_filename(dist.project_name)) + egg_info_exists = dist.egg_info and os.path.exists(dist.egg_info) + # Special case for distutils installed package + distutils_egg_info = getattr(dist._provider, 'path', None) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if (egg_info_exists and dist.egg_info.endswith('.egg-info') and + not dist.egg_info.endswith(develop_egg_link_egg_info)): + # if dist.egg_info.endswith(develop_egg_link_egg_info), we + # are in fact in the develop_egg_link case + paths_to_remove.add(dist.egg_info) + if dist.has_metadata('installed-files.txt'): + for installed_file in dist.get_metadata( + 'installed-files.txt').splitlines(): + path = os.path.normpath( + os.path.join(dist.egg_info, installed_file) + ) + paths_to_remove.add(path) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.has_metadata('top_level.txt'): + if dist.has_metadata('namespace_packages.txt'): + namespaces = dist.get_metadata('namespace_packages.txt') + else: + namespaces = [] + for top_level_pkg in [ + p for p + in dist.get_metadata('top_level.txt').splitlines() + if p and p not in namespaces]: + path = os.path.join(dist.location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(path + '.py') + paths_to_remove.add(path + '.pyc') + paths_to_remove.add(path + '.pyo') + + elif distutils_egg_info: + raise UninstallationError( + "Cannot uninstall {!r}. It is a distutils installed project " + "and thus we cannot accurately determine which files belong " + "to it which would lead to only a partial uninstall.".format( + dist.project_name, + ) + ) + + elif dist.location.endswith('.egg'): + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist.location) + easy_install_egg = os.path.split(dist.location)[1] + easy_install_pth = os.path.join(os.path.dirname(dist.location), + 'easy-install.pth') + paths_to_remove.add_pth(easy_install_pth, './' + easy_install_egg) + + elif egg_info_exists and dist.egg_info.endswith('.dist-info'): + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # develop egg + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + assert (link_pointer == dist.location), ( + 'Egg-link {} does not match installed location of {} ' + '(at {})'.format( + link_pointer, dist.project_name, dist.location) + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join(os.path.dirname(develop_egg_link), + 'easy-install.pth') + paths_to_remove.add_pth(easy_install_pth, dist.location) + + else: + logger.debug( + 'Not sure how to uninstall: %s - Check: %s', + dist, dist.location, + ) + + # find distutils scripts= scripts + if dist.has_metadata('scripts') and dist.metadata_isdir('scripts'): + for script in dist.metadata_listdir('scripts'): + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, script) + '.bat') + + # find console_scripts + _scripts_to_remove = [] + console_scripts = dist.get_entry_map(group='console_scripts') + for name in console_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, False)) + # find gui_scripts + gui_scripts = dist.get_entry_map(group='gui_scripts') + for name in gui_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, True)) + + for s in _scripts_to_remove: + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace('\\', '/') + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose('Removing pth entries from %s:', self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning( + "Cannot remove entries from nonexistent file %s", self.file + ) + return + with open(self.file, 'rb') as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b'\r\n' in line for line in lines): + endline = '\r\n' + else: + endline = '\n' + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose('Removing entry: %s', entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, 'wb') as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error( + 'Cannot roll back changes to %s, none were made', self.file + ) + return False + logger.debug('Rolling %s back to previous state', self.file) + with open(self.file, 'wb') as fh: + fh.writelines(self._saved_lines) + return True diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45944748d4dd62d0543db68d819f48332e782da7 GIT binary patch literal 188 zcmYe~<>g{vU|^WXFgqPYKL!!Vn2~{j!GVE+p_qk%fgyzg{vU|^WXFgx9ziGkrUh=Yuo85kHG7#J9ey%-o6QW#Pga~N_NqZo6UqL>&# ze5M@cT$U&nFq=7tHJ2@ljgcXhF_k@)C7mgiC5=gvA&SGDA%!J{wS^&twV5f3Gleaf zL6iL@$QDheTO7`bIXQ_*IjOf;d@_qmG#PIRdFBO6>#yQL>OexGQEK%&KY!LAjmN`r* ztSM|QEKwXO?7!~g7o`>!-x5pCNKMX;FD@-8 z$S*2MO^GkhNKMTtzQtCQT2fk+mkbIin1euUMg|53XHdw20=R^snW2d>g&~+>C8OU; z##_RE`6ZsY1vy~frKY$R73G7hV<}F}Nh@M!U|=ZXU|?Wa$xy_{z`*b;RzD*@H&s8q zJhP<45K0B57Ub*uW~L+-d-(e5=VT`77gUyHo}94AQ{BzyM<7@N*H!Q_*-1@@wxdar8yurPkek~ zX<`mUrU(>AMW9r3izO*PKc|QlP+)*|VHEYO1ozg|&lAqd0#33fn~Bz85RU RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d0f88f51927efb20f61d5df2a8148a49537e9b1 GIT binary patch literal 195 zcmYe~<>g{vU|^WXFgqPYKL!!Vn2~{j!GVE+p_qk%fgyz50je`tk9Zd6^~g@p=W7w>WHa^HWN5 MQtd!4_zZF>0QK=R)&Kwi literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c736e09168005f0d4dae13a2c9483de15c63dc6 GIT binary patch literal 11986 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 None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + requires_python = get_requires_python(dist) + try: + is_compatible = check_requires_python( + requires_python, version_info=version_info + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.project_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.project_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.project_name, version, requires_python + ) + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + requirement_set.add_requirement(req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + if not self.use_user_site or dist_in_usersite(req.satisfied_by): + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + "yanked version: {candidate}\n" + "Reason for being yanked: {reason}" + ).format(candidate=best_candidate, reason=reason) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.original_link_is_in_wheel_cache = True + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> Distribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Distribution, extras_requested: Iterable[str]) -> None: + sub_install_req = self._make_install_req( + str(subreq), + req_to_install, + ) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = requirement_set.add_requirement( + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + requirement_set.add_requirement(req_to_install, parent_req_name=None) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.extras) + ) + for missing in missing_requested: + logger.warning("%s does not provide the extra '%s'", dist, missing) + + available_requested = sorted( + set(dist.extras) & set(req_to_install.extras) + ) + for subreq in dist.requires(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..422888aa75cc243e73283eb6b0da8471fac04676 GIT binary patch literal 199 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 JA>b@f3IO3eyet3! literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1343fd412d91f44eb0b937466f216335d877f4e4 GIT binary patch literal 18443 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..faaae0d0bc21c96c994425705476d1e28c4da07d GIT binary patch literal 3318 zcmYe~<>g{vU|^WXFgrb$i-F-Wh=Yt-7#J8F7#J9e3m6y}QW#Pga~N_NqZk=MY^EHh zT;?cdFq=7tC6_gdHJ2@l4a{fBVbA4=;$UP*VNGGn;mqZV;>zWY;$~z>WlrU3W{l!> zXGmdB;b>t<;Yj6ZW{%=>XGq~p;c8(>;R5sdQ@Dc}GEoR5O%3Itn5Ctv}1w2lP#i>E51^GoKsYNdt85kHenQn19 zC+4MOrX-f6-r^2QEiBC}O3h8pD@g{~fsC19e%4}OU`S<%VoYI(VoG65VVc93!kog= z!V<-t%96sE!a9d3g)N1>g(ZqLg)x{xlj9b5KxP5VR=<^ux7dnOOG=CKl0goD*#KgL zLe&`*sxk}=3?&RDjLnQS4Dld47*m*1nCCFpFvK&bFa$GbviMa^D99{O$ShXK$`KikYAFKTBJ~f2$f!AS zS6ot*n3-2n4ANYbno^pas!&v#SCW~Vs;A(Yrcjw*s!*PoR|1kwOv*1RQ78d9xu`Tx z2P~JIn5R%slv-S@;9OFaqoA$e3{shruTY$?rx22_keLf|QK~{lez^iDkPA|a((;RP zi**!AQgdW@Pd*cOA!+T1H&!m%)F9YqHv|f@ky2O z(73xL7N471T%4GmS{$EP5)W6ilJOQxacWN5N`@j41_p*-Ir49geXXw2OeXYdFd*k91ik31EUBN4N3lkS(l>~BlAuHEp z0|hk5G4b)YxZ>k;^HWN5Qsd)q@x;d$mL}#vWQxQ7cy67v*5v80fbpRSOWU!;&)mReK^BJ)ZVGD{SSQ&Wre{EE0iNe@)y!jc|{4JzQl zNskX){4QWjVO$8V(t;T@nf$7RVK(a(mn0UIWag!7Xs%=`k_H7gsK71~0pl5*9txR(#+UWgu3Bv&irbu~o2CUX(U)LX2@C5a`e z5D$QY6&B1OHbD<4z&((fmy(&64l!CowMa(+Y%J6l%t*e_#NrhmWZf1>9#O>V5oFbx zOhsT5LAeE`gd!>e5D5ihCPu)6%?76tFab^|Y!J29NbZ!z<4#THTii(1@-4Q4#G=%^ z66_()3M*4VDHN7uYM2&++h~x)tqc$I#1u%FBkFu`$iov4G}v`OA+8G|zB7H1j$qrTJg5)e2tN{pBsL5ZX2r@?rL@0x*9`^Y7l>FrQ z_#!os5I=~}01=>&ECRJ;i?l&pP7ndEKJ-8=P*@ZhfLP#&MG&AUE&|nHAmg{vU|^WXFgyLLC|SkY`?TNn%b;P-IQxYF^1pMg|53O_p1n&WU*`nJI}SskivyOrQMx?9zf; z+(_zgai@VSDghgr3~~%Ih6h*&0|P@ULlk2QLljdga|&Y$(;TK0<`k9|mME4~))dw` zjNrgviDHBDKtaJ0#h%KM$_bVQ1qDkpV-!~^2UG#LuWnWSG(S(1^TXRK$bUz}Nzs#}nloSm4S zTC87?S)d=EnOBlpl$V&JUzA#$pHo_rnV$z?mZgI979rxWSg)Y+7Ds%1W?p7Vd_2gV z#UNKRFjmQ6@wXmK;Y!9LJ_ZJcWKar#c^bq9>4p2agrSBZi?Nw8n4yRtlv0>(F&CE< zLHx>CB*ee~@i5reMIsCg47b?h>{lgSot%?cTntWzwHnp%cvLK^)zoCV#f6XsyH%6r78@kt-r|gp zhe*bQ!VHu%;^V<;iX^c3h9f?{D7By{K3)Kn1~@?B#K^+P#>nyySKvaFWB3XbvS43< z%&1|=V#q>-DcJg3JOxGhS*gj8tcA@nMe+;`3}PU6fTD?Bup*m6hAUV=A%fL* z1qKENX(Zbvu-OjMjbSUuxnRG8(k9673m6wNz*7{&_X3dUiBHQficc*n$}hs|21N!2 z29P^o2}=c=8_-Q6?4A^cG$yEfia-&K&F)(w>8U00@Prnh11=nu;Q_)}rGd>c*fbF? zWU?5tQ5__RC2jI&7RMJSmSh&EWu~UYCsnE;xkVY9ThP>N3Kq$Nax7PTd~SY9X-;Z< z{4JjN_`=e}98fgI#}~1KY!w9&;vhm2M96`(a1<2f7o--IR2DIV#6StN2ox_xpa?1g zCGjF9kUEy6{QR6EP#{4{2vFe&VSzGt5jO(^11HGUARY&!05cym9~%>+01F87G4nBl zRSd#vhCfvxMQ9FFig1cZ3rmzBxSA2YB?7OMk?R>vrduqTMX805(iW5#K&1!>gV-Pp z&KnvG3=B1lSqv!*r3}SFUJNOW&5TWq;2MXqgsFxxi@6z8`>=p&A5A8|D*2F%%wmPi zVueJ7oXosz9fiF75`{#CVpzLCll2x0Na7Z2JjnK2oM}b*RjGN!sU^4AQY%V|5{qxK z$3qyJOpuaX6BL(dQ3Q&8ZBP`kfn3Ze#K^{2C5z3U@Oq^PR7Byk zdjr%afuxTbhAgILSTU%{Tm-5;z;$4e9%i7*jYT8N?Za88o^4FsufJTQJDgpkgqc zp@t!rrEvdPIT zE=kVMEwJ-oU|{$R%CS|JSc3q)j?}Zs$xlwqDYnx?nDL8IrwG(+xy4Wf%KTMKItnlU z|NsBLid7*oFGWF<1)Roju@)EPWR~1w&PmO?#gdhunFlRSZm||57L}ko5?n(#fjkQ; z2pHHT7gP++xj5EJ@CQv}Qo*9#qPJFo+GxO5nT* zYDI(FE(|qHH4O2LpjHdC2MIBS3(=H@B`lEXMXsQj0vBmu0u&?Qm;5mHiN3w=-*sRC{*W0e+e zThVK2jPQpiB~WDs34c(lDGNO0*2`2R2jW3`w<*lQ44N!{Aw{6}(Ml#iKTQ^J;wf?j zMH4u#K-DtVfC8Cb4RSK59l*dS0xHV&a66m0IujInaQA}>SWq1a8f^k~ev8FGwI;My zWXfW$Va#GlVM<{J*M=;9RU&@*B?{2&3h$Fc{HDnYsn)<=0_Op+55b`)%0&f-Yr zOl1Mf!s;xpR8FW0Se?ZU`6*hfNDxj(eu+}g2XL8Oqr9UnQlTrGz#HXN9nwMCXn3)3# z1iXs#I}WN?g@Lw8fxsnvGV2X7-5gDaq0(%6-imSpA>Lpn~NxQvnoD}zlr=@q3Gf^d8$ zWWKNn)c?B0l9X7S3h@Rg`4xc%ZXshbpkZ8a7YSVBfSm}54sbdE6QI)b7KaUFoY@W( XgTg{vU|^WXFgsmai-F-Wh=Yt-85kHG7#J9er!g`xq%fo~<}gG-XvQc;FrO)k zDTN`0DTg_iC5k1NHHtNtEs8CdJ&HY-BZ?!JGm0~pD~gK|q=z|&JC`Sl2h3*4;mzfX z;>+ca;s^6tb9i$Fq6EQgwj7~c;V5A+n>|M)S2Ri#%;v}u%N36j2eUbIByuIAB*AR1 z9I0ICC}}X8J4Ys0HcA%E=E;%Em5-9oRftjm^LcX=bCsf$z-+!8!Us^`i6`8B$p$Fc#^gFr<%$&ey3hdD(uMXH4*$~=`b)hJaOB#Npgl{3{W)d(b>B0YyWMJ7eI zg(b=&g)x{xQ|=`w#{4wdZ}Emi2DrvMd$>A#d-}QGVsXh#F1f|xlUZDHi^IR5Br`uR zG3OR@aB9gd){xSIoYY$^$%(}!D;aMICMV|Q=Vc}*=44i-#^)vGrfM?X;&DnWP7O*e z$S*2MExIKVlvIQ#NotCFQDQ-c zCgUxx@Ql>d9OuO343JXZfW+kN#Pn3R%)At^df}kd!qUv5)ZEm(l7OPrg2W=Qu#jh7 zaYjP0OhGD zrVNG@#>I?L%qhI7EUB!iY^m&$45=KcoN&mM%9hHV%9FwjN)M6@DJ*li+ZoarQ&>~j zT6m*)Q~6T)B^gpVQw37k=P;*mq;R&dL%#8>Sm_t=B1{lq^8_rO-)QsEvn)#$=5ATEXgcRtJDRl@YB=e zzQs`hjka5CY2aAB#a#}H^7v#>oZk}2P0UV>&xAy0d{JuQE#A`N)cDfk)S~#}%#zew z!kOuL`9-PmDX9gic`2!R$(gCew*;VqP<^Q>x5S_#MUeDT9A8jbl98Wxi$5*DC^5&omOyDidQoCZYJ71?QDRAIdgU$tg39=^)S}|d{Ji+gytMpe9%zt*C=i>Qfq?lo%KoiWEVF3W!h!5vm|U6GW(k z2n`US4N6NKw^)ly3sQ@2am2@G=4F<|$KMi;Pt3{5FHcQ@c_=frxJZtHf#DW=8YFQQ zse$xsfra9Wz^P1==N3zGYEBx&Vz3jy7K5DtwjHboVLR9{AR~%E?pVoqi!(kxIVZ8W zI6i(Q!>=6ujQreG{q*w8k`hBG1~1yBU>aWV2SF)?Dm z?;PB0jBJcmg0Rv@4;Eya%(pm;^7BhTsjc{ySaL>ca&~-iX+Z&~7)yx2+U{b6KasA0%rSio4rxR9}yxr7PCt6|P!u3^YxsbR=s ztzph$OJVF~tz}7JDq+v!C}SwHD&cHqsAbJ#E8zmsCEPVEHLT4{wQN;#Da^I(HEdZt zHOyJOHS8%Yy-X|&wH!4J@qFP7c@8WLCH$2u7#V6g85ycHKsGH9C=pCyt>J8D0@=Bc zsg|pTtA?|QDV!maA%&rqvyL;53ql((7%-Fw)i9;7^)l9S*KlMBFA!PC;KDG0F;=OT zr-o;N=t72C-WuK%hEj&2YlZv3ri<0^EM%tWJb|%D3M$%E!;>X7fw5SthA&Hc0%MU8R6MJOCrhSiABfD7h0<~p z7>lAx+{`$EF~11RR!QN?X0GM0;h(@*G%1C=D35-QIYJ{@XKy->gmU<0OmLkZ#H9|E) zSsD`<3r>J)@m`i%;S%`;nl-`;85tRBxEE;E@Pb%{`)atev};Ac{?=KbTO$Gzt>F%4 z&=mI5WG&JMWh?IF{5()`l9^XhjFj8>z@-?dL`p3#Nlm#W6yO;UALJVB?-S-46z}5d z6zZPY&?3hGsz`DZE8>gtOY>5St8~CA7OftQMyfb;6yOy~tR`cTIRgWOTS!%-YOz9Q zu|i@_QEFmJr2@3POHENI&n(GMD9K1wC{D~xRe+Xs3W>#Fu>wd1n4$nq_Ie7T#iUo9yG_WZU%~dRVRhb1<4Z-=PMaiiODVfD3MVU!p zkAPg3l$x2Bt^hYQHANvMwYVU&Bo)cj)D#71xuB4dSO!uLcQ~lcp^%uDg6;!^N1;0P zszgh%`J#%&$WYHXlU<2{L6ZfPzY~k|^KNk$r55BQCWBiTx7gG3^FX!HE!NE9;?mTr zX(1V@3dykATcJ2L2i$l81%^UOetBL_eqxG3ei1B8K)y^=s7%buPK7(uN}(F$a>b%r zB!e_yu}}?V)G8#FC{*WU=4IDvas{P=Tn4rT5@rw+trV(@z%sQ}JT`gxd8rENnPsVY zcA6}=SU^_XVuu=biv?s*ku9jk(1WB<$>jVTklW*71s|+YRa_(nsvRsr1h~ux7xGr1 zRLzuMe2YCbuPn1DKd(p}q(A~B%oXGVPN1L`6+5(CzQqGd<v5mr8y~xD!vF@Svi3W=gusSPff`zNleN~y~P1%aTkMAXgnyGZn0+; zgIjC2I5LYNh5s$Koc#3k)S_D~pyoi4Bgm~%Amcbet-APv#FC6#%&8S6MUr5_%;I=R z1l?jw%P-1JEV;!C;m1Rw>lS-?Vo@H*i=v4sDd4s<$hGix?Ja@CoE&7I7K5whTME#Y z6WE!lC|Zi+bMuQ*HARaIL2fex5uj4w7AG{CQ&T|gE=be%7Do}Rh0XzuuA*BCB}J8> zU`#B_&jgtaYq-ak)a4<13u`%+oKx9C2TtC>jxR`iAqKs7nupFQV4N*;|q70DpEf^RWl9@nG zhhk9on2mvf0p#uCI0i_QA%(G&u~^89A%&@#v565}wJ_E)l`z#Xm4F%#3|TDAj490G z44_6pEprKL4PzGD0``RrB^+6tC0sSkDXhIrDQqe1z09>N;Kn;c4T}pyGpMV_l_<)@ zz~G)*qL5#dl3D~VM4+()&VQg18#%8kWacR#RV~4(C3;+33Qzzl{UFVt)D(rB%;FM- z6g+v7;QxuX?)AEZz<#>KcMrx5lNk(Fc0;IuStdO4vH!rh9Paz~DvsfV` zHK(9hAvLeKv?vv#8dS_f%NkH$4^)z7rxt)MEY2)0NzE&P)>xHr)6!E*U~XF|Q;QuN{T}?nQk#>r&fZ>0#Id>nhfgVLX$eUkHo^jzz_^- z9*ZzAFr+ioFvRl2Fx4{FGSx6mWGZ9{Wfc z6y@;=#I#G+7~qGPpP>2YIXjWDE~jHU+E_z0ku_OM-o~6BLf1I+uY@h=~JK zGBNV~V`F7vS0e0*+xN@-4NeEcn*`1r!o z#2koBksipUf*?WwM1YE|BGAx75vb2|izO*PKj#*6aY<1TJIFW8nRzAPepnGGzKeuF zT0pgV5vb@cY5*zWg?12=Q*(0S;}Nl5WCT(Siem790;scD3~F<5FmmuQd|?82<)9@z z*vFub9p4uLMGi)$e>_D@jBNkF`l@75Mv|gogICeTB}K8Zn#@Jupw9={g;6Gh%4d)V zL0!Az5NMyilQEN_levVk1T@^nn8GxNshy#nv7M=%IgKTSIfbQ#r<19JDTT3_k&&T; zIfYS@A%!)Ysn`M1_wQhCW~^b%W-1N<@jIA<88q1v=QA-dI2IRYrspX@6B(!>otl`O zp#aKV3Q38@;DSpbBfnfh2~_JUL9%dS5v&jcmzHQHS8igZLUKl8UV19Hbjhn!0GB7Q zawn~{1XQYmTK%AMq@XA>zX)6g0cnU|iE z3h``7d1i8|f<~rZsve|7E7pWo2ARbQDWKMDNk&nAX?h0OxI|F(QIeqxE}RsKQ$fRO z3Qz^0FhVVbvr|(+O-O~3qQvBEPz?w22FOJUCHY|EKzxuFpjCr2mVz2GFaj+-p`6S- zh}$8p@S@bROwh;$sILSn`xA4DA*Ms5GfUKq74pmTz~QE+;0Y>@Gm90H6N^)IAYq-C zuaKAw>NY_=j#3Mjr-EIYlAotuq5!Jeic3n9vq6!X2njE!+ru+b^Ar-nsR|VSkc6cJ z4ij+16@l%C26RqhQF>|-G=eojm1;pzYFcVhQECdLUhvaoy2SztnIdp5!B(1s@^x_( zxaHEpSjJGq0~)*PU|hgZ!vN|EcYp>!7#1?RFvRlIGIlW4fOANpLI>jlCa4PL1qOTERMo?3E?IXAJQs1j6LF&A}!3K~|hx?AEoiNz)H*?IZpdGVlO;=B?_ z?X{8xTol}50i}mqtl%gt0u{-SA_-g&O=4hRcnd0QL1iBUBL@=;GZ!NtBNrnV6AxpR z8mO+pQez-08;GG`AF$kFE>0~e0u?Vst)S8e>{KSO8;Zci5x9z*0FnaRUBSS>a2;ef zAE<^CW@BVwlH=!K7GM-$Dgw!AGT&kWRWA@XgJTI)et{H&FsKXzVQ~8rR9BQRfWlgm zp&3-?GS)CjGSo1oF@Z)K6Eztb7`#&}6~I+lW`3SRDX9D@$yWf?O|YgEa=We=TqYn_ zv(Q8c8ute^xxmRz36cht6rephh2+GX5KPDnzV0*Wqhq5*dX z!BGe%z)@Joz`(%D$iPqxstg&pco>U7BAS*(HK6p#4(d#1=A{?8f_Q8tl?5OUC=QE2 z5eKP3!RZCmPXO1i;O_A)>4MAxz4)@!yp;SRJ;>NbW?s5pX-Q^IaS>=3@|GB~3TTTi zCo`!CG+>VJc)$|83L28Jj(>}vIjONvU9ONxs?$?ujhSP^V2Ru4Qx4{iqBQbLsh zjpSEA9R-@~08Q5vfpX6+1yqIk1*t{g26wR@v^!e_YGp*pqADv&Ez|>bFQLf<+@gq* z#I6REzd(i3EetbYy;wa^%~}L%fkK)uI_L($6(Ryn4>}T71RfB%MU)m;#~NvLL>|>D zaAfJhW{EQM^B`jeXfB7S0u3&dR2HNb7l8*GSiqi;0i`@y5CIx#1P|;-L4p{XFpzuz zWfm0|$%A5?13XYuno|NUh;DJFrmh&B)bDrUe*7E&aF6E>ItrS4lC zHjpNx9jJUO22J&XI@cVGDoi|#0*pM2JWM str: + if not extras: + return project + canonical_extras = sorted(canonicalize_name(e) for e in extras) + return "{}[{}]".format(project, ",".join(canonical_extras)) + + +class Constraint: + def __init__( + self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] + ) -> None: + self.specifier = specifier + self.hashes = hashes + self.links = links + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __nonzero__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __bool__(self) -> bool: + return self.__nonzero__() + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> CandidateVersion: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..4db17d3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,555 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import HashError, MetadataInconsistent +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.misc import dist_is_editable, normalize_version_info +from pip._internal.utils.packaging import get_requires_python + +from .base import Candidate, CandidateVersion, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.original_link = template.original_link + ireq.link = link + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + return install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +def make_install_req_from_dist( + dist: Distribution, template: InstallRequirement +) -> InstallRequirement: + project_name = canonicalize_name(dist.project_name) + if template.req: + line = str(template.req) + elif template.link: + line = f"{project_name} @ {template.link.url}" + else: + line = f"{project_name}=={dist.parsed_version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return "{class_name}({link!r})".format( + class_name=self.__class__.__name__, + link=str(self._link), + ) + + def __hash__(self) -> int: + return hash((self.__class__, self._link)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = canonicalize_name(self.dist.project_name) + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = parse_version(self.dist.version) + return self._version + + def format_for_error(self) -> str: + return "{} {} (from {})".format( + self.name, + self.version, + self._link.file_path if self._link.is_file else self._link, + ) + + def _prepare_distribution(self) -> Distribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: Distribution) -> None: + """Check for consistency of project name and version of dist.""" + canonical_name = canonicalize_name(dist.project_name) + if self._name is not None and self._name != canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.project_name, + ) + parsed_version = parse_version(dist.version) + if self._version is not None and self._version != parsed_version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + dist.version, + ) + + def _prepare(self) -> Distribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + self._check_metadata_consistency(dist) + return dist + + def _get_requires_python_dependency(self) -> Optional[Requirement]: + requires_python = get_requires_python(self.dist) + if requires_python is None: + return None + try: + spec = SpecifierSet(requires_python) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.name, e) + return None + return self._factory.make_requires_python_requirement(spec) + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.requires() if with_requires else () + for r in requires: + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + yield self._get_requires_python_dependency() + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert version == wheel_version, "{!r} != {!r} for wheel {}".format( + version, wheel_version, name + ) + + if ( + cache_entry is not None + and cache_entry.persistent + and template.link is template.original_link + ): + ireq.original_link_is_in_wheel_cache = True + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> Distribution: + return self._factory.preparer.prepare_linked_requirement( + self._ireq, parallel_builds=True + ) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> Distribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: Distribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = make_install_req_from_dist(dist, template) + self._factory = factory + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return "{class_name}({distribution!r})".format( + class_name=self.__class__.__name__, + distribution=self.dist, + ) + + def __hash__(self) -> int: + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self) -> NormalizedName: + return canonicalize_name(self.dist.project_name) + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + return parse_version(self.dist.version) + + @property + def is_editable(self) -> bool: + return dist_is_editable(self.dist) + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.requires(): + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + ) -> None: + self.base = base + self.extras = extras + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return "{class_name}(base={base!r}, extras={extras!r})".format( + class_name=self.__class__.__name__, + base=self.base, + extras=self.extras, + ) + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> CandidateVersion: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.extras) + invalid_extras = self.extras.difference(self.base.dist.extras) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.requires(valid_extras): + requirement = factory.make_requirement_from_spec( + str(r), self.base._ireq, valid_extras + ) + if requirement: + yield requirement + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> CandidateVersion: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..fea8c24 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,700 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.requirements import Requirement as PackagingRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InstallationSubprocessError, + MetadataInconsistent, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_from_link_and_ireq +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, CandidateVersion, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + from typing import Protocol + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[str]], ExtrasCandidate + ] = {} + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, base: BaseCandidate, extras: FrozenSet[str] + ) -> ExtrasCandidate: + cache_key = (id(base), extras) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + compat_dist = cast(_Dist, dist)._dist + base = AlreadyInstalledCandidate(compat_dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base: BaseCandidate = self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base = self._link_candidate_cache[link] + + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatiblity. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases must be ignored unless only yanked + # releases can satisfy the version range. So if this is false, + # all yanked icans need to be skipped. + all_yanked = all(ican.link.is_yanked for ican in icans) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not all_yanked and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_candidate_from_link( + link, + extras=frozenset(), + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add explicit candidates + # from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = PackagingRequirement(identifier) + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + + # Add explicit candidates from constraints. We only do this if there are + # kown ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(req.is_satisfied_by(c) for req in requirements[identifier]) + ) + + def _make_requirement_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Optional[Requirement]: + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + return None + if not ireq.link: + return SpecifierRequirement(ireq) + self._fail_if_link_is_unsupported_wheel(ireq.link) + cand = self._make_candidate_from_link( + ireq.link, + extras=frozenset(ireq.extras), + template=ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + return UnsatisfiableRequirement(canonicalize_name(ireq.name)) + return self.make_requirement_from_candidate(cand) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + req = self._make_requirement_from_install_req( + ireq, + requested_extras=(), + ) + if req is None: + continue + if ireq.user_supplied and req.name not in collected.user_requested: + collected.user_requested[req.name] = i + collected.requirements.append(req) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirement_from_spec( + self, + specifier: str, + comes_from: InstallRequirement, + requested_extras: Iterable[str] = (), + ) -> Optional[Requirement]: + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirement_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, specifier: Optional[SpecifierSet] + ) -> Optional[Requirement]: + if self._ignore_requires_python or specifier is None: + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None or self.preparer.require_hashes: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=get_supported(), + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + versions = [str(v) for v in sorted({c.version for c in cands})] + + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convinience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + "Cannot install {} because these package versions " + "have conflicting dependencies.".format(info) + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/user_guide/" + "#fixing-conflicting-dependencies" + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..7d07a91 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,142 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +from typing import Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.six.moves import collections_abc # type: ignore + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(collections_abc.Sequence): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: int) -> Candidate: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) + + __nonzero__ = __bool__ # XXX: Python 2. diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..1da56e4 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,197 @@ +import collections +import math +from typing import TYPE_CHECKING, Dict, Iterable, Iterator, Mapping, Sequence, Union + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterator["PreferenceInformation"]], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the followings in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + self._known_depths[identifier] = inferred_depth + else: + inferred_depth = 1.0 + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # HACK: Setuptools have a very long and solid backward compatibility + # track record, and extremely few projects would request a narrow, + # non-recent version range of it since that would break a lot things. + # (Most projects specify it only to request for an installer feature, + # which does not work, but that's another topic.) Intentionally + # delaying Setuptools helps reduce branches the resolver has to check. + # This serves as a temporary fix for issues like "apache-airlfow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + return ( + not requires_python, + delay_this, + not direct, + not pinned, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def _get_constraint(self, identifier: str) -> Constraint: + if identifier in self._constraints: + return self._constraints[identifier] + + # HACK: Theoratically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out + # three kinds of identifiers: normalized PEP 503 names, normalized names + # plus extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in self._constraints: + return self._constraints[name] + + return Constraint.empty() + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(name: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + return name in self._user_requested + return False + + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=self._get_constraint(identifier), + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + ) + + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..7c86738 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,69 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.backtracks_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_backtrack = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. If you want to abort this run, you can press " + "Ctrl + C to do so. To improve how pip performs, tell us what " + "happened here: https://pip.pypa.io/surveys/backtracking" + ), + } + + def backtracking(self, candidate: Candidate) -> None: + self.backtracks_by_package[candidate.name] += 1 + + count = self.backtracks_by_package[candidate.name] + if count not in self._messages_at_backtrack: + return + + message = self._messages_at_backtrack[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def backtracking(self, candidate: Candidate) -> None: + logger.info("Reporter.backtracking(%r)", candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..8e86d00 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,166 @@ +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return "{class_name}({candidate!r})".format( + class_name=self.__class__.__name__, + candidate=self.candidate, + ) + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalise - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalise - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._extras = frozenset(ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return "{class_name}({requirement!r})".format( + class_name=self.__class__.__name__, + requirement=str(self._ireq.req), + ) + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return "{class_name}({specifier!r})".format( + class_name=self.__class__.__name__, + specifier=str(self.specifier), + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return "{class_name}({name!r})".format( + class_name=self.__class__.__name__, + name=str(self._name), + ) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..840705e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,272 @@ +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import is_archive_file + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + try_to_avoid_resolution_too_deep = 2000000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=try_to_avoid_resolution_too_deep + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for candidate in result.mapping.values(): + ireq = candidate.get_install_requirement() + if ireq is None: + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + looks_like_sdist = ( + is_archive_file(candidate.source_link.file_path) + and candidate.source_link.ext != ".zip" + ) + if looks_like_sdist: + # is a local sdist -- show a deprecation warning! + reason = ( + "Source distribution is being reinstalled despite an " + "installed package having the same name and version as " + "the installed package." + ) + replacement = "use --force-reinstall" + deprecated( + reason=reason, + replacement=replacement, + gone_in="21.3", + issue=8711, + ) + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, while breaking any cycles in the graph at arbitrary + points. We make no guarantees about where the cycle would be broken, + other than they would be broken. + """ + assert self._result is not None, "must call resolve() first" + + graph = self._result.graph + weights = get_topological_weights( + graph, + expected_node_count=len(self._result.mapping) + 1, + ) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", expected_node_count: int +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We take the length for the longest path to any node from root, ignoring any + paths that contain a single node twice (i.e. cycles). This is done through + a depth-first search through the graph, while keeping track of the path to + the node. + + Cycles in the graph result would result in node being revisited while also + being it's own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity checks + assert weights[None] == 0 + assert len(weights) == expected_node_count + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..f0aa1f5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,187 @@ +import datetime +import hashlib +import json +import logging +import optparse +import os.path +import sys +from typing import Any, Dict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +SELFCHECK_DATE_FMT = "%Y-%m-%dT%H:%M:%SZ" + + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key): + # type: (str) -> str + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +class SelfCheckState: + def __init__(self, cache_dir): + # type: (str) -> None + self.state = {} # type: Dict[str, Any] + self.statefile_path = None + + # Try to load the existing state + if cache_dir: + self.statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self.statefile_path, encoding="utf-8") as statefile: + self.state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self): + # type: () -> str + return sys.prefix + + def save(self, pypi_version, current_time): + # type: (str, datetime.datetime) -> None + # If we do not have a path to cache in, don't bother saving. + if not self.statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self.statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self.statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.strftime(SELFCHECK_DATE_FMT), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self.statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self.statefile_path) + except OSError: + # Best effort. + pass + + +def was_installed_by_pip(pkg): + # type: (str) -> bool + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def pip_self_version_check(session, options): + # type: (PipSession, optparse.Values) -> None + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + pip_version = installed_dist.version + pypi_version = None + + try: + state = SelfCheckState(cache_dir=options.cache_dir) + + current_time = datetime.datetime.utcnow() + # Determine if we need to refresh the state + if "last_check" in state.state and "pypi_version" in state.state: + last_check = datetime.datetime.strptime( + state.state["last_check"], + SELFCHECK_DATE_FMT + ) + if (current_time - last_check).total_seconds() < 7 * 24 * 60 * 60: + pypi_version = state.state["pypi_version"] + + # Refresh the version if we need to or just see if we need to warn + if pypi_version is None: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return + pypi_version = str(best_candidate.version) + + # save that we've performed a check + state.save(pypi_version, current_time) + + remote_version = parse_version(pypi_version) + + local_version_is_older = ( + pip_version < remote_version and + pip_version.base_version != remote_version.base_version and + was_installed_by_pip('pip') + ) + + # Determine if our pypi_version is older + if not local_version_is_older: + return + + # We cannot tell how the current pip is available in the current + # command context, so be pragmatic here and suggest the command + # that's always available. This does not accommodate spaces in + # `sys.executable`. + pip_cmd = f"{sys.executable} -m pip" + logger.warning( + "You are using pip version %s; however, version %s is " + "available.\nYou should consider upgrading via the " + "'%s install --upgrade pip' command.", + pip_version, pypi_version, pip_cmd + ) + except Exception: + logger.debug( + "There was an error checking the latest version of pip", + exc_info=True, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d05d067dd7eaaae53b1ab449d08beae270228d0 GIT binary patch literal 183 zcmYe~<>g{vU|^WXFgqPYKL!!Vn2~{j!GVE+p_qk%fgyzWHa^HWN5Qtd#teg?S?0C;0B A0{{R3 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/_log.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/_log.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70ed342b9d61c32bc02f14b651f8cc21f5786d3e GIT binary patch literal 1508 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed7b6f6713253e5d3df95c92d474a8e1dbd8c45f GIT binary patch literal 502 zcmYe~<>g{vU|^WXFgyJ(0|Ucj5C<8vGB7YWFfcF_t1vJyq%cG=q%fv1)ZNq_ik6nHi)6 zia{;{VP}x56c`v7N*J;j7cebksAVo;Sio4rP{UZmw2--$rG~kNC7UIfL6gx>llc}0 z$WoAnw^%@|TdXDdDT$SutVK)=3=Bme3yN4kEDi<+hFh%ZnPsVYD;bJFf%7XyKO;Xk zRX@Evv!uijN(H4BxprX&`7`1KA90r0NzVCTAz6rxxoM zWESYhXXcfp7Ud=8=$Dpc<`nCLTmW*5UP0w8VX#BuGmGPM5=&Bx;!83T^VmUtV*`1Z zk&BU!sfdSxfkBh?7JGbrN`7*Dd=W_M7IS7^$t{+o{QMlSJlL&B1UJYd95%W6DWy57 Pc8nksK^|mb=3oW@G#r3; literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78fae725e82afc860341fa02530dc0f59a30ce6f GIT binary patch literal 2965 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da1129b12e8bdf568da0a8697af5de043a8fb611 GIT binary patch literal 1812 zcmYe~<>g{vU|^WXFgu-*hk@ZSh=YvT7#J8F7#J9ea~K#HQW#Pga~N_NqZk=MY^EHh zT;?d|T$U)7T-GSoT(&4SusCxLdoD*52bj&0!-m3u_c#3P&)5Cf`etJ2V+@arhUMWaj53=4i6q z;&v=b&d4lF^~_7lzs2d2S(KVw5?YjVi`^x&2rR}PmRt;CXfobn@yX1~)?~cJT$Ws{ z$$X0|1*|&0v?%8mOI~7b>MgdS)RNMoyksVjMNrJbz`y|Vvopxg+ZY%aY8VzUEM#D0 zs9{WD6lbVqN@u8LE@7-;$YLsCZe}X7t6@rETEGJ0XR+2WWU+x+>Qk6&7_xZ8 z89+K}n2R>mFr~1hurA=OVP426&Hy%@DVRZ%t;)bTKd&scs6-)A0Uk~YCHV@83I&-3 z3Pq`frI|&kxv6<23dJQwnR)4YRm=(w3RN7{wc6FS4%M|)yv3zSkTAMgF!;>^6_lEl2^)LSf>d1?7Yppd)8mX=?Xn^;oB!N9<9iy0K$ zoXPpQxtS&LnJGogAVHRl#Nv!wY>5R0sd*_ytRNvCWXo=`WaVe(X|fb?GB7X{ffDE~ zZX^fa;!G<_Ob0o=cqK!T6axdpuQdIP{M=Oi^zzJ-5<@5zlvpdX)^SCU$kmzbkpT9TPltPk-yD7D0A zq~;W)78UCiRNhiW5>70RFGwvgF)@gT3KpfNr52^;C8vUXUaSI2QA`|+9E>cCJdA9N z0{=Ofc^J7EIT!_)1Q@wMB8)7ILX1T+3=9l@ZkjB&SaLG+vTtz}=a&{Gr-BTiF1trK15C(-2I|Bm)IN2ToC)+HBqMQ=O1)xO7 zypXY$xrVt|3Y@5z!O4|%A!7`4ElVwHEn5vJ8M78!fMr>0+4F>I7>nJ&Jmv*#HH-@x zYuQWKYgkG+YM8S)YuIa8Qy6OGt@9-LFG~y zYB_2cvUqDbYdDLR)o{*c04HF+*$i`;YdN4g_-i;)Sb9O33a%@dL6g-_lNp?diiANa zL%;Na6@W?g3JOvc&5_J%}+_q zDb_={2<%r#;DHJNa0uR##HtD8>>^O=z9on%5072u;*uh8KDxz{l%Jmib`&Ha(1L`+ jCO1E&G$+-L5mdf|5)TiP1S1b453`U2!+$1__x}L^1M}l_ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..774580ae1663fec0d2acdd2d291a24317f337b1f GIT binary patch literal 1088 zcmYe~<>g{vU|^WXFgu-_m4V?gh=Yt-7#J8F7#J9eBN!MMQW#Pga~N_NqZk=MY^EHh zT;?cdFq=7tC6_gdHJ2@ljgcXpA%$fTV-$NTb1Hi?V-!a!TPmj{Ln>=3XDVkJlO#h5 z>l~&OwiNajmME?ij$j5&&X*uNH5qRSx?~oYl$K=X6gw8ByA~DY7iluy;&w~SORjWJ zEy*t^(PX;C;*yzMa*M?$v$#Z)N0YgVC$%CqS+}4lH7&Ek*6$XBCUX^QMt*LptzQuv z0|SW5o0(T!l9-dDo0M3LO*kd7BoU!n0H!)4H8CZ%s2Cx`1Czmf(;n zElR~MQ=D9sSx|yx2RqCoFvqhN<>!~cZM(%%TAW%0^%>JGmc*j;;#+J*sU@XFdC82R zP=sPu1_lOB1_lOaP~>?qFfe2?)H2pExG=<8)iPCyl`v#6)-a_rrZDz0#xT_~*Rq5& zH^f#DWgX+cV2N$M?*`1q8}2-%P=Bo=%4`s(LoCg~ScmSp7T8S7c<7iX5F z>J}s>XD6no7V8&e7U;)k=9Q!t;*+ zHWo$>MkYovMjjS6CO*a@5e5bZKTYmi0&tV`QbF0H7~)Yegm4-tvp_?mh#4FTC6xu4 zdFe%X#^9xEc^Ye;}K)L@Gb8$%#*aoookqBXsb`G1|{FKt1R69`eDh6rb OVdP;HVB!$uUg{vU|^WXFgtxK3j@Pr5C<7^FfcGUFfcF_FJNF`2xUlNNMX!jh=S0JQH)?d zQxp@JW{zS`VMt-hVaa8UV$EfXVq;`TWyoSrVNPR8Wys=4VFA;eDXd_cD}@bAbEmL_ zX`U1gFwL97nZ}gP9>tf+n#z{SpDK{XB*`GjkSdtMWy6rlv_L3@dm&?#Fi0kaXAV;e zZwg-vOO!|oV=#jz|4WeD{WO_wvG`;bm)v3vDJ{rJtzs=LNz=8cVgpfzW>uUJS~n>b z&df=L$Qm0#gp7^gvc^WbIjOf;ocw)*i^Uii7?Sf-GV{`-t!!gsinTPNbz{o)Vzo6v zR;DDDB;H~xN-ZfZ%1dShxde(?85kHq*clX%n-~}vN*G)iVs&DeY8h*pY8VzU)-Wz) zEMlo)C}FB$Y-UVhY-N&USioGvw2+aBfsrAYp^&A9VF61D(?Z4+#uR3dtP4YING)>> za|%leD~O-Mmd#Y;Qo_1`t%i9aBZ5`SQp1wMSjt#j;l6f67J`D7v#QHEBQ-f&AyFZzvLv-wp}3?dGcR2s zEx$-1QNhXISD_?dAvwROC^fkxr&1v$wInsUM4==jRUtJG5@cLl3JMAeZizWLNr}nX zAmusv$%#3sdg-Yp1x2Z8sYOMpDKNzvZizX?shSEonc1ld`30$Y8k!3Ec?toQB^mj7 z#(tkc!OQiMiGhKk2*i8|BEW*mw^$R4lQT2jGn*n8)Wo9Xj9YB!Mfs%##kbfXPP`?8 z&5gI1iz|z738kl&q@<=Lmgbbe9Iwe*1d8rk%t`sVw>V&;w^(vA^HMx1Obbab`)XZb4#l zc4B&Jv3@~jfqr~uUP)?EUSf`ZX-Q^Iu|CW`y@JYH+=-Q z$}ovBN-=UV@-PZ93NW%T3j8mUWnf^?6urd;3ZCTRB4JSQF%_j2iGmnxC6xu4dFe&q zFlPpda5(w<#)pQuS={1;vJA~`@xYn!POiv2A6K|CVYTo z=Hil~Tm13yiFtYXC5a`O`FX|h@weEM^K%O_b5e^0KnVckY;a&A5i(#0+T`Y^l;)(` Zfl@~?NQjG(0}KV2AvBcyDZ$0X3;-uSVVnQ} literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f60a428dc4ca0e37dc1aef7b574e1c633c1b24b2 GIT binary patch literal 1293 zcmYe~<>g{vU|^WXFgx9fg@NHQh=Yt-7#J8F7#J9eofsGxQW#Pga~PsPG*b>^E>jd! zE^`z!BZ$wO!;;Gy#mdN#!k)^U%9P3`$soy)%AUe9hbe_Mg{_4(iX(+Fm_d`{CCGF? zO{QBcKAFWOw>bO@N;32F5_2>eZ?WViX6Aup5{uG{Z?P4nmXsFdB{PCFKrx8T%)r3l z404eO0|P?|Ll)x#rWD47jEoE=%ry+nAUl{6KQS^eIH%^76eZ>;loury6r>g@q~#YW zBFiuJg-6ciK`JTi+*@{2N)6LWGZ6$&y76fzQv6*3Z26pB;J zQbEQbX;DZ?P0P$nP0>?uN=;5IElyR)PgBS&E-pwlv$jam#&ajl%J~*;27ee zqflH~tXGg&lA)uJTbfgnS&);e5Kvi?k)KzrqfnBOnpvcfnOBlpl$Z<(jA9*y#Jm)R z-2CDauzC4uAT_xP8Hr^eV-vyd%gie-NzBPfP0>*(Elw>eRwyn_OG_r^Ara-+Nk`D@#)UwRPl2nC~jLc$%g2c=`i2Vgc`DK|YsS1e- zxv9w+iFujDx!^!7Pb|s<(EUl666Yn{4}sh`K3kZk))7V42#ENun{F0sS3%ZMMbH3 zB?|d@sd`|Ii871~4B?JJex82rR**m{R!B+(xhXTREI&InMIosY|S!z*nW_}(hmJ2cq^tb|YQWJ|)6^c_+ z6*5Xn3W}}t_0uy;GD?&5lJj%*3n~i|^$Ri!^dTui-_+F7671&0l(Nj^RE7LJg|y5H zkfT7JD9uYrEy}3`alz{KxIj@-mYJE=`tO%*B<(x7dnHQc{bGZn2gZWtOBC zf%3Q}V-YI@1H(#&B2anoD_%b%KQ~oBy*#s|#1Kjar55Dt`(~yj7JK;m>gQx8=@)>L zu(6({esN|=s%}AIa&}^RYBAXN@!$lVmzbkpT9TPltdEp`^a?6(al}LOB|9i9bAa+U z4;v%Xe-@4+9tH*mO-4UW&LWW9Ew+-%g3P@1A|?g~h9Xerza<8W1-SWo$vK&NpppaZ xk6X;eB}KQGGxJKo=74>JL~t`OFx=v>$<0qG%}KRm1li5Tz`(%4D8R(S3;^ydj3fX6 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a0ed6828b508590d9bde1de8a726dd77afc4c7c GIT binary patch literal 5129 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed4767f81731c662cfb9c1c32fc53da8c62f60b0 GIT binary patch literal 795 zcmYe~<>g{vU|^WXFgsn8nStRkh=Yuo7#J8F7#J9e0~i<>QW&BbQW#U1au{=&qL>&# zY~~#1T$U&nMurrYDAp9#D7F-~DE1WgRMs@6D2^14D9%)lR5o#jR8Db*RCaNOD6SOF z6s{JADDD*QUedfytMqH+{BX1{5(CbmmoK2GTvehDJ{rJ)nvTI zQCyIdS&~{&QpKWIo{^);RK=lJl31jdRAp4fqF0hsrO8^w4i>4X0trCKoGPebPE{2r zST?6BH?fLEuPU=ZlNlZ<4n1UHnn1dNKS*k39QcFsU@)SafN>ddw(-ac&5_3}%6f%ny5*3p3 z^NKT5Qj1bk6cURS67v)ii;^=k%Tg86GILV(UV^L+anocjVrF1qxW$^2U!GcYOUNSyHVrs}7cXO@&0LaCtC zf_#17%#_4p4_{yXoXjNsg36MN{5)elOa0=^l2qM-#N_P6^weVgg3JQ__{_YL)S|q^ z9R1Rg%$#C<4|d5b@@I3DWSc#wn`C`dR!;lwP!$ic|MSj5f1z~HCJbBjGb zJ|#anKK>S4No7H1UV0HI1aCf*j1b)5 zTf7lb$XvcC&j1vDh+_~Ezle>2fdT9yaNr;jpyYmw!zMRBr8Fni4iw_WLJSNHEX+Ji RJWMQ%EQ~DdAm0cu0{~zs(wqPQ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..874073f9e37057bada9d8c55b2c5125eb5a41bf9 GIT binary patch literal 1605 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e1569b59c9fdb1233536ddbdd6f995a202fed99 GIT binary patch literal 956 zcmYe~<>g{vU|^WXFgx9knStRkh=Yuo7#J8F7#J9eviWP!W zlS_+ILy8jfiVO0KN^}(R^As|3K}2m!~S^=jBu? zq~t46b1i+)V$zeABD_fg_8VyuKb)7 zkb5%{^HOqB6+(Q1%MA65^tfJv!rCtxM8YsA#5oxl7@R?&Uc$h@P{NSKn8KLNT*Q~c z5X?};lfsn3ki%5V5YCV%!opC(T&c&%0D_SWAbA6Z8ip*E6y|K!B0CVjN+5+Pg(ZhI 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 F7XVV1!P@`; literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/misc.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/misc.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8230fe0eb78956b65f5b436c87b9ba5c5785c303 GIT binary patch literal 21656 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 L)W>J~%f=1>6u`>W literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e129b46f72f898ccb66d5f42797154204a7c357 GIT binary patch literal 20339 zcmYe~<>g{vU|^WXFgtyF90S8+5C<9aFfcGUFfcF_M=>!lq%cG=q%fv1mM9iRh7{%$)*RMcwkS46hIED$wndCl?5T_kI8r$mGDdN^Go-MmaI`R_ zaHMiKGe_~bGo)~)aJ4X`aHaA#Ge_~cGo)~*@U$?b@PPUJsZ0w5Qg|0KMhT|yrSP{f zL?Rvn3WXrbt5BQb^*`3mH>npyIL%8B^q-YlERe2lwvxEJxVUcEXBNqAxhqzA;luavV|eV z5*$tn?hGkbDb_6vDc0cdQ3RW012su0#WuyRg&|5g#XiNMg&|7Cogu|B#i@lM#R;ri z)tw>5ImM-gA;kr(Tg{yz#WlsPg(1Za99Qb8>Z!u1VyV*2%&F?B@~Mg`?kOHE3}Bv0 zs#>a4GjodP9OfvERE-obNrqI76mJ`b6rU8|7KSLz6sBMXO~0x-F3;S8oYdUZypqI{ z%=|os{4|9`g|wX1ip->(RE4tCqTOQT zOGX9;22I9WJjEqNnR)5)C6xuK#VZ+a2^J(46{p4*r52WE7J=QU$#F~2FTW@^F(aYC^AdAY}zQ`1q9! zMM4Y=5aL&~enx(7s(yNTW=V-5lnP2M$k+GHOi3*E@b%Tt$xPBOs4U6I&okDu)Gy8~ zN!2Y#OwLYBPc7Cj$Sly0FH6l!$uH7R$t*4bsfDHhy@E=x^Cdy05(@(Z0|z4uBUl6@ z6qsR!R|QHaq%gHGL@|R3t`>$UmK4?$wibpcR!HF##g+mtl%m)ng;5ko3U3Nu3qurV z3V(_~3qurFieQRR3qurlig1cZ3qur7ifD>h3qurdig=1d3qurNDu0S(ic||jGh>uM zigYl8rpzsNXyhg{A;l5MaUkpr@&_ocY8V$VEM#C|s9}g_tYxfWSin@nxR4RdXRc)` zVX0v%VQpqA*70I!Vk}{+VQOYfVa#SJwgK@|7=jrznf!`C@vg~!ixrf73vRK;gXp~U zTdd&Zdy6f;AhD>V_!d`Yab{j|Nn&1d>Mhoi(t@1STg*ABd78|(Sc+3~(rz&pgLRY? zBjU42n1O)-lo~SgGE3s)PNl!c!&}d&w@M-!eGzxFfcHb zFr+XxGd3|o9bP3@kdvBNoT`usD+3fV^Ar*lic6D{a}tX|Sy0$7zXV=Fq^5xLz)Gef z8BmIo1rhMH2XmEf!GOaf>sgvLF@N zt+!b7OEOZ6&_h-*J~<;bIXfO~61b?+0J$CHDh5UY#wtme>oL?}_ynG)#26SDY8VzU zfRYg-Lk&X~V+~^#V>VMT!%9ZKl}ttIpiq+l5uk8FcM)5Bd}?8Qybi({T#QwGaA$xe zaoY`wW0>7M48aUVAn&YXEYiYbU0!N@yaC8MXpA9Q29m;U84i!atS!>SV`)xFe7rHp zQb1B`^7&T#>Xdv3NKKR0>U6RC``av64XR3 z0Vm*QMyMA-87w2QIHL%ZepfO=iUHIT090Cml*Gq7B3X)5PC+CwtcB+vka3`Vp9RV} z3|UN|+z&2ht2k7PHPls$)iqZ#-{Opq2NzNC@kM-~5CA2{B2bD#&rlrk@kOZxMe*@2 z*qsBB#BdHMB*3A-29EM9SgKyhScKCm_IOaqA0O|IWD`Fk>lT+3;R|k1-bF8;4c zf!qbEOE?%g*f^LuSU6a~Br}|3W@0P?sl;eyaKc&{vrt+Ypte>Da|=TX3z%dDlWbs; z9ZYh7Nlq}y1tz)Ya73}B@TBm9+ar)p4;!Sr6UCm&0qN>AGe&Vjx;jx@DPk$&;I@cF ziX^x#B9$TyZi~pI$b#A;DRL?DEeuioDU87knhLkrp>0aPWKbFhWit>4vEf+_RHuV# zx@=f71Bcj3=39(qw-}ReF&2RN5CYO9u*pfxO-f0$3t?bj_zW_yN&sq&9!!b|>sX-q z8e%f2lz^}hu>{J*p`f^RVqjpvZ6YYafIYxezz3#LJW__giVGAIulW$ z5J7blBMF;`5w67fKANz}aNjc%<@*?ziJBb07;Szr+Wlg(vHitlXZwrE*7g^(t*z}Z zraIeSOp3M`RT)YuhqUfsR)T8(A|;T~;1mZYKS?RA7Tk?n}^;JB6W?p-2eSm;^Nu+*^Du%$7BR20UQaMv(5GuAM~^MIS}oPJeu&}yN$AT>ENtx_Qo)_GI_ z*NIiUe)%N|Wr;bNDOL)qMO93CTAEBnpjxR2R1s7utLtg0D}Y+ii8(p><*6y)F1%`y zLUMjyaY<2PW?o70%YXm>{||A~jDMeBs{h+3VCOf1l0qRlQVl0Yc zP0qR@IBVFzDU!8@v4**ZrJ1={ije^{R8T0D!W_(?$x?NaO92X;LH!hk%ru3P z4A>Y$fUMEK1CUX|PfV$$$^;D3s(YfDKScOiu*$P!&qR zBNWiSsvg1&P~Qq+L@;=;Mj^jQ!3v!0tP-Ftiv$IbDWHBXLT{C%Y7sce!MmEUWLNAK zqRCYR8doR+)rmzuutaf-D<0H_NG!=OD!#>>o?3E?Jw3G~v81G^$PAAMvJEBqo={ zLxW@*$Y-D;pMi;mQ2{h^APVyZiaM0i6yyX@2@UoQsHq3?38I5uECccjxO2-~q*KBK zYP1v4SqBY#r6{NtYcdxpgZ$zLB0$~$A}n1eaMN=x$nhYDFfhs>RRtvU$w5^Nte|BC zcWJ=RX3AHnVaQ^tVa#Fz_0Pe*Wld(Vokam4XMw^QtFu5Q&O(Hb%(ctSex7y$`N z+u(o%wew+af%jUAv_aNk3jk1ydnw2!P;4+TR`DV10e8dkx;PkFSlAfhkco|v?K>ME2Q!B( zhbR*x7aO>D1nM6#7lHIuWyh7-Ys92zD{6u%jTpU{6m3l{O%092nxvZKnxbS)khCU9 zT2G@OzqkaMpORXJ;A(3`C+b!?>PE$+#A<8A=ppem?KL&+RZvPfZsbUdmNrvL86!uz{Jf0E`2)~)J zmZgR%g(HO%)Xu79tzk;xO5p~x*=m?TojWj_y@n};Pm-aQqlPtwKbxuOK#D*uYo16A zE6B_ekSL2JLo;IvIBQkyeU8Ek~Y5IzugI4F}BMu?DqVHCzig7cxv>EDA|sDdDK$0-Md1 z$C1Kb!dl}61Z!FI zSW<*)S;3++QiN;SKr+RPQbcOmYglTSL2b$!_8N{fwqOQLQNJp2P%AMJ(oRIw>Z-*k zaSbYUKt)P1D3yYmdNmBOeBe5bv6(T9fsvt*3DhbD7o95^Z!u@)m8@jC#iVCYWCzL@ z;G_;FK+XDFoHpsHd8rizMRxl@vY69U-E)0N z0TN=o#aN}uc#AP!lkpa7T4r8ijwUy_342R0z%>BmfH2pfU{8O)_#oFJaMlJHcZ)5( zD8ICz7~ELB#adjDlUV|(gh4|Rx7ag_Q!>*tONxR)R&Wx@mG4U`$AO|CeCjuq87}=Oa7(pZpBOePFSS=q|j)#ejiG_&`)JA4x zVJ>O_b?!km2r>pmJ7|Wa7*zG6&SrtKa1=`_YdS*;%Ob{R#wfN_cF2rQGh-A-3VSev zCPxt{f)YI$85kTDiokP=i8-)j25p$S=jW$b!JC(cdPdO3u7ZNH0%*>!EHNiFuLRUS zRWj5w(lby(R;y=#%u6&x=II$H8lm!&(BzZR_ZbSsMzK)OKvIdI-YcPeP!ii?qfp%_$-Ffekkf_js3jG#giZMGTW zXie6l0+5xANk#S`nyDzcs1}rqKy5HsE&{PZWfdqV6@%K6B@FEhY2Za1EgT&TSvrN5!Bq-WrBj2~gjlh^dA#g+Y>`gCUEdi~(Byf`%EHz$K%fCgUycfFRc( zSD*M0NB3Y&rlM4k>ljOr#>PQ~3pi>d;Zb9R88s-Q!&st7lj#<7VqPV9CIHEBkc%PX zyP$zzaZreYst^XIDtQ8S_-S&Yx48sCQ3i^cTg=6&B}J_uF1Wb`G8-ud5h)H-=KKH^ zm7r+kU}O>G;O1dsVg#2(D7gm|B_IsWJ)o)z)KqR}tYv`aB1Z5iCR33NXb=}R$yBTb z>YbM`fhH(xnQ9nnz;wmly&H94IJHXY2Ci5-Eid&48 zw;1z~Tn>thTfFh$o+N0zJ}t9C1{7wXaX(N=4=T@Dz~wy$V^JR{eZkTej0RPH;8Hpd zX&gM2ISQQRL9^|kav3zsp29hYBZ?K&ENWqhVgogaS{S0(p^JPtpyS<~kkRfaF6dY{ zH*~C*h<531-lgEdtfQw*;Z?N6ez$;)Dw2l)#zk2xd+yLKMMFExaWF z)s|S4lvz@gSX2pDmzS!^QRE3q0H7Ev0!`)=xq`TEAObwL1?nJ!2e^_!c@7pnpcDb( zgR~WgfrbQ`izGlpF=dSTA~lRz44}?v!f;pBzu6`P2ds=Jh-9B1}T-IKrRQ5 ztAd;r#SL0DP!JDp|A3njn8_qDC9AZ!1fs+YluST<6b42XMiDkKMixdPMlMF=YzFVs zAnU^j9C#f93R6hOw1%mMc_DKQQ!QgHQw?JcQ#Nan95^2^Wii&Wq%bW2uRjCTC!n@F zc+88rh7mN<1?tdhvid=?0!EDjiU&|TsTkBZO=qZKh~_Q>Hwtypd`7o=efM^0d1U~mD&3aHu0z$nBB8hB)56k)8A#^W}!;)9W%@liAr z6i%RNHnfN+n!~`r5D2eCaK}J8))*)Pjq4Q62N@2Ec8KAi0Hl8ea^jlI1Q|*c1t9 zl&NSDmOz@!z`zheq$AQ%9RUg$5C)ftpj8W40*AR+0i5-jYFYBQN*F=xW~N$}8c;3; zuPR{z2N)#NK-*cUB^so~1r9YZ0S>w;3=9l0AXkGbXi(6xFmf?*;mabag%|+{ued?g zB&5PFVE`@70#(J}t|%nUVhgsZ3=9k@AP0b(C5%-{IP)gF5<;;b6mB344m(iK2v68C zgNG=fVaLOO6naIAK{2`nM1aEvOn?IjG*X)mavyR4@!$)fJk-bqRd{d*f?D8M90)4Y znV@9|h|N$0ZrRj;%l8td8kT0p6y|J}B99uD6owQQ@Yo4U3hM&q6t)z0lyaX1QtpE~ ze4rK(C{Q7lAgJ+9W(5F=JX{4%6}-SP#~F2?x&gBE6kE}+$qGrjprRk#HY=J3iU?5i z3TtuH&%nTt4~h~{wFOGEpn{!)k%gHJ-0K!$tWqYzC4QRx=L>!a2dPLxq#aOeOdaG6kiR~0_Ga#8pef8wTy)V zHH^i2DU7v@C7?+^P*HLMFbQMVJia-RcfVh=P{-5)UwyG*075+)Ub(zLW>vFEtZ%4aX!2GyfX6LDiYh^aIK`#u>8ZsfparJT<=3Ez=UfnhG=&XXPF|jonVbRE z8V}WkJO%)r(^5#zFU?8GQwJ{uO;so@Pyltd6cY0)OENO^(jjw?RjdYj26_hI<~TSB zqC`KaxB}JTgd3%hK@MDH(kghFqziX2Y`r^d3JzOI^b%B)VRrqAbQ0cn*#?-C$n`K@ z(?O&D;C457(Bl`QZqanmU=1I5JhcckrE!ZlKFBq|$I;o<*VQj1_!e_l_<$f+H_r&jFe`Wz2Q+{KDU3mpaf=zWJ^)lK-x7%r4s~<$j6gMxGqX6pI5oE{ zwMdf#(pv(J@7!W8NG!RBuW6uy6g1Gl zzzP~$tW;oR0KrIxJSGFsT4E+pX_Uf< zlt&pCFoQd3pwdVWR0@HnRcaU)GDFHFP-%n2V@qL2;&G&KBJsFVxFNh6#szFCJPR3% z7Su3;R^Nk47pQ6cFg0MC1X2VcI>0=k6k#Nu2#QUjDPl-+;wU_c6iFmGsT64>o(zha zvMF*%a`Gt(5MC7zq~*uR5YCV%0SdPXjFoYqaARah;j3kYh8}2eOfm5V69Ypqy!b(k zC&C7#6_RuEi&H^`6li@#dS+Q_9$X64F9#JT;PS{bO`$Ts6gFfFD~TXV6iPA@OB6DT zK}8aL#9Jd%FI7(g(LR8#kpLT(lAj7zoRgWIs*qWt30l9A2R1)9Gd-h3At_ZM5wr`Z zBwrytwFIN-N6Gg$!V)mF6Xb_Vz$W-NE}$KvpXxLdU8> zn|_MH3o{g8K?5GJFGdXzh%a>%k`jwkQ^1yj_6sEyrxulgm4l3d+Fq=XTv}9=npcuj z3EEOnTAZqopQjK|8Q`g>;0_MmM1_>n+yaICG_XM>8KB^YYF0=o1#JUT2&i<<&r>im zFtF57Ffp<)2bo`zk(vvcGSF2pGBz|)&@eUDvou!Kgf3yh2xxGnkY8G&kerd2m!1l? zO#v(j3T=hN(vtk#M9{V*XhoBmp9fZ>t6*$mZla)JVW?+d0yn-qBQ;N3GgsRXo0 z2BAqIH?<@qKLs*V-~d@|Q>;*3TvAl4;Fzb7S%eWmkl=(=Qw~L`C8b4q#R`~nB?=IA zI-rF%e))N+I-pfR@TxB*wIsDDH!}|uzNrwiH2F1|s@Nb+Dexe*CQ}uwE~vp&)C?-5 znTnQ!n!BLkYfYx26(BZLyamJt4QGQ508fz>fz}>qGF7qYf>sklQ|Ggs0d^WsC%Hv^ovmes-lWb581vV(0n6Us*0tcC{-m2L>g4F zq@T+Mc`?2O_eHE zJ+Kn~XuY~vdx$BTF?#kz%RmkTjRk{8@cclHRRe8M+fh@)UJ=wJ<_2-VwrZ+WvBjj@ z7}^=@!+bq?X0#6@knGDFms}0|^;b@##Y57$2UW3&$*H%Pic*U}i#3Y6KuL=QTovD9Dk{Fkl3$dWUbG1mq~Hz;m;m)~ zZ%Mx^Su<^8Uu=25j zSWwKy$H~Xe$IQpX#K;3)0$8*gw9`%qys9BqyCx<@yCynDPd8Q*JXur41`bl)UyKf# z>_yd}0YLVGqEt|56s-a|7@QA4vpL|v2B%w;Rurff2Vrn64oc3D>9tzMbO!K%DMK@; zt_}fDz%hW@|3z^%%qc9{3`H(AOdy=XD#?(-mJMcu`WlQ3g<3UCMR7GuU>WvoFdHi4 zQp2BnNGdVF0an11VFFe5EDX#H*^EU_Da_f7ML~Hij0|}^HB6A%!dj+0 zjuh4!CULL_7qEd=Ix;d83V|C9Y@p6d4XC1J_q)Yt0M0$P7%g9d8alTawSKW_fx}yq z{T6RLY>GX=F(?EwBo1yY3cw|xjm9F-a_d{HRiJ5D$lN+JIBh`&l|U07NIhV1vf>17 z%mmG&7dtaCFo1`cK||x9wisy18xMH-9v5SkTzpO{Xlp2FDiP5phifi62ucBmKm=&j zKovX0@w&G-44^=h1)SJ#F&E?)fSm@Ofz*Vg{i0(aouIa85jID1BU$bQawceMfPs;N z7qn;zZuPL|iP$%^>Xzj8(!YTWlfIq8Moso=q&k z<8I)UvkWc_u^OOx>KdjJre>xhE>Pzh)CC5yQkb(Dinvl(YC*}}q>u}ou0S&i@OTM< zO{*Z*jDiavX2{SjIPAMYu>dY|zyv6PfOn!KfZPunH3Y4L z8_r}HSxilP(Z7B*o!zp9tIB#fhNhS_~JlCIAY8L z6b)dzpi8$vMFltofIuz<0I2~^4~1TCs!DK-KX8lZ*oHB1Yc zLB|aQGt{swU|q-nTIN*Cn!;McTEKNf)|A2qnhYt<1`?*y)IwLl1mX@SK zHgAHrTtZuJpngBB0jOH60N&DxSiP&DS{#Dt#Dj|%O^#b!d8N6jMVZO*MX8XkBxvI3 z7F$k!dU|TnE%x%nqP)z!bnt}#Ew&=a+8xj^ANDCYNS9F-6q4Xn117*p2NbZypr`~* z;)CX8Sr`Q%YiItmFoCiz2WYpbJR}LBO+O*VBK% zK?{Cvv4b>c=A;ߔ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 bn-H%M2S+^v3kN4hJ%cg_3kN#~Hy0xSd|I?C literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b74de8581fa2a069228c38455a9f8bf8b14fc157 GIT binary patch literal 62723 zcmYe~<>g{vU|^WXFgu;OgpuJfh=YuI85kHG7#J9e-B=hHQW#Pga~N_NqZk<(QkbHc zQkbKdQ&^%{Qdpx{Q`n-|QrM%|Qy5Y>ayX(mz%*wRCz$4n;sVp$QQTmfCyED5^G5N4 zX}%~vFwGyuUnK%&2}B8iX~8JLaE3f77KT)z%1Mk2Aeh3z!Vo18B^b$&$7H~eDx4~k z#uO!5#g{6YDwf7*&JZOU&X6a>!jLLnxd)`4kpZGIogsyD5o44@Do2)N3WFp=3RgBm z(LJy&Qc==*5En~FNvBF@$wbMfa7W3d@I=X{%BS#(FhnV&@I@)6@JA`72t+BT2t=u* z2u7)<2t}!-a7U@92uEq8h(u|oh(>9ph(&3qh)3z9NJQzTNJi!@YNTqW>ZIzX>ZNL>YNzU_8l)Pg z@kCjI<@8bw(^#UcprXuC)+tI+HmSBL%FT>XcB%GY=#c7=>X4!`hb_u6MK#JPMJ>uX zMLo(TMI*{JMKj7RMJviZMLWtPMJLKLg(u1@MK{VjMK8)HML)_n#URQr#W2c0#V9Hu z#W*T3MKLNUMIkCUl`|_O#iWd30#gxNifL469!Dz2g0O`QQK2bjDdsH|R zX-uguDK2SDsjexmX-uhZDQ;;@sqQK6X-sKssop6bX-sL1sXi&5VA?m;!-*lqD~&1D zBgH$7Db+W{CygnMIn@uU&L65SAk`D9&J(OI0IDt!sxAnsE;!Z8i6O-|jVaYD#V?I1 zH5j5UjVmfP#XlvWg&``=ogpPKC8&iVB`7t%nK>%KogpPSC8UKRB_uVWnK>%aogpPO zC9H)ZB@E0@a%V^hPl;$@NQnURlie9oB2%JT7*e9Z{1kVFl<1V07KW4&>D^1%FjcZQVwl!6w9lmalnz?~tbFr}!4A*Be+FLY-}DNZSAVMr+f^NZXW zQc6?GS{PEw!2Du&hLrM@iWY{H3NXJUr81?eg(0dmRVJz|wKz*AN+yLPm_f7VC8&ha zWW2>!P?VWh5}#I@mt2yWpI61D5|mn&S)7@lr&7ggpl7LPP^!ehz~GZuRIK1$T3m8? zNm6Q#f<{haQL#gMX>mznYEo*BUP`KFm8ptLVo9o%f{}rtp{{|Eu92yNp}Ccbk(Gg= zg0_K?fq{aCTT!Ntf|03$TWS(mnWlnDmA#5*ij_i1Vo_RVPO4r(rGkZpsf8I>8fJ3ya?8v~1v5PJ((-R{WfsRn9dnB#B(cb~s3^ba zB{Ks9!)HcNkiBGJVqkbF0xFI<7#J8pAyA~Cz)%e5Fc=uTOkrSPcsU!U#{jI;5KJ0@ zNnMiEd%#>Tq>6t0FSWEK~b5n1zrh_O=mLgdO28JRz5TOhrR6vHY z-C|7yYhz6YQAG+M8AT8QN&rRj3=9mJ3=2R+1BggqV0a0tmNFR>KwJS3!2uFu0TGN0 z3@;l%p#ZA5UV@BzDFEVvg6Sm-$U3H5OnD_yOv$NLtfeJsx)#YGQBVkjFo+Gp&Y*DC zU|?XVVOYRW!&Jk(kg1lTh9QNqhOw1NlA(sNgt3O9nNfnFgh_-!oFSM&lc~zWIX|x~ zwWvfPQK7h`C^Iizp(I}+Q6aB1Cr7s=wJ0|;FR>&wMIouOB(+!}KPf9UxkQgkK|w*m zPm}o;TWVf%eoE>s=A6{LTg-l;KAJ4I7>jSQ<)r4Ng8~{Xotc+@i!BwDFp5_)6j?AZ zF#Jl@&&bbB)lVo$G+B@X4_|;mf)ou^3QSFwB2XSJ zG6SV0a|Q;6TZ{$ZP=gSbAQ9%glH&a!kAaL~VCG`vVB}#evIlt%l-xlc17VOyK`OwW zYXW;Ng;A2Bgdv5gnK7HW$fHWCgt3GP6Dk7*p818EP487)#h| z7;2bOIK&ww8JZc*8EP2|V`>eKafK!3l%|49s9Qpw5FH+14G=NbqQt!P)FLBr0OuE_XflH%;ud4xEyhep z;DZux5iABWkAq?WRJJj&3NSJ;N-^><3NW!SiZF68iZK>>gJJ^|1E81yVO9nP26hGp z25@ZbVPF8|O9mDOW`=CWBAFCW*fC2m2s30e6xrmlFf!!Hq_EU5rZ7t|)G(wmi7_l- zNMT*bSi&gIP|KWGQ^Qokl+9cmQp1qK22mxKC_{jffhJdxA&6}ZiYYF4ztDI${~%w-kRn%*04Q;k zCYRh|E6oFy7@#sgIr|nTr~peWDoU&@atEu*%qvbUD$!&u@&t2JGSf3lif^%{=!PoC=IGOcIP7OdQM-Ol*t-i~@{Ypqv;EihEG9 z1t|hyP&(j*#eD`i?n@X-7#A?5Kyx3ccv;8<7GVX&X$m_;M4X`+6yuC3j8OF)klYH9 z1*_-8qMivd3dNpLNeT+ z$r)f5LCnug&r3}KJ0ETY#F6EhIXMbRsR}8XX=$lNsd*&|nQ0)Ki&7O5i$DPdYRF~g zfrJ#2N4Juds8I-u$KxvlKfYE@lC=QgALCF^+ z1j3*S1zuxr097hXDU8`nMLa1?!Js0asg$9}1k?aYVO|KXMT=Dm4Qdz{FxD_HWMpJ0 z6alGAVXkEVFedMI<@Q|-8C#A-6bqF%*~87EZGc21tqL0 zETBpV$t=GbwiHlBwg#+&4M_)EHbc=OOdTM*HCd~&obwAR6(Fq?XwxRGC_fjJC{y#3 zvJ{Gol0l^ysErNcrW8ZlJPHa5o@p?BnZ*iz`FW{23dtbDKuIAruOt(cYVz|+QuCl% zia^DHUy(YfgcDB9OHs&A16!j|l$w~Fk(#2(c8jGbH8JHDYk5&-N$M@Ol+3c+{1k90 z1*wbJJ^jHIlqSb5=HjB{Tg)lNB}Jy7IFAMuUF=SwZo!^WuD95da`Kb2i*IojrRFAP z=B1<--C|5ak85s_W1;?HU}Rt@1{J6bEF6q1j2ui{j4X^yj694iOe~Cij6C47jDwMf zi37^wVl2u8+3O2x!!ha>feNx)j48JmlZ)&?PGKy%#aIq5J8v-t-(sw|#aMESF(erj z0-%%w!k|hJgu#^{sDMppsAVi+aAAlwt7WQTa$$&7ieai{u4SoVs9|93W`d2>oy;pzd;38 zE-VA;7L`{(5F`^SC@6#$gWJ3c&<>AYPG)h5h9+1;Q5MLn44TZh_&|1mEQl{jOv*{U z#gRGf$KC77Ix37E3{DQSL2Ph!W?KcGV)XKIOan*1^EQ5QE|{kO;{R<8$?QLw1r9s*{lGSx6+}4XsWF28MVPM}b60bySfXsE(II zbqQ+E6t62l+LKUR0TLnA6}Lo#OOuLI3rkb;N{~ay7}Z_5nZ?DRhBm0_40B^@MM-L2 zN-C@yjn}bV3=9mZD2@e*U^o^u?gp-%3_$8pYNr(D7KSL66qXd$76#B{ObUAoLlj#I zM+#>PLlk=oS1^Mn_buLdpZs#4)UwnZ(70n&r%!&lZVreGX+uHBqZEQ61xqogQ3dWl zfV>52Pi5w%!|Qa<5>TI{6jZZk<`tKuCW6~yi3&xj>7_Y|pizjNROkp7IQJKWi?YnT zba1t=prDYLoSa%*3^5O75DC;ghBsPR(KGY#qJ;P9OUX4a*N$RJ|rmA&-oU6 zMq+VdNl8&r56B>v{DRcHTTE#wn#{LYic@paZn1zW{GxJ@RjBnTsF{$Nmst`Y4{FGQ z8yO5tEQ|vGSeTjqvaoP5axqqkp+u5id^|)0O1lr#3IGKYxZMY8s+2G+V60)tVgj}5 zK%QO6=%>kC)C+PRYjRG0acU8$`?HdFjfhpx&W*{87v2C zfiN(DMxhx%%@nZpd<+Z>Fzag=K|^^(Gr+wku=PdpAPd2kGeIl|jpZV>fWXZRkfJ&y z7YL!c0Mtal?EoP(2QV^#LIA}P3FwXhj|rm2O%X^@Ba$P~f&r8PQvEbJit0dy)q@Do zAahY8h&3HVfWi^tUyxBqegsQ!3>&mx7gz$ZIHwnpmC3!#NuLwl8i)9_q?bqwOAps zSRpY_Au%Pfpd__OAt|+_JT)~B*6IL_B*1e!O0xu3(kO&vq+*d!$j{5Egz3ynO-(5V zbviN<%Tg6U1x#X!hNeP(kpehIG&G?NGLUVcA_-Eiq{0UT!2P)L%;Ho%a7P5xV@$8g zEC3mhRFzp^q=4ME%PdwX$S*F=Ov*`xluQZ=3Xa%Zn4DjllL8v+01f)2RwU*Ypd$IDB|4xvf&Ap`R4}U~u^?3;CABOwIaMLGBw3FO=3QubgM5++ z>iB|ckdl0mP2jQ?6fz1RiK4v3oSaICBa=bh5@_CJ0F5YsFgSDiF+v7L;~8pLQb1z~ zawXsq_hzPAmK0FY$WX(a!jjEYWL5$iJz%V5sbN{bypW-mxrVX8CWWKg_nZjPf5YGiRi@Rz^4RZ=dHdE1wDxMVf6s8=WS~ke+ zeF<;nEa>1jUkWE^+yOEtUjs6Or-p3-e+t_|#u|orff}Y1u56~F12qf_1Q#+eGURd8 zFf0%Pv1*u8xU-oiFcv95O&6|ZhnxNbZaNQ=>0q-aFcyh{-6~SUzCd&#Lk&Z`SRPjm z`vP$YJDed;4Whe-A&X%GW3f#QLl*l236PyBAUAP0L01rfJAu4aD$ed&g4C0fK%N1y z!G15A1>%CM3@`!m)-BM`L26EX{9%ySKvgdTqX1(SKf*aFAX$_)0;s}*3VR9%Xb8QAA)Xtg8YH%WH-$5WYavq!A4E?IJE#d- zW#*ZeS(2HUlUbDtZWe-)38>`^9$5yL%dq4D8d-tork9+cKmj#-elgkj6oW!QzMF%i z801N&|5eO-=~aF&|Nj5~zltlfIA7Po!qigN@D_VfYC%q7a;heO5h%gj;)a=>pOkfr z!^PFj$1%j!AWzYom zEk0<_$H#+w0LfstI8yUcia|a>%&2HWT0OToLAr`d5_8dKAB#YPzQ;k)3ZDC7=40ew zWMgFd%f=$YC!mou@Xdp<_5t*3@MaAWkL~X z9<~TPJ`Ya(U;>l_z^${ZpkU$wm8Q&Gj6#e;;DOXCURdyeV*(>o;9Utn(C9kI=L|Iv zUo(Iv@Us}2!7b-(mLe}u2rXcNgdC_f4NB9{^bX1=Oev6we};I5LcSEx7%5X#EWQu{ zO@AaRlxO7Uq$=d4mMegpBJeb=pa3fULB(bzsCko=3U1Jpq~;+4(od5WTquKwu8Y7W zAGizzw=c1T5~!R2hr)eONP$`b3@m(%0*n$UWd&FTN?8HQSn#p}6hWXcDB=S7v4$aw zF@-4`)V*TJVoG7oW-c-Uryu4ThAfr^tP2^yDG0=asG9-`#Uc<1N=KkH2U;x%YBzw? zFr~0&Gr?p_I2Le%YUV7i6n4-QDKxCv7O=x*xKU(yikE=XCoi}Z<)~qZX8^fTld~$? z8Pv-G&n!Wc1GMw0r{I^57$8$9&VV-DkfR|bKQ9$Da+X=5keF7IT2!7`lmhLUf|9de z5vaphbO@AY=Yt4P@-EsAYRZF}=>O~g*E2JOX!3!}b4a%jTwQ^xQ%L$|P0J}Q&L~2} z9imJDg?14*J1hnn4emo=sR6)M!wXQXN`cZp3mYQ~lL(^-lK{Bt;$oL#lwx9Icf-sJH@Ev8(V( z;jS9S6eb6TqGwN4Wbj&i~`TWgO^BgRLPa*A%<4JuWF88jKIjDu23N{b*9!H~*B z9XyAfs!)&*?%aTSVVR&2ZA2ujWQ1fBEScjLOG#=@jxxv>paua0a}}&9tOt?+H@#8n z1yG#;$_-$bMSyYws19I|U`S!iW-amp_mLQ~7(k0fvY5bgs!X-aCCoKU;5k(R(0m%W zo&cw>LY*3h1uT&H*gTFBR?u>wCa`(I44TYU5y7b?;BpDOM@#ZSe$`X(OHEHK$t+7% zC{9hyMj9pq6+oHApte#{W=aZjPXXvr41-~!bu;N+Q;lV1*+5`~0YA}D!) zs}RtV4ahhJXrNz{6`W8Yiqb%e(m@1hHW4kYfJV1cvo%1$3>x$SRV`wSpms87P7@L2 zAP@MV1UD$CK^Pp|Vc_6SVJu}RGD~LwXMa%T3SA^tELW&i1Db?n1{EQNJSj{Im_da@ zEpr|hcv>2w4pfbU8ZgZ81`Mcy!dx{CDPiTMR+K1!`ZciSFZpT6v(wlbE|3{%u%66f z1yCTSq^4!&rKad86hTsKB4~v}C3y87Wa<+VtH`xUX#uD@clCEeq+LI7KTwnH7Aqvv zf}^1n6wGBH0$luqT0_uGTLc~>D+Eb_>kx1&2uy&RLZCcu3W^1Ai;Y-=YBzp*s_?L89{T%HH_H|MGas% zhAi+Zf*R&xi^7H~ff|M^)&*>!bYII1?T52hCP8}AB^;1k0PW?2qKmnP8QM}{Dq#Yx zLojEkWh#^dwH8vCAxkQ2K`jJk&>|{O%d3VVp1B4Ttt?gA&}aq63~239u>yF70k${< z*V9$vuwi&u0i2qmkdj!E2yc*{0);Lp%)zB9q-_Oi?%(1G21SelsE%glV&r0iEG7gk1Ylwm0B06HMi3NWMAX#aG=ULIpr!>lmOu-7 zOTbwKDMp+??b8LI@PfsOTA>rTUB(CvXGYL)I6R!W!0kBb(p7LcGuAM|+p~<|aAvA1 z#u3htM6L%~t^qEd^AdAl3wSb%6~Oao@DVRifdxu-3W<67B^jVmLC``9-0=l! z9HQVR5-5Q~V&oDisKF^8On{RAEjCEa7Xu1ta1LMr1u`FawFM|>K@Hw2SpQ59qF9p= zTv}=}`e_Q_9>CoSvJKQ91NSx{eGzbj3{*)Lode092N7WRfg-yIoQl9sLl7WG7R_Z~ zU}%9g*EkqixHwEWSUC7NxHvdDWH{tGSh;w)gg8XO>M#a=L6sPI;Fr94o}wk7sk7qX zTu@-5(svdCt1sMp2 z3_hkMCZ{TBfL3HEs29~}scS;YI+R2V@&!B*gBJMJfCke*37KI5V+j+qxycaB02!)h zDT2rSElwvNe`jydIvjBK2il2-C_oEn(11@NC@Fv{7zRc*M9Ty`42Bq~0XYYhEkPK> z24Qgi0?nU*S|(W_=Yi^NCYY0$AvS`e8=N{p%j(f8MQ}x0if{lIW0fGZX#{ZqC@)|% zi{Rk`TKx{P95gVqkg-SrG{gwyGcRN;Qb=J5W=LTTX3%8wD+Xzj@8$sau8ToU7^kQV zOGEGg8@SNZWCDlQEw18{#G(?&Km?Z7QqfWd28K$Ii$RkR44@TCU|c1E;%=njLk#D` z!w%FAfH)W2BZEgK6C~uonFpH_KoSigCxA?1V5|~Cu^QZU!8_FgjuMbR!2KemC;_Jq za1I1zf*g<)AYXDYvaoP~AUim7;LdSA7*j1#EGf(>EZ|vH))Y4ItSWm72Y6PMGldI0 z&BC3+1DNx4SS7jD} z6lyADB!b#Z3P`SmX--7;jY48kdTB0VNgrr2AI1bQC^v(1CwKz}C})DUU@*jk7uaVp zq%fv1G=pX&m_coCSlZKM@&k`_YqCO;A9%o1rA6N zQUU^}9Z;dt2TD7jrV^-70j)-^5`sr0qErF(Z$Kpq2!qlxD35~O4H_#1xiW{L7Chz} z4=!22BPnJzjG#Fd@Z1Wx4Fy?!2cAP=&*Q3LT)?pqG)ut(n#a^+@dH;~;E4fnM^uv& zlI2%|sv@xKH-Y+vY)Mr{pzb2rQ{ZX}Tx4wljWI(8AtBnpIRs3Ay$V`>Jq6@dP*!FD z4?cpXp?MfNn5y^?9tH&)O6d;j&%q-JG`x(_MDfGYL;;Dx8jUQ_<_ZhASqN#auz=e0 zwM>PO<_ZI}S;z`%ywotJFhHAyj9{JYB@CcNu3+8lHLS2gn*%af2KGESEI?(&El%** z8>szQbQ2VA7eNFl1U18OFC4P5oW>PC=X(47iO1#3Z01w|IbsmKlkb<{A5c2I%_Ct#2sP|*$z z*P^qa5W`lMgW5%#K(>JV#em{!gK^_CS92_pN8XG*gt^i7zph+FjV0jkv0v70SIdp;tG;XNL3K22%b!eKxqNegavsYceQy9)Nlpa z3tCpe!N|hS!oKzqIGBWcN%8Nj&fr}KNl~-b(LTW{3 zaS3Sr4mA7*ttY`t6JT{tK~a8LW(sJHfOb!l$w}RkY9{mEP+zyNl+34WhF@M%ErhBS{Kg@ znw@0<&AKvjFp4lrfM#StYobJu(ggOp7gTJ4QXx2MKttq^>L`V=nW-4osAdFZRM425 z-z^SM*$3(eg=jJtf#+Yr{&@=W54JK6B=G>`WJr<0!^FZ^h2kifdBl{bnvB1+pdD?{ z07i0Y5x5fuPROvZhxDgFed(2qMfY(z3sm$z133#+LNPE`2_T0PM&S!m1j67j0=0@k zH4JnHh3S_@aB6BcXyhspG$0910H8J@$b}%6Aspma^c<;80d^a>Yy}hG0v1%(yvF4$ zP)MQF37|F>D3^hq^#Po#z@vj=pxOsizDh9EGUf@DfOcUqWP$1jMhOPczRDCP@E%F# zY?h)opkXA?gp?#h3=3$(185TrXt7EbBXmz-Tn%eBLs42`4HGTa5xvyfpQw8o<9z_cFtV}28P2R=YZyeK`ZIF#5veFSUFgWKr*;%s4DatiiwC0o-}wR9b*({DrXc| zicAWqgU1-fog$bb)WQ(O171zX5XGCym&KpPm?D}Y*1{MikRqNU(ZUcVm?D`X)xr=Z zl)@d%peYO5p#cgMe{d~Rl?Y-(*6Ks*9dO4C6jY$P4YalnvLgbztq`6IJwdB;L31dm zJ8PgjJ3vWC13D&C1nNOy^snF<4%AO6VW?ruVyt1xVya=vVyGcfYfnOnxB{`>@muw>Us?1*%CDLDqwc zR|du^Q536SDsa~gFsn3~{M_(Z1!|dstWv>g6-)(&RUn6feFZM}89?*C3(-ewz*!HA zAB#W|>NxEL73d&Wq0ae$Dq~P(3APke!-7ilBEAyF6h_bjJ#g90ki}Hw0~+oxWhl}E z^%iTvJ9y)n@<7u9Oz>#|P(J{?qZ``)1G7sRic-L3F7pBw&?1CdraTE4zlO1d6*O5V z!2l_X!DT%gL=0T=vVqH8mZ~~%xtmy`kego&oh(WM&+ed>!k~d~P~Qad;=q5#YCRX?*>bD8oQA3ZzN^cYV={OOSFcP!xh@u^CuE zSpw9~0%Z@-M6Uo72crO!1d|YBl^{miEwTn}l>?<9Q04+*P!$`<|$<6fyU)?QcF@5KrTWgo1(9v zRi&VUiVNHpfE2l)Sn|{4LQgHAE*ZE8hO`5~eM4{q0dxuvxcPuG>j)l4z>1s%v8 zuApQDI+lfj6_ktw7&(|h(=I%W0^oH5ETD!wxH%w%tsn%MfKobv3JMSgrzMcF>ELG4 z0)~a)lv6BJC) z0#=IRGf)J9at+vLpqVPvA`q0yL5Ic^Jp;K56s4NXNRbE1*4Wm9f*VIUASZ!}SMU;7 zCbUcoZux`46qHv%7{rF>SI`6(noF2Un6f~7gY`;4jbO$Ure;u)%LXFj+4HhM$75uH z)^%rrR@Y=R6or(4axr@iqd4gB6L7nra7GEJ5e*gtHISit^}u>Lvzdw}l(2$Tuz_?z zR6y*BXV2p(VN78LR|}x_1ZeP&djSt<6*hS63q1W%^a2)2;M86v;F$+Gr35yb3@t5r zk%ADs|Aiyi)zv#b*fpdGl;A-f*$PN82@2p_5LxHYASlb#&jqQF1vNooMJp&{++r)w zNX<)5MN2E-!IctFlz@7kkSO6|6a$Y9iZFp_876QO1hs4hRh+mJ3@E{Y8(s|Hff42^ zdBhSoP>}>3^FWjeA%2>S5YJ<)!$IRooggQIQX~U&l@Lk-2G=?$ZUHF+VNgrD800O` z>WhV-tjSo+S14A)7{~Ih36fa?+KHN9qyRd71Uzd9a;kbUxBx@S zjUcCjvLkHt@+T;A!Fdl%fHNRRd_2gw`1n4Mvq8N?$j*8u^kN034&1o_S5}(B1jfZc z=Q0$10a*%a+ki{PTdbg(+YnMp`~pdVde@LmOus=~P-1|Ln}N3aBP9X2lZ)OkFfj0e zTnnmYIT%?$5dy8Aqe zB_#~JyN?lbcV8+;DqAXhGgB023Kw|e4;Q$*!Vtxs%8|;I%H7Nq#RJ^}#0%X5#FxsS zDv%83Ur^vK0G&4qtrO2kpwJ=19r%I&Arzn8M zBvU0)6jPMIY^hYy6y+2ZFk3oRG(|N<4a}BF6-`l3(Ezh$Q$yi5!d!44|{xK=MFt{ED zoi_m+_o`utX9V|ZA>9sUFq;KTvVuuAP>VC3BLy@V#0e&$JDtF?JYbR+O!9$AesF(S zAQLpqD+rpp*JQ1VK;A8c8kc$spx^-Y3_zo7`30bP*u)&LAS@0*T@2_U8<5C_Ckutl zC5#LV;K~r}Wj{?J{LxXw#K^#Ki#^EIJtQ)~wTKy{n*~I`qoarw#AO2!;9($8BtXKQ zosofIC3Lm|G>?i@`hm*oBG8cTN>ITEN&%qm1!y1_3uXch^s+Hl2|xpah;BHjl>=(7 zKKDFvuyOC}%*n3Mz>^ZGfs=Xxf1Fjf;3dp}`Fzz{Nb6 z0D1WqM|?5FvZGingG!>*sh|cS2!j(MroX_Efz4k$Ab)|9ILL1&k*pJe2V;6_2}}WL z{^JL2eul;@*a2W4f(fuUc|hKT8GRb7-Ni_DgS-c;&p>SWI1^~L6x5u_VgRkP$zm#D z1|4^o#w-SzDy!nNQ7u+bEdq6sRFy02G+AzO#>a!p*7$fxWe!Srx0o_hur-Q78>@>_ z3yR|7&m%bzDV0GaQDOs>K0uS+;Mf4I=>w%Q(0FqSqXTG^8Po&@FR%m6zJMC6pay9T zLl#F3Ll$QZLl(H1TEmdVlfpEI7j#Nr3bQ0b32!!2QAQ183X3Ge0zS~9_+l`R6?EV* zt2qNRgAD_?3&U1r3GKpw@;)>k)r%ECOBFJcNS0^=4( zdTL2LsM@&%iZ4j10Xm=uJZ=XXyFj#v}47i zhG79{_bd3U$`W?iAQosgsmcZ#ktlUIIPyRzE9RwxrXEcVjlheKA$2=aOBiw7BIK|< z(6T2_$90M~469*$`n;Ho7FjetF6R#dv9ZC#< znoOW_4jcnfkR6eXDU3GY3I7x(&|#J(OxY|&3MI^t{vT-NJt*rmGnTMGc4RGJg=D6M zj4_~LKUProNnx=89m>iEJ{S{pFe?jafgH-N0_b2mI2OQR20cy%68?xv^cHJwVtQtB z5vb^^5&@NS@G3b!Um+(yFCCmKZm|^ zO40I7kqjdP!w*nYfTle_Q2`os5nz;Js*;991Jr1+uc0XdB~n0Hf*p2xB51`6X!su# zDJe{~EZ_)WhDVGEXbx=wcuBS-LkT3Su$VJI)v-lf=+}1ojMxMkf+4LP{LMO!U#T8A0l7FT*GR^5Xn%e1zEUX0y;$n z9LqIq*(^m`$f^ppQn*|gViRJRYFTR8YgoW`ZA#$=sj*=IZPfzVSj&;ZUBdyLgT0o* zQ^TIZ3q61HOw_EHVjDSFi&7C5~yKVz+J;!!c)Vv zkhzvKk0ph#ma~SlhG7A34Pyyk3P%b*G;Ik~ZN`zdz!?Iy7yymyXO<`=C+30ndL+Sn zKA=h#)M7|2PR#?I*IWWxQCXf?siRO(lnOePP9agDAh7~;kQ(wCKk(Fw+dKnRckAwrG?~D?vX`JjLz4+|y0#7|WrLb%U=@&YWN@wmo$;*6 zU!)9@2etcev4BoFECOW^aIOMxZoVZHnwOcJpOWedKC>EfGyrH=8FYv_=s=*vyyVnd ztZ6y;0XmVbOK9865i zOpGFoJfL$KL7OO9Knor@7@3$j7_~rR%xs|3hcWXj$nntp3Ti*Xnz|r1s9Xi-S5USG zjh2C$87YjQriCU`l_QQ+2}(xkIr&M6IVedJo|F)2(;KO&>szQT7btvdS^~Bs%aP6F01X}c! zr(kGc06vkn7_>hDbmTguzDCZ7pgEdEaOWDlAPf<(evrfunm;KLV`N~c5&)$yaJL-V z2GC@=#S5+E1A<)LJR`srKO{?l=H*~x#NZ691j;zzNB|R{m?% zTZ%*pyBI@?(*UX1YQ$=t!Bwyb`3I0l2UO5A76jgT}tV9X)V?Eec9u zpfVm(+JlRE(2|NGaG4GodIMhx0jkA77^xEoZacy25=bS281wcR#jKiA44F{L zobvDg|0-5h1G9Vva8;8z```cnn%v;S|8Fsa2HZgBa~E-e+yt&O5PRFNfSe89;RrhS z7+h~?vP1e9sQr#xte_>D#gH-_G)#rw>;*N$B0>2Fw3vl~O$4;a2z&yB5F-;K7o!Lm zgAU9PViftvA|%Er#;C?vB?fD3!Kxl;$qfobSji14&_Ebmpn<{^bTT+-XrctN@fW-a zGKCS``e6VavMj++!VF&1#ZUuk%Q97^Kobk7Eeq}N6(m;X@!`jESEUx^gS&vm z$ms;KSrnudyj>O1P0TM!Ni9N@QQ&btO_n0?E?!VQTLcbV@J?^$TkKE^ixB&F!DSDa z02M&D_+dc+RapuOOz@lvs}Lh--By)2dSF3SqO5=gb>=`A99rOGMi>_`fLd$|nZRf1 zGiEZ>vZgTBu%pT<@MI#d`*Kcce+Zmoa=9ZY~izDSdi zfuSB0+Mos146L9#4LHCj5rd}9IsRA4qlY`FOMui@L8$^jnG@bGFaRI!Rm)Pt2pZM^ z9r_G8{JTn^hHU{OsDA)y=@;^_FqAM=IzU?bDJ-=tk)XLdmq>;}9s`C#o)lJ4`@JZn zhCPMNoS~K-Zr%ilc{Qvc(-wkOEwdCgfXuF8PGMijRLhpf1>%7gdcckxFJZ1>1D&xC zx~rm=BZZTNp_a3jtA?Y5xrC*LtC87sg~V)N-fr)o`cqgHsoGiU2r8u{Sf;aHj~`fO?+X zDMFxL(gOAx?h=j^t`uQ#>f!{g$^`d4MXDCUQx~`=uV<)hWME){Xv^mpDL@)au)-hK z2SrX_pcNdTLc1g}Gp|?yx(XpbO(8qAvOK>iMMt3wbUlVbL1JbRct=($L;xl4=R)fP zNTGpL^1Bt8fl5+1teGXLxy6utpa(J=T-X?bnw+fQ zrBRTM0jNL*4_iR;1P>%nfE%IUJO#=Vx7d<0^Ad|HZ?Qu|Sx zJ_lbJ0Y32@QZs;a4wwLEA5dd=0x0`{*0C^ffV$F5;GNVgjC@Qij4VtXOrUEbSeW^k zxR^v3K|Ii*UTlmSETHj3&{ZzbjHZO1(ZJ1Ol#U2WUIR7b;d!lu3DO5|W(4p15GesI zl3;9N1dW}58?4Ml8n8jE8pZ`IC7|0yK*#3T!46LW^`${K!ho6}&ESLfKns_e8Os=p zl1exsN2$~>G&9t)mT-ak`p_e_KwIURYgpsC!TLE;I3fCLSmSxXBAh8)a1max2v-U> zT!arS!kxkc7vTqs@T9Q9MFeVCYFOh1LATAM@Pb5ZSmTAjZs1Mf1M^{S5C)6#rwE{k zihxB0QUp;%MZxw6rU-#VL8X7Z7+6FoMHnt34%R80A_5WtH|v-|4Ye$x5()4@e{D6a zS=^1Bu5|Bf9!=UrFAuS$|Ew@;c^GoweAoX-7sF4Y}9teE7 z2Kd?w1~L(|BeyslVRNOR>5L+AP#MSvYkdR%)VfffneV$Cd0$t=3XRs<^E3n1f@pbmSmCLg4*1P>j8%E=0r!OM-5egcCX8?_KfX_Mv9q|J?k^;0cNetSU1|6!##>mGAYCuE8L|CL4*;qm6 zi?A^AFoMQRWWWblfNrz^E&1bN=3?Yy76Knf2rFQrcA^X%fCdfVBP5{Wy@oLhdJX{i z3>Z-Nl`)H@hB1qEAv5Us(JY1qYzrAmm?Ri#nB&=Nm=}PLq6-EcALI|M!QstjsKwAF z5|CU0UEu%~L#ex=_x-`eG&zwLNP^qdpoEGvEdpK%1P*?l_=2MRKfm4iXQb8tfJ~C^(=C*qK-vAlLOVu<|g115Fs}c0D9jC;yqn!dAjw!jT4AS?dNq zYYTkF3;3KyFe?Rel3k>8Mt*)VL#xFqMGrzyfWbWh-F;oiF9W5SvrWUS&|iTEkkyR>PLU z3~$(RK*T^IHEby?aB+qTcJ(~M-3}zG_jenmbp*>l)d9YS($MG7q}qc2Az9b!>|Cfa+w!2m{G$R&j*?S zjpqdq6|q%Wz)}b#F+hqsXgn$u1V?I_UzA_)t&+3I`DpAOe&QidKT! zTHur6K+20iW6D658Hfm96-=*C+{hCGiH z9;kRr4Z{LykT_@-mXRS(uLcxWybBpq_`vEzYj0_CFK>Z6nNb=XqO)U7u@9q~0~EYUP=+@SlL^G@t`yGQc}SU z1n_mV;4aQBe$cuk&@gVio2RRfOK=ftC3Q;(Qs<}Vl|n)w-oOxxm;t7kp#h}57zc7G z=pr3ReFtjW6oD=QDgrJ1)8vCpDT7NlaB&9qIw%H;GC>-_USuswO;4?Wlyu;2&@Lb; zR}hg7BESV7xG4iB!0j2(ZAa;#G7ofA9|NlhEBM4zcF-nhFq@HsiG_^|dQ2neutp9> z6;3Wjmj5hFpbJh}{#K$DSBm~-9#lprY#wftZ z##AMU+Da-&tUwvM0*wcPFt~*Tx>qnAv}6Y~F9^Cf5_B)1L@jF#3#dk|VO;<^{hhIy z5wzE)P#~S5mJM{B3+R^Sg)o(DSX5epuPkP%VQXe;W~^b1XNRtLwufgt(C9sQSv#zo z3c8xKs5li`;pr%pr4|)~4#qXmGeF8=p!>mNQnW$3VF^7Sd_09MIP1jZfiqb#C~>1H zgLREz3PEe>@<1t@19T-cXfp}8mkv&@MFk)UmYmGul3UDGnFZjQ5q7u*IHtj=1C&l~ zu|w=HE&`_&Y_(nmBLl-(PznI$a0X`3D5V%9gshT6jVq+oZGf`o2h^;EM;d4wND5;L zQw!)4P-aQceZ?#b8C@7aO%G7#4^&ryM-!PPL05RN!`RTsU#NEn5v6Xj5zo^Fq)it)R99OAQNXBpB3G1zpRU!Xg4X1ga#3sfMkL zu_&a54WZi{G=+_sxH#Y6Q9q1e__^K)F4&2t5uf85tPvf#MJ}nh45?pkXV}Dhmh(t-RpD z6R(B_DDeuK>*Rzjxd4p<*1+c4R)E*NvDUDF=L6JAK=*tz)vz`*gRW7nVMzfkC3XOd zf|g{kHZ#IyK`W`1cga=#U{bO~Oxqc^P(Wk?lr8wS+(g)DK) z0p(3lAzmen)W!iF83bzQfJ#~h@M;{;X(5iFvYNdZdXOI|B|+CXgPRez1i|f!P+uq4 zAXv)+-0cYhSpjO=fEzimlitAPI;gG(H%f{S^*gvi2NU309n_9^2TDnxkz)oHQ2GI_ zcm_?EgD_~82{e2PI((Lkk&g*!0v&a91Z4spG>8N$EWkB0XlkvB50s=p>!21gg);;* zurQP`R_Z_^87#wG!?KWxjUkdDn85(H71R)Pi%tsYHZ0J!gE^^?sD#H=VueCcDrklc z5eY@0$wbfvc%T*?eDNN{81Ujf*!os*O9vD>w*=D?b8E(15}mG`Cj52s?hghPg-z6indL zbeKvQMIfs$;)B4)S%R)s2d}PB08b5ow$#DTkOhxQLUzn4WR}49#(^67se0*p3Xt(F z4GUuvO$A#!1w#WP6QqCxS1U}Ag%_aG3|5tZuAs%a-U8gQ=7om@3+RME4#p}zcm)R@ z9zv;IL5osAW4&PSg9b%F;~*uBWw4z{noLEYM*A(^AXoQLAIBib=p44qFyJPy7|3#v zc?^t*75bUQMXBkyZ3QJv(85K;$smkiv#?omi!HMlwCG6!$sV}(AX2z3LU=D5e%LO= zd*E3XZ1xp_CXl3%EQ4=50ME0KW7jSA;7DK47$-LSKx3lCmANw5Z7i9B7b01jGVwT;g+ab#n~$34tzcyv5<_=j`v|>E~Xg08#_m!BPa;A^~2VeTy5s z#}9HfN|7Z<0cfr4EuLb~vBb$xaqwyr(BdobYAWyo=pyhG9e4l%G_?bsQz(i7=?9HK z7J<6tMW9|8xKUpOY84iND)b^y6$LJxAthT6NC&8BDFW@eFPZ@2P682AK*Tf*;W zF>-M-F>(noF>)C(F>={4F>;A;@Nx)ph;hhpq;YU_uyF`*h;wjoaDq%h#o(Rj7>5Ud zmWF|Pjm01@VH_U79L1W#9L1Kx62+d%5yhFx6~pV^!8^xE(A0?0y2HF_X!Wbo( zDg^3Erm&_8r?I4fjuT*PW{eU^6-o&QA1VOiiKYsrL_p3!104&HDwGllJ_!vZCk{GL z0CbqZ9Oftq=m}_&(8C0zAV&#ANkb13kV%OGA0)sSC7TkRqLiZC!Wbo&5|g5mqT0e3 zC7%+TqL!lG!WgBH5(hpsfH6ujB|b$bMYn}9N-0GzMIU@PKthT^ieU?5luC+GiZS?j z0Fx9`@bLg5{R5qvy=Q;IYAcmS6a zSMc!wi79R=?k$W_`Y9eMp5Oxll2W` zqb8tnxXiLt=qv!ZLF@+ZWkC*F1F!r_=7kr}3=I4X3=E)}6$?ELsOPpBrR;9#aZ8=q6F{F{(T@EGgWjj72A)vnQ-z-nAOgX>@!w zY+&9K&;g9`{59-g-lrPSJ){CP93UQe$Q*P#m>_72P`pqL7gQ8_JDGnO(h?fAfB|%$%7f3AxO#w@T z&5)`32M#%Yu=#yp|H#%bERX}Mkp;_ffEO+)f%VGQFl0%CM%}7Fvx|HS6lxg2i!2$k zBo-*vu!3a58S)}n7)q2TFjl^S_6ZoWK*Q!xoskR^mWLr?3ZR38^B|YOfKNL` zC`C34)U;K|FH%r12Wx`tjR9>uNi7E-77RY%26WmUXfXuxam4v~sW8VPo0pQBmROoo z0=_a)y+|F=zkpmhlmN0XKPe0BLGYm%EIa3NI$I@J1?Om2Qksse1Gt9p?-BpM(AdyATbI5#$E$l+>cs zwA3QdQBSvcGSl<&i&Eo3>-US1)&$9c90(dqxW$^1npB#8iz^k>C(cPNOU(fv!*q)s zvP!7<7JEEsH$Z9%WY7yVgKGcP|SwfGiyT4qr(^xT#r@R%3)m?3bx20Ts%Ufu?t z#|Pa*R0LXx3uz{S$2H(*d28}RCO5!4kU-&q=BJ_+Am^?G5unaJWatCr`l3}JvDKgk z9wX!iV5DXacpL z89`U?LNMqWT{b2$&?%fuAT}2x8~C7SHbx#MHfGSZRcwr0Ogt=n;LCVHHyZLWf>!3J zG4X(pg$7-NDh4(Wq#Jw+0O%l3#MvRBK^0g%2&xc4+hstL-^J$`LG#4L0yWIV0woNP zMIYdb5OO{?qYFc9TP+)Ca}?;@hZ;6X(7D3wHOwi@rHn;RHO!!E8frPJq-xkfo6u{R z)0i_EYFL*r_A!PtFflMfhHF?#Skss)7cnx_axyYhX+d>2)i5t$s{vnx2rhn^YdPyU z3+0g6DPS>BQCuij!UEasHi0ouAcd`l2|VvB0a}Ovs-D3k#$2^*HCzRkQb04qYz4Pc zI6x!HAa|EB6#YQ=Lmp2FYYHc5qZ4R;7v%mLE@bxyGo)}qZCM1ig$uNzKZdCmY|8}3 z0xO6;6Br9zz&3HEaF>Cq$A}V!6dsV7pw-JYT%a-P8kT0(TJ9=|8ipE1@LE}TDAj`I zoW-CO7dPliVMYdcHNacL6VC;jt*v27;RE~k5O@IvBWNWsBBX;EN*Gf3K{kRfp%qB1 zVS!Z~C=~@#8L6WHE15wnrwTwDb~E$R^%Nk>29b+p&;h#zpngqJW@1SyXe%TrWkIe> zLfpv?8Yu!5E>_4|LG=%)94oTYQU@L3nFreDr2s3X!MlD-itt{s1Tt2=$VweVgE6R# zLNO(^A~~nDII}D@r&0mAibQpXReBZ73=9*%?f~7>f_%+An)akBBdC7t+LNj>3yg5; zPgDojlZhaI!1Y5a+049j9mwfXpxO$wDhgE1fo{dkO9icSODw8HaY{MFsB#peU{MM3 z3Fs^>(3}ydp^%BX1W~;lTQDGNhTPVPTRWCuK+%pF3@DBVU4sRVMFj;&a!3Rn{h6AW z3p)OzB(Vr`paFEaov4&i1C159fuJ>jF!!gXU^gBq8=yH4EtO#2dkVSb4b{15W}t;p zq5^85;BXX*A>~AR3*-@K_@n73)+4x0Ale()jHm)#{+aj&5|nSA}cLO z->ga%oY0fOcMXG@PD!cYGyw{q(qvH5PbTX4gK^vEaO7l`Oi<47}@-mZhQo&6+O&-XRB%J;M zu72^pt|1;p*Fobo;5A_2CIx5(CHMr(BJeyNXazsym_tx&34G!Opg63Sf7*!Z~n4qF8T;PM|MZkP6$X$y} z0*p+I65zH1s1*WQUm?a+#RKhi>w!FiGQS6EIewi>o9W=4i^hCDeI2GFswX-t(qkea@PErktKUqk07nNwIx8Ee_A^g#39HJ~m3 z?4UJpHOvcHz=t%0&KQA(D!6S`%K`27a#Zetm{`MJybQGBp_H*`Sq(F!9RcPu6m4i? zDB()sfZC@7SAPvG&scN~rXJSrs9~?+i07_>%!Ouy;|`^MOidv@`V8k6B?8vAh(!;&VPkm77fbQnw;1Y)h%9F(F5tl zfYaD+Mh1o`uGESWP>}}Oo`NO!-eOCy0_81Mb_RxG&?agIR?t>FCh+|&0*ri2pvh9u zJrR(_pCBG+(Kl#;6eyd5=fyw`FFlAcD9IBvDFsiSpxeywCQlw%@`T<<%UtOMNfIS2 zn2E9|0=xkkbaps%ow994!Mctp{!2y_XsCS%b)Q2ikQs;gj?Iw-!~G5tRa}hYHEdnN0z=PRUT=4BRx8z-Rg3Rs&H=}=ct6BW`r2NiVr;4_+`=?_s<`GK1g;MF|fR1%`e z4Ia_}55ho37QiD9#-IoTO^QR-TY?TJxWyIZ>g*rn0=~QzRMddm60j{Hph=RVbdWA^ ztpz45L0nKu@c_jxWHSL9BdF>YVH9Ep#i$4qXm|lUjSVg(zynSwYX?9v2EyPN1FanZ zO=E+Gl|cv6fNv9$1MS$YVH9Hk)f6?LTX&cfLE|5gKA}P)sP6|l1_!!d3|wPF#&6(5 zke+E!Cg{K@@a^EJCq|`#S0ZFWuC<4Tsg8noY9%-`fC~4b#LVK<6!4H;B6O>VLVj{` zX%T4n4RP=;D2_@p67v-D^O93xmoUK%1l?i=x?&5W6Ff)-GCQ%jxHK0Mr%B*lT*$3v z@bwm@1-d2qx+$QJE_CH3QjAxLg7Q1Kv7%Z8_8izdnoPI2K&OvFg5nkj%r~$I1vdvl zgJx)>Mz=WOM-In;q7_t%Gq8cy%J49PSFeI260Qa%`++J((8>jHWXgcEALxJsM$m3H z#$qwhJ|9r_0A2Y6-VWFYjYCie6XMQda3>}sRRJ1kklj$A6^9@R=pqbgOhdNkBL@~( z9q2Mskb%XZlZNs^hjD-m0g1q@K#gcbP-?Q=VvA4CNKMWzS_>LhV+D`?6|Di4J=i8} zx!|EtoDL5v@WnM8OjSa#%#Kim5mxYo4?1B2x@eRE6k?#|qTmxMyGab8l8n^MB5-w7 ztf$~vqL7h@vhWKO3Yg&n4mQX#8_2=b2q(ktA_66B6z7AY8RUHMl2VZKK@%*oT%glb zvlx&Tloo-G;nid+ss{xkmgH8{z{tQ*$_`sds)7`1pd?+4ZTYAsW6?>FaoFMnbUZ0o zV<9L;K(1t9K@2>mrKbP7b`yyj<}60=nO97u z3`Ht6jJ4o<7Z$L9F1Q3QCuFK&TEJSul*I;GBnm3J7O{XKh>~hiKKvz{rd!(MavQ` zV<`Frnl;Q4t>Khp$Yw73R3cUjIs_NYuVv4ZC=svas^LswmjrEEDS@fAVaUrU;awmB zwMni-vX(0^tb})g6ja2ZM7owM&!vQSfeci{r$n}vtAuHR9N0JPc^W0W3*@14aU}}1 zTzO(8ybBbeA_XN%wOn~DplcF9mngkNQ&K=yYG{HhQ0OdKLSj)eC^M=n6c?l>XQpL>Zv4zsNX#ioEy_zQ z$t+6+mt)}iyd(p~pCH4~YF9)l4sHSYfmfj3V$A`08*&sEXgMIbO$0hQ7IbhuYc6QR zjiy!6aZq6bt`9-?j(``*+~NW+Mo%fqEK3C+uyTvJIJMvwTMqb4fFf`~23p<>xq=cr zMROWdWw3zkyTu9)ZP3!^oYcJhTkORp;3=+K?7{J#!9lL>pz)OW%)ERsoswF1i=((C zJ`c2wv}hg3E&U(@bS@V}hl^(rcy-+^4v>D(lBpulA|i;SkDqr@FUV@}eP$ptAmYv* zK}DcNM-ZNqk9QGx^$}=>32bd?W=aw0cm*&gJu?M-<|Npu;8nb!^}S$c<(6dTra}&$ z1g&BO?=!u{Tu`0@J_)*@9ApmoT(YAeM=+-s6@Vqui$G?A54=1Bk^qH4QA%oA5%|!u zvmg($ftvH&h}o}O?9dbeZl~U2PAMt_2QQHb z0cw%n0#(blg%jDejCR57!1fcJLrF@kw4pyRW6n0T1@7+IJ=mji*0Md0|) z#K`lXiG_uchlPa^w95z5;RVTqR-{9DOe`#*Q}RJ$T%Zvw$b1<{go#lMv_F!OjS! zU=33iR}E7ZH%KKyZJtmGBWNlsiw7ZA!kEHd!n=U4hA9iQO%QsV4YGU{VWEr%<51GynDJo6X0WEn* z$SGFP%~1zm{fJ!1<(HNel!9me3yShnN|RGl5M|OYMg>jAq7qO~omI71U$wZ3Mb*%t zxQbOZMMpIS%t@(|R!z}WH86q@3LushobW3;0qSgl4qpM6W>rkOc2(@4+^$fPuPF*H z!fvsGU0nnkv4!;a!1)rC$sy+jg1T2lh&6KHoCwNpV0y?A=ytkDFv<0dt0Cea8XaOClrwKZJ4csVU z$YKRI02@l!ve+T#n1JpS039X(RnLy9egR7g=(H0iM$o~RoS-47g-o@e6OBO4zAa!q z94VYAdLTADs9^=|2ZF1809MPI!iJ)j9W+=qfw73Igu4cO;#w`}R02k1QJtP-{b{Gi5}3q!0PNOzV1*l&V0jG*1nP&RmH zH0X4|8rBrcW?H_ELUCnoQhrWmGUz6%Y#oKvl4L#X z?FeLJh-y-REyvl8P*6~Cfw~3UG$~32wQo{WKsz)_i=cD6NtFuF1wwiXA)vFSp-XrY z%knc*z?~@+SEZJKZ$3{bN(BuaWR|6Z*C>GtC_RM)@T74Hq|i!K0L{jL?v()@lUt%t zoB^7WLN*N2VN(E=OW-zAYGQH**hip34HN@OsR~dNQ}n=X!jjY?aDj+08`(VY!FZ_^ z1*yp;pmXt{Z9QmTTLE@i8`72x&>0!23dtFXdFiPs$R?p`)d5W#XO<{H+*=I3Y!jSd zP?ae_&p|;p2ZY%0kc~Rm_PgDMg@zS~WQl4XL6RAZ?uRM0SfE8jwYw zKqiCE7X+8rw;0pVi|n6_3=H2uMYad1kmcrL0^NlMYUHqiH$8(IOf1YYpxdIEc$j%W zcaJi%FoWbFGN7Y*c)$~SpanmCj53UD|9M!dxM98e#FP}2owK0Q96nwPnj%1y;3bR; z7(wL}XhZ>WQUvIH9#H8EK4pplbUH*0Gq_v>EotNcEmnmtY2*N{6e?vbS^_@sg#k1< zki`w!Q&++RI=iQY7d)oRQp;MyngY6md=lu6m<8-5d?ma!tne{i@D1ajgG^XJH^;D) z@Pf{cWnuuG1C+(TKmg=6M##1<)cNw=f&%1r zF&)r!7U+~7Jy44ryhjRlhZyLD+M@hiP-hE#ICcss6@ykEXTV3!5RDH71z7hEvZMpN zS_Wyvv{(V$VN*y?ErGffdDKTiLBT&yAv`lLCBM8_p&%!*1a#d=u@1OINd>Qbgp^GR zi8H~ve(p$lE6U$E+G{%i;6Nq`vvmzpck%zLI_-wfc%W` z15!2z=SodMa7HTvucZU;P5>_gM68elU$qM!>ISXagG_~Ff|^jEjtyc@7~~{6@CYAh z(H?B4A-I1BHUhL`758Sb?~Du#CL9b5;CmJs*tx(bS@JLnF>^42_N#I*f@X4sm=Kd1 z(5!rmQ4b{_urn|)fQF&K4S&$>hUpBo%%DAUr3|1O6l$4jKpXmPKxdVJh6jtRYM2)= zf{x8*WGG<*U4^rdu@-dw8B09m-Xj*!T@E0XJPaw!y`Y_~A~noete`2j7KRkIUPeX+ z&?+}jTcL*8g(0?~mZgL}i(>((#ln)s1v-qoN&|dz14|7nxMcx490$SX1?^G=iH9>3 z=CLr8@PQUN*Rp|E(J^H4r?6+U6rE^d$OGN}AdteI!U0;(22mf$kiuBYR>xMD2cf~M z=<+}_G@6`=psjhX6(vQ9$tB=RVPQ>j&=G6kIs@9G099|Gl#*OpR0O)ixjerpJ2NjG zIi11V5#SoDIJHC}zdSFsNC&jGA~P)$QWh(KTDo8b1*t{g^P2MWiWN}TC&3H?Hv-a1 zQj5wHi&Bd96cRuSP*Dai6jCzNz>7~y6kwWAdmQ<$ zf%0>1X)*Y`@k9mip;0B!@fT$8fhquKl?rZVfO0Q1w2*VJ-^&A_3*Z=UaTceR#DlJ= zDn=Q`1=X7%3?9Y>mBye=Owj#OkfB?~BJhGi|k5R!4)G@4NDfsLZ%v)c+M&X@ResQNHW|DnLs1kpn@TsA#W86 zLkUmiF-C@3Rz`-ZfEtD@UU0Qo)5MTxR>PXbm%>uYP&BKCVF5q5gT$I8AjSa7%y|+} zG4>kPECG;8&^Q7}2E167rIxjhHP0snOdEjqM+;71tmJ^&qXo8yHJhdA3ACVqnhr4= z$pkK#2?h+{lS()eLEFRN#RP0Rj>s|sku_2F6GN&%@Ze}^4&)|B&;&{`xJ8Y!uRgOF zmW!c>^?{}V6H8K2M;8){6$4VgQm%kqau|UHI==m2st^hiB z_7;CUG;2T)bA)7V0oS~;%%c1}&^O(?{R|$7BQ&C9?59p}9CdR@p@NG*Bpus!PX=}j@c`Tq6 z*&wXRlK7gDfq`&l0^i353T|kJ5F=5;6NrL>LL!0m4VsUK#0oftC88X6siTmHY!=8) z@K_tvV$h5^q$>#>o=ZS62{a_819bpc8?sr@`4Q007tpO8MWxB0t{lAJ0O?gP2DQ4= zQ=#LCNM`3jZvQ|w57Y!nOv*1y)q(VCGmGI>GNS3Kpr8QSKZxBQi7C3EaY;xMq$s~E zGbI($txn4atwKX<(?B-W7F&TAt7~ZLfN9Y6^~mgE5C?QaIrLs&(4F!cns8@>^KX@U zGUVngXp&XXD6Y)a1oS1z$6hgujG7t}HT0nN5F$=L&fez*c6@hw4_Mud;p!^7`WWlX%&`~2bObZx5c@osl z23^Zj!j#3lkO@4=%d&tKG|3BUc^BE0FlDiTE|XlySZr6qw16Gb0aq-zGe+$77wga%mW>4%9X+d5(ib1HH@Iqx}u&MP|gIOZ^+1y*H^;`n(i%H zRKo!3V}kNNBST(A4I_A9eMb$$0wKt#A|pdyQVrt*;e`yvCu$hML+ICP7#4`aWnG}| zdIojZml}ozVsKf|Ig8>Y65yR7Aa_Z^Wq6R?Qv(_^1eG{aFnNe+6Bvs@qSA0t(0PGS zKY%M~)~Xm-p#sV!Xq{qcKNHl9PgE$#s4UJ*PRxNPQ3VBX`Jn(hj~KKrCb0;50Wcy{ zfv5MtRZkU%YO#W@oq}qypQdaPC^o_Kb&wk7JgC9}HTG_ST6N%>Vks!)a^xmvr>0~U z6(glqQ2P*E+kmH;z?;l(fz^T1E4Xobiyf-12(-N%CYhFx7*mI;0L|!ul!7u8B4^y< z28lt}iWjkik~t@c;9z24fF0rj>UiGbDuMeLTw&efEG;NVEdsk2El=<=F)-`}+3)V-#{>Edlm@uF!C|+fTz1alUv}!Z@{?)t>Q)LpMq9e z!<(d_p`j`P&{1=s9x5m$heNipGJ%$C)-p3PR7uq^XEB#BXMrygYhnO5=9p@k>zMPn zQouB**9RU$X0FolP0R)zhy!bgSK^KLe~b(aewwV{=)J|7o1KzbRK&-`z;KH-wWtU* zqw4A!;TasV5_%^mC_IZ~L7@y@%#Id%5=;yXZ$Y64@*4v)6Eh@y5Z!f9gr#H_p@apf zuMR3fz@-Oht_9R(s$~ZE$QiT1w+)nl`|i!4vqc%RSimy~el?6)pgSJrpf|IyEMSCe z6b3J31s%o*>ZR-C@j>~FS!|#Ys~V6x#w<4QI2Q}(JSawn8WvD_108!}u2P4FA1ImP z4Z4NkpyLG3u0pmAfKTxPjWI$F#(K!ObiS^Kp_lX9moutLbNCO*&>M94kg;1mc7ZICZef*Z8R2p-&^ z87xq52&vcs9h3$tQkfwA21ui(DiS$Rz!f~kIziC3B+z^wG(&=CB#?`s#1d#r0Mr>o zDtSQb2&ydMP2JEu$l=}~hl9;fP%Y9y?IEBX=Iy7+Tm%XgaFZ2WIILubbV}jD3+ZQr zLlV^4E&?5z%fSgdoC$ml0LyXsTpDBzWB+Vst#IQlYrAxFj{#Pm=|*L;}3B zLLHP5n?R#*Y9JQahhPHiO-UvO1_6*aL3J|&GZ!NdYQ^Ewfp}2-I3w%8RxSwoR!wl*V`!j%#8V0f1LF^L71>oy$OBg{zVUVNV z7czmS389sm4K!VWF7ruDE=es?0G;lglb@Wekdj)KnVgC@$XIi;^YT-Qq(Ge|b#RX^ zF$b!z7Cx(^Ld=z?r1g3s~74!=Sq zGO#J&&<7LXC;;h^07U_4MIQq*Xe$6{Wdjcr7wG2b|7ZncY8md>03EqkmPQvEaqAcyCGGUqM!;>uibg9Y3f2Q`|CKy9TWaJQTVECXt7 z6p4UpTS2Je_|%HzRPfLxcowQi6qNG7iv~c;fgt^GjH(!X><~E7feCQRlV)OIPzR+v zaMzm^be*dJGasV>6AvTPe-0+lh7%!1(0RK&OrS9}h!|pFCn)4VPDDwNpmGFMvx5u3 zXW&cBiyncN&wvZTMk7)k^yA3%rAL`sAp+hM?MDt7P? z8&?XL2Dhm|TUI!#%z|O#-Js+FsiZ;Gm_lMQ=yXBo7D#9-9FcBrv8Sh&q=Hs-frfU# z)1|lAa=^o?QEd6eMya_KRbq&}k&vlh$hf+nrf|_?P-`1}NCPNA73qP}!c$NQ1zMDw zUX+)Z3t5K(P8y&J3A|FQpd2KDSgHcvlMtV2ebnPG^zukg%|~xxWJ23kajD8#*;J980AKBLlciEKsc6A5#|&)^gK2QgF@yIcI)Y*j z+?GI@kw`;oix7y!B2cHIN)#iSKofC(nrujw2}mJip%6S&iY_lw z2l6_oVrIe!sN8(iiCvU{0^LOg3#ei~P{~>)fe0*6fTb}(yAhBe3qlGqX3(||aFBsJ z4j3H>mMSMukbzgLqRi@mE^3AMqX>l=s1N2>rGzceP$!E}0uZDNvNRHZ0D{ydg8~qA z)E6iKS-_iJ`5*^8g4;LXNej^U31~tAj8TH{3Uo0bXp{o9wkV4c+^YcHS;JV%n8H-U z5YJe{7|a0Pg9M%f1oaqFm};4-gg|rVpxbOfm#c(>R`P6OVJKm*TmlVbml}pFj-ozL zg`2{h!cxPK#Ztoz8?&eZ&8@SPaDn$ku^^(M&ry1Zntx9+xWo0Bo9%z=5 ze*$A=71U**kb~KfhQkIcBpU=KFjlUD>XpEu9;t5&3X?*!8qg{<(AgWOY8bKv7YIR{ z+-xbJBd>(Pdzm<@Rv>Nh0NvICo6i8H-wgP4K4@GHy$b_5&_#8cWZw|CMdy6p_GE|7IcMm$0Cl8eCK*tU!3S9-LWZS_OA?E~OV|qXGxJbx z3S$TF$+^XvnU|7U0Un+K&$!&;$jdLv1+_hHaTKM3CvQ{0qinE21#n{#lrU~_f>b8v zWLBkur)I$e!MC^}-iQbJ0li;*gpq+^J}830gA1%2%p8oM(~WqTK$qSLFtIUlFe27m zBlg0fl(I|=44^q725=h@)G&oc93$u^&r*gWhC-1-21xk|4ru18@SxO0(2B>R{L=Ic zP##i9%`3?Stqz2=sv%>SplSS^{QPY2(mc?vU{HG;Ijcha1wA7Ww7tqNM3V_}kQ8Y1 z8SF+hP{^SB`vfBc!#0q=L498aR?zY*7Nn{KylV|*5(?x=_(*^icoHg$0W=Db!U(D` zvY4TpD!Epnh$eMrSkaY<%Q4)~}H&?4y+ zkSu827j*7uB52i{dNF9>1#MSA$whuK!t`7sQjq|u|OSNO(sZd5yVChPSEy`1MuKvVPh0v z6oQ=i46d2u!8-y`!V@$e1;XG&18Uts`=e?lj9E;edHF1sg^VenJL(y;Sj8D?nLrgu z9_ZpYR?r%L@Zkw;pu>_t6>cvxXmSC(TsfqKJ%zP~2@={hEWr$#Y*kUSD=h|iv^?vTq50K2Tfy?q!txn*?CyRz{tRG2jm%0x08Vx zbTS&Ee;OYTG9^A9r8fb}lAu-|!rh?k$dJugBvHax1Kwho!U)>D0nT{LReIq?nI)+T z;6v-uL47#rmV=Uf&}bWI|3hjK(#`XljJH@oRWisY;IraD_p%llfqGVK#U&}JMMcml zw_B{>QzLFM=N6}(Wv| z=jx*c(k+ho_|%HblKA*{AeV!CNuUEXSiqa#L8nMV5;0VfCJ*GSAwMtxp9bsa=LbED z2sAtlI!@6KeB2B4Y(*Fcq>M2{lf^H@&rg#Pq~$MoOrHt7h$uvpF+`Ke&kZDFj_rtO z$ccgA&1&GL7kF9JY*0A~UOYJm#6ql~1O+UlarFii4nm-gA?QTGqPZY-hd~7B=pVH6 z8H%=oBtVA(6oFTJfH&%%0*QfFHP?Vxphd<-prw;VJRn0st1iHkyG7vfCD5b{WP}_v z?p*{L6$X!(7J-I{AcFv)4rvjnQw6Cn!G#Z~QiLQfP^kjWjgTRBSCAdBFO3kR}L8macFhsGWu%xiIFhsF}4j61h#gZkYJS*(%_wT$7AJ7d`3=Q1%jF+#=? z!ToX86ee(goE6mL*JQ40K<`0jmZauF*MuQjRiHkLh9>kvV1&mN6coZUK!^F};v@;AyJNMGdKhNgq7kPj4W&%tQ@QyB4Bac5e+(k ztV*nep$2r#7h?_M0!C2H6AnHChJ~SosZtA6hA@Iob7lhH1_K%FOM^xncn?oz8f3pS zxMu}!5rg(R7Qs)#0PoK!hqs_Xi}pZ$3Q%V*BQY-}CsjuwHK#aLp(wSav?xyjY1v+g z8>m(R7uMi{8Pq`0WCHiXu%74!YT7D;0v=R{Gq8XTg907)#KTwwk^xmO<+r%v6CI*Hm9_Z!;u+S||zr@^B2$MZNJ~1aJKK>RD%;lin z79b}*P0h~sm>^`Hi*rq0KM)JNr5m(Q z8@wqSvKJe4FFj-@H;1#oUkLaf4Dcnt;0t|0M*~1EM+D#Y2)-dv8f26|C@{c>7=!C> zP^v8I21x{ih&E7QFc+tm6qSLv1|R}708-Qrk^s*Y`uIWT3WHqTi!?#)L9j4ro4FR8 z=jrAj#TpVE>gfWa+#yt0NJJD{NNA9&qe~QfNN9MFXNW6Ez%|0vIf^aB9V+1tlW>Ph z_(LW9VG{lz2}lYAH9KyJrl*3BDTB-!!>%nV0`*mkz*ioF&bTWIXJB9`0?qRlftMLCgn}znR!U{s3+JV*AI$f`k2vMVf~U Z7N}?76R2l^K`|sYNGwD^i-Vhm5dc?BhlKzD literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/misc.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/misc.py new file mode 100644 index 0000000..6eb7b86 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/misc.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Backports for individual classes and functions.""" + +import os +import sys + +__all__ = ['cache_from_source', 'callable', 'fsencode'] + + +try: + from imp import cache_from_source +except ImportError: + def cache_from_source(py_file, debug=__debug__): + ext = debug and 'c' or 'o' + return py_file + ext + + +try: + callable = callable +except NameError: + from collections import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode +except AttributeError: + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, str): + return filename.encode(sys.getfilesystemencoding()) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/shutil.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/shutil.py new file mode 100644 index 0000000..a6ba980 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/shutil.py @@ -0,0 +1,764 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Utility functions for copying and archiving files and directory trees. + +XXX The functions here don't copy the resource fork or other metadata on Mac. + +""" + +import os +import sys +import stat +from os.path import abspath +import fnmatch +try: + from collections.abc import Callable +except ImportError: + from collections import Callable +import errno +from . import tarfile + +try: + import bz2 + _BZ2_SUPPORTED = True +except ImportError: + _BZ2_SUPPORTED = False + +try: + from pwd import getpwnam +except ImportError: + getpwnam = None + +try: + from grp import getgrnam +except ImportError: + getgrnam = None + +__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", + "copytree", "move", "rmtree", "Error", "SpecialFileError", + "ExecError", "make_archive", "get_archive_formats", + "register_archive_format", "unregister_archive_format", + "get_unpack_formats", "register_unpack_format", + "unregister_unpack_format", "unpack_archive", "ignore_patterns"] + +class Error(EnvironmentError): + pass + +class SpecialFileError(EnvironmentError): + """Raised when trying to do a kind of operation (e.g. copying) which is + not supported on a special file (e.g. a named pipe)""" + +class ExecError(EnvironmentError): + """Raised when a command could not be executed""" + +class ReadError(EnvironmentError): + """Raised when an archive cannot be read""" + +class RegistryError(Exception): + """Raised when a registry operation with the archiving + and unpacking registries fails""" + + +try: + WindowsError +except NameError: + WindowsError = None + +def copyfileobj(fsrc, fdst, length=16*1024): + """copy data from file-like object fsrc to file-like object fdst""" + while 1: + buf = fsrc.read(length) + if not buf: + break + fdst.write(buf) + +def _samefile(src, dst): + # Macintosh, Unix. + if hasattr(os.path, 'samefile'): + try: + return os.path.samefile(src, dst) + except OSError: + return False + + # All other platforms: check for same pathname. + return (os.path.normcase(os.path.abspath(src)) == + os.path.normcase(os.path.abspath(dst))) + +def copyfile(src, dst): + """Copy data from src to dst""" + if _samefile(src, dst): + raise Error("`%s` and `%s` are the same file" % (src, dst)) + + for fn in [src, dst]: + try: + st = os.stat(fn) + except OSError: + # File most likely does not exist + pass + else: + # XXX What about other special files? (sockets, devices...) + if stat.S_ISFIFO(st.st_mode): + raise SpecialFileError("`%s` is a named pipe" % fn) + + with open(src, 'rb') as fsrc: + with open(dst, 'wb') as fdst: + copyfileobj(fsrc, fdst) + +def copymode(src, dst): + """Copy mode bits from src to dst""" + if hasattr(os, 'chmod'): + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + os.chmod(dst, mode) + +def copystat(src, dst): + """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + if hasattr(os, 'utime'): + os.utime(dst, (st.st_atime, st.st_mtime)) + if hasattr(os, 'chmod'): + os.chmod(dst, mode) + if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): + try: + os.chflags(dst, st.st_flags) + except OSError as why: + if (not hasattr(errno, 'EOPNOTSUPP') or + why.errno != errno.EOPNOTSUPP): + raise + +def copy(src, dst): + """Copy data and mode bits ("cp src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copymode(src, dst) + +def copy2(src, dst): + """Copy data and all stat info ("cp -p src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copystat(src, dst) + +def ignore_patterns(*patterns): + """Function that can be used as copytree() ignore parameter. + + Patterns is a sequence of glob-style patterns + that are used to exclude files""" + def _ignore_patterns(path, names): + ignored_names = [] + for pattern in patterns: + ignored_names.extend(fnmatch.filter(names, pattern)) + return set(ignored_names) + return _ignore_patterns + +def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, + ignore_dangling_symlinks=False): + """Recursively copy a directory tree. + + The destination directory must not already exist. + If exception(s) occur, an Error is raised with a list of reasons. + + If the optional symlinks flag is true, symbolic links in the + source tree result in symbolic links in the destination tree; if + it is false, the contents of the files pointed to by symbolic + links are copied. If the file pointed by the symlink doesn't + exist, an exception will be added in the list of errors raised in + an Error exception at the end of the copy process. + + You can set the optional ignore_dangling_symlinks flag to true if you + want to silence this exception. Notice that this has no effect on + platforms that don't support os.symlink. + + The optional ignore argument is a callable. If given, it + is called with the `src` parameter, which is the directory + being visited by copytree(), and `names` which is the list of + `src` contents, as returned by os.listdir(): + + callable(src, names) -> ignored_names + + Since copytree() is called recursively, the callable will be + called once for each directory that is copied. It returns a + list of names relative to the `src` directory that should + not be copied. + + The optional copy_function argument is a callable that will be used + to copy each file. It will be called with the source path and the + destination path as arguments. By default, copy2() is used, but any + function that supports the same signature (like copy()) can be used. + + """ + names = os.listdir(src) + if ignore is not None: + ignored_names = ignore(src, names) + else: + ignored_names = set() + + os.makedirs(dst) + errors = [] + for name in names: + if name in ignored_names: + continue + srcname = os.path.join(src, name) + dstname = os.path.join(dst, name) + try: + if os.path.islink(srcname): + linkto = os.readlink(srcname) + if symlinks: + os.symlink(linkto, dstname) + else: + # ignore dangling symlink if the flag is on + if not os.path.exists(linkto) and ignore_dangling_symlinks: + continue + # otherwise let the copy occurs. copy2 will raise an error + copy_function(srcname, dstname) + elif os.path.isdir(srcname): + copytree(srcname, dstname, symlinks, ignore, copy_function) + else: + # Will raise a SpecialFileError for unsupported file types + copy_function(srcname, dstname) + # catch the Error from the recursive copytree so that we can + # continue with other files + except Error as err: + errors.extend(err.args[0]) + except EnvironmentError as why: + errors.append((srcname, dstname, str(why))) + try: + copystat(src, dst) + except OSError as why: + if WindowsError is not None and isinstance(why, WindowsError): + # Copying file access times may fail on Windows + pass + else: + errors.extend((src, dst, str(why))) + if errors: + raise Error(errors) + +def rmtree(path, ignore_errors=False, onerror=None): + """Recursively delete a directory tree. + + If ignore_errors is set, errors are ignored; otherwise, if onerror + is set, it is called to handle the error with arguments (func, + path, exc_info) where func is os.listdir, os.remove, or os.rmdir; + path is the argument to that function that caused it to fail; and + exc_info is a tuple returned by sys.exc_info(). If ignore_errors + is false and onerror is None, an exception is raised. + + """ + if ignore_errors: + def onerror(*args): + pass + elif onerror is None: + def onerror(*args): + raise + try: + if os.path.islink(path): + # symlinks to directories are forbidden, see bug #1669 + raise OSError("Cannot call rmtree on a symbolic link") + except OSError: + onerror(os.path.islink, path, sys.exc_info()) + # can't continue even if onerror hook returns + return + names = [] + try: + names = os.listdir(path) + except os.error: + onerror(os.listdir, path, sys.exc_info()) + for name in names: + fullname = os.path.join(path, name) + try: + mode = os.lstat(fullname).st_mode + except os.error: + mode = 0 + if stat.S_ISDIR(mode): + rmtree(fullname, ignore_errors, onerror) + else: + try: + os.remove(fullname) + except os.error: + onerror(os.remove, fullname, sys.exc_info()) + try: + os.rmdir(path) + except os.error: + onerror(os.rmdir, path, sys.exc_info()) + + +def _basename(path): + # A basename() variant which first strips the trailing slash, if present. + # Thus we always get the last component of the path, even for directories. + return os.path.basename(path.rstrip(os.path.sep)) + +def move(src, dst): + """Recursively move a file or directory to another location. This is + similar to the Unix "mv" command. + + If the destination is a directory or a symlink to a directory, the source + is moved inside the directory. The destination path must not already + exist. + + If the destination already exists but is not a directory, it may be + overwritten depending on os.rename() semantics. + + If the destination is on our current filesystem, then rename() is used. + Otherwise, src is copied to the destination and then removed. + A lot more could be done here... A look at a mv.c shows a lot of + the issues this implementation glosses over. + + """ + real_dst = dst + if os.path.isdir(dst): + if _samefile(src, dst): + # We might be on a case insensitive filesystem, + # perform the rename anyway. + os.rename(src, dst) + return + + real_dst = os.path.join(dst, _basename(src)) + if os.path.exists(real_dst): + raise Error("Destination path '%s' already exists" % real_dst) + try: + os.rename(src, real_dst) + except OSError: + if os.path.isdir(src): + if _destinsrc(src, dst): + raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) + copytree(src, real_dst, symlinks=True) + rmtree(src) + else: + copy2(src, real_dst) + os.unlink(src) + +def _destinsrc(src, dst): + src = abspath(src) + dst = abspath(dst) + if not src.endswith(os.path.sep): + src += os.path.sep + if not dst.endswith(os.path.sep): + dst += os.path.sep + return dst.startswith(src) + +def _get_gid(name): + """Returns a gid, given a group name.""" + if getgrnam is None or name is None: + return None + try: + result = getgrnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _get_uid(name): + """Returns an uid, given a user name.""" + if getpwnam is None or name is None: + return None + try: + result = getpwnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, + owner=None, group=None, logger=None): + """Create a (possibly compressed) tar file from all the files under + 'base_dir'. + + 'compress' must be "gzip" (the default), "bzip2", or None. + + 'owner' and 'group' can be used to define an owner and a group for the + archive that is being built. If not provided, the current owner and group + will be used. + + The output tar file will be named 'base_name' + ".tar", possibly plus + the appropriate compression extension (".gz", or ".bz2"). + + Returns the output filename. + """ + tar_compression = {'gzip': 'gz', None: ''} + compress_ext = {'gzip': '.gz'} + + if _BZ2_SUPPORTED: + tar_compression['bzip2'] = 'bz2' + compress_ext['bzip2'] = '.bz2' + + # flags for compression program, each element of list will be an argument + if compress is not None and compress not in compress_ext: + raise ValueError("bad value for 'compress', or compression format not " + "supported : {0}".format(compress)) + + archive_name = base_name + '.tar' + compress_ext.get(compress, '') + archive_dir = os.path.dirname(archive_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # creating the tarball + if logger is not None: + logger.info('Creating tar archive') + + uid = _get_uid(owner) + gid = _get_gid(group) + + def _set_uid_gid(tarinfo): + if gid is not None: + tarinfo.gid = gid + tarinfo.gname = group + if uid is not None: + tarinfo.uid = uid + tarinfo.uname = owner + return tarinfo + + if not dry_run: + tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) + try: + tar.add(base_dir, filter=_set_uid_gid) + finally: + tar.close() + + return archive_name + +def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): + # XXX see if we want to keep an external call here + if verbose: + zipoptions = "-r" + else: + zipoptions = "-rq" + from distutils.errors import DistutilsExecError + from distutils.spawn import spawn + try: + spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) + except DistutilsExecError: + # XXX really should distinguish between "couldn't find + # external 'zip' command" and "zip failed". + raise ExecError("unable to create zip file '%s': " + "could neither import the 'zipfile' module nor " + "find a standalone zip utility") % zip_filename + +def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): + """Create a zip file from all the files under 'base_dir'. + + The output zip file will be named 'base_name' + ".zip". Uses either the + "zipfile" Python module (if available) or the InfoZIP "zip" utility + (if installed and found on the default search path). If neither tool is + available, raises ExecError. Returns the name of the output zip + file. + """ + zip_filename = base_name + ".zip" + archive_dir = os.path.dirname(base_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # If zipfile module is not available, try spawning an external 'zip' + # command. + try: + import zipfile + except ImportError: + zipfile = None + + if zipfile is None: + _call_external_zip(base_dir, zip_filename, verbose, dry_run) + else: + if logger is not None: + logger.info("creating '%s' and adding '%s' to it", + zip_filename, base_dir) + + if not dry_run: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + + for dirpath, dirnames, filenames in os.walk(base_dir): + for name in filenames: + path = os.path.normpath(os.path.join(dirpath, name)) + if os.path.isfile(path): + zip.write(path, path) + if logger is not None: + logger.info("adding '%s'", path) + zip.close() + + return zip_filename + +_ARCHIVE_FORMATS = { + 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), + 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), + 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), + 'zip': (_make_zipfile, [], "ZIP file"), + } + +if _BZ2_SUPPORTED: + _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], + "bzip2'ed tar-file") + +def get_archive_formats(): + """Returns a list of supported formats for archiving and unarchiving. + + Each element of the returned sequence is a tuple (name, description) + """ + formats = [(name, registry[2]) for name, registry in + _ARCHIVE_FORMATS.items()] + formats.sort() + return formats + +def register_archive_format(name, function, extra_args=None, description=''): + """Registers an archive format. + + name is the name of the format. function is the callable that will be + used to create archives. If provided, extra_args is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_archive_formats() function. + """ + if extra_args is None: + extra_args = [] + if not isinstance(function, Callable): + raise TypeError('The %s object is not callable' % function) + if not isinstance(extra_args, (tuple, list)): + raise TypeError('extra_args needs to be a sequence') + for element in extra_args: + if not isinstance(element, (tuple, list)) or len(element) !=2: + raise TypeError('extra_args elements are : (arg_name, value)') + + _ARCHIVE_FORMATS[name] = (function, extra_args, description) + +def unregister_archive_format(name): + del _ARCHIVE_FORMATS[name] + +def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, + dry_run=0, owner=None, group=None, logger=None): + """Create an archive file (eg. zip or tar). + + 'base_name' is the name of the file to create, minus any format-specific + extension; 'format' is the archive format: one of "zip", "tar", "bztar" + or "gztar". + + 'root_dir' is a directory that will be the root directory of the + archive; ie. we typically chdir into 'root_dir' before creating the + archive. 'base_dir' is the directory where we start archiving from; + ie. 'base_dir' will be the common prefix of all files and + directories in the archive. 'root_dir' and 'base_dir' both default + to the current directory. Returns the name of the archive file. + + 'owner' and 'group' are used when creating a tar archive. By default, + uses the current owner and group. + """ + save_cwd = os.getcwd() + if root_dir is not None: + if logger is not None: + logger.debug("changing into '%s'", root_dir) + base_name = os.path.abspath(base_name) + if not dry_run: + os.chdir(root_dir) + + if base_dir is None: + base_dir = os.curdir + + kwargs = {'dry_run': dry_run, 'logger': logger} + + try: + format_info = _ARCHIVE_FORMATS[format] + except KeyError: + raise ValueError("unknown archive format '%s'" % format) + + func = format_info[0] + for arg, val in format_info[1]: + kwargs[arg] = val + + if format != 'zip': + kwargs['owner'] = owner + kwargs['group'] = group + + try: + filename = func(base_name, base_dir, **kwargs) + finally: + if root_dir is not None: + if logger is not None: + logger.debug("changing back to '%s'", save_cwd) + os.chdir(save_cwd) + + return filename + + +def get_unpack_formats(): + """Returns a list of supported formats for unpacking. + + Each element of the returned sequence is a tuple + (name, extensions, description) + """ + formats = [(name, info[0], info[3]) for name, info in + _UNPACK_FORMATS.items()] + formats.sort() + return formats + +def _check_unpack_options(extensions, function, extra_args): + """Checks what gets registered as an unpacker.""" + # first make sure no other unpacker is registered for this extension + existing_extensions = {} + for name, info in _UNPACK_FORMATS.items(): + for ext in info[0]: + existing_extensions[ext] = name + + for extension in extensions: + if extension in existing_extensions: + msg = '%s is already registered for "%s"' + raise RegistryError(msg % (extension, + existing_extensions[extension])) + + if not isinstance(function, Callable): + raise TypeError('The registered function must be a callable') + + +def register_unpack_format(name, extensions, function, extra_args=None, + description=''): + """Registers an unpack format. + + `name` is the name of the format. `extensions` is a list of extensions + corresponding to the format. + + `function` is the callable that will be + used to unpack archives. The callable will receive archives to unpack. + If it's unable to handle an archive, it needs to raise a ReadError + exception. + + If provided, `extra_args` is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_unpack_formats() function. + """ + if extra_args is None: + extra_args = [] + _check_unpack_options(extensions, function, extra_args) + _UNPACK_FORMATS[name] = extensions, function, extra_args, description + +def unregister_unpack_format(name): + """Removes the pack format from the registry.""" + del _UNPACK_FORMATS[name] + +def _ensure_directory(path): + """Ensure that the parent directory of `path` exists""" + dirname = os.path.dirname(path) + if not os.path.isdir(dirname): + os.makedirs(dirname) + +def _unpack_zipfile(filename, extract_dir): + """Unpack zip `filename` to `extract_dir` + """ + try: + import zipfile + except ImportError: + raise ReadError('zlib not supported, cannot unpack this archive.') + + if not zipfile.is_zipfile(filename): + raise ReadError("%s is not a zip file" % filename) + + zip = zipfile.ZipFile(filename) + try: + for info in zip.infolist(): + name = info.filename + + # don't extract absolute paths or ones with .. in them + if name.startswith('/') or '..' in name: + continue + + target = os.path.join(extract_dir, *name.split('/')) + if not target: + continue + + _ensure_directory(target) + if not name.endswith('/'): + # file + data = zip.read(info.filename) + f = open(target, 'wb') + try: + f.write(data) + finally: + f.close() + del data + finally: + zip.close() + +def _unpack_tarfile(filename, extract_dir): + """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` + """ + try: + tarobj = tarfile.open(filename) + except tarfile.TarError: + raise ReadError( + "%s is not a compressed or uncompressed tar file" % filename) + try: + tarobj.extractall(extract_dir) + finally: + tarobj.close() + +_UNPACK_FORMATS = { + 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), + 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), + 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") + } + +if _BZ2_SUPPORTED: + _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], + "bzip2'ed tar-file") + +def _find_unpack_format(filename): + for name, info in _UNPACK_FORMATS.items(): + for extension in info[0]: + if filename.endswith(extension): + return name + return None + +def unpack_archive(filename, extract_dir=None, format=None): + """Unpack an archive. + + `filename` is the name of the archive. + + `extract_dir` is the name of the target directory, where the archive + is unpacked. If not provided, the current working directory is used. + + `format` is the archive format: one of "zip", "tar", or "gztar". Or any + other registered format. If not provided, unpack_archive will use the + filename extension and see if an unpacker was registered for that + extension. + + In case none is found, a ValueError is raised. + """ + if extract_dir is None: + extract_dir = os.getcwd() + + if format is not None: + try: + format_info = _UNPACK_FORMATS[format] + except KeyError: + raise ValueError("Unknown unpack format '{0}'".format(format)) + + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) + else: + # we need to look at the registered unpackers supported extensions + format = _find_unpack_format(filename) + if format is None: + raise ReadError("Unknown archive format '{0}'".format(filename)) + + func = _UNPACK_FORMATS[format][1] + kwargs = dict(_UNPACK_FORMATS[format][2]) + func(filename, extract_dir, **kwargs) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg new file mode 100644 index 0000000..c92cd48 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg @@ -0,0 +1,84 @@ +[posix_prefix] +# Configuration directories. Some of these come straight out of the +# configure script. They are for implementing the other variables, not to +# be used directly in [resource_locations]. +confdir = /etc +datadir = /usr/share +libdir = /usr/lib +statedir = /var +# User resource directory +local = ~/.local/{distribution.name} + +stdlib = {base}/lib/python{py_version_short} +platstdlib = {platbase}/lib/python{py_version_short} +purelib = {base}/lib/python{py_version_short}/site-packages +platlib = {platbase}/lib/python{py_version_short}/site-packages +include = {base}/include/python{py_version_short}{abiflags} +platinclude = {platbase}/include/python{py_version_short}{abiflags} +data = {base} + +[posix_home] +stdlib = {base}/lib/python +platstdlib = {base}/lib/python +purelib = {base}/lib/python +platlib = {base}/lib/python +include = {base}/include/python +platinclude = {base}/include/python +scripts = {base}/bin +data = {base} + +[nt] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2_home] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[nt_user] +stdlib = {userbase}/Python{py_version_nodot} +platstdlib = {userbase}/Python{py_version_nodot} +purelib = {userbase}/Python{py_version_nodot}/site-packages +platlib = {userbase}/Python{py_version_nodot}/site-packages +include = {userbase}/Python{py_version_nodot}/Include +scripts = {userbase}/Scripts +data = {userbase} + +[posix_user] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[osx_framework_user] +stdlib = {userbase}/lib/python +platstdlib = {userbase}/lib/python +purelib = {userbase}/lib/python/site-packages +platlib = {userbase}/lib/python/site-packages +include = {userbase}/include +scripts = {userbase}/bin +data = {userbase} diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.py new file mode 100644 index 0000000..69c3fdc --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.py @@ -0,0 +1,786 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Access to Python's configuration information.""" + +import codecs +import os +import re +import sys +from os.path import pardir, realpath +try: + import configparser +except ImportError: + import ConfigParser as configparser + + +__all__ = [ + 'get_config_h_filename', + 'get_config_var', + 'get_config_vars', + 'get_makefile_filename', + 'get_path', + 'get_path_names', + 'get_paths', + 'get_platform', + 'get_python_version', + 'get_scheme_names', + 'parse_config_h', +] + + +def _safe_realpath(path): + try: + return realpath(path) + except OSError: + return path + + +if sys.executable: + _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) +else: + # sys.executable can be empty if argv[0] has been changed and Python is + # unable to retrieve the real program name + _PROJECT_BASE = _safe_realpath(os.getcwd()) + +if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir)) +# PC/VS7.1 +if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) +# PC/AMD64 +if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) + + +def is_python_build(): + for fn in ("Setup.dist", "Setup.local"): + if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): + return True + return False + +_PYTHON_BUILD = is_python_build() + +_cfg_read = False + +def _ensure_cfg_read(): + global _cfg_read + if not _cfg_read: + from ..resources import finder + backport_package = __name__.rsplit('.', 1)[0] + _finder = finder(backport_package) + _cfgfile = _finder.find('sysconfig.cfg') + assert _cfgfile, 'sysconfig.cfg exists' + with _cfgfile.as_stream() as s: + _SCHEMES.readfp(s) + if _PYTHON_BUILD: + for scheme in ('posix_prefix', 'posix_home'): + _SCHEMES.set(scheme, 'include', '{srcdir}/Include') + _SCHEMES.set(scheme, 'platinclude', '{projectbase}/.') + + _cfg_read = True + + +_SCHEMES = configparser.RawConfigParser() +_VAR_REPL = re.compile(r'\{([^{]*?)\}') + +def _expand_globals(config): + _ensure_cfg_read() + if config.has_section('globals'): + globals = config.items('globals') + else: + globals = tuple() + + sections = config.sections() + for section in sections: + if section == 'globals': + continue + for option, value in globals: + if config.has_option(section, option): + continue + config.set(section, option, value) + config.remove_section('globals') + + # now expanding local variables defined in the cfg file + # + for section in config.sections(): + variables = dict(config.items(section)) + + def _replacer(matchobj): + name = matchobj.group(1) + if name in variables: + return variables[name] + return matchobj.group(0) + + for option, value in config.items(section): + config.set(section, option, _VAR_REPL.sub(_replacer, value)) + +#_expand_globals(_SCHEMES) + +_PY_VERSION = '%s.%s.%s' % sys.version_info[:3] +_PY_VERSION_SHORT = '%s.%s' % sys.version_info[:2] +_PY_VERSION_SHORT_NO_DOT = '%s%s' % sys.version_info[:2] +_PREFIX = os.path.normpath(sys.prefix) +_EXEC_PREFIX = os.path.normpath(sys.exec_prefix) +_CONFIG_VARS = None +_USER_BASE = None + + +def _subst_vars(path, local_vars): + """In the string `path`, replace tokens like {some.thing} with the + corresponding value from the map `local_vars`. + + If there is no corresponding value, leave the token unchanged. + """ + def _replacer(matchobj): + name = matchobj.group(1) + if name in local_vars: + return local_vars[name] + elif name in os.environ: + return os.environ[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, path) + + +def _extend_dict(target_dict, other_dict): + target_keys = target_dict.keys() + for key, value in other_dict.items(): + if key in target_keys: + continue + target_dict[key] = value + + +def _expand_vars(scheme, vars): + res = {} + if vars is None: + vars = {} + _extend_dict(vars, get_config_vars()) + + for key, value in _SCHEMES.items(scheme): + if os.name in ('posix', 'nt'): + value = os.path.expanduser(value) + res[key] = os.path.normpath(_subst_vars(value, vars)) + return res + + +def format_value(value, vars): + def _replacer(matchobj): + name = matchobj.group(1) + if name in vars: + return vars[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, value) + + +def _get_default_scheme(): + if os.name == 'posix': + # the default scheme for posix is posix_prefix + return 'posix_prefix' + return os.name + + +def _getuserbase(): + env_base = os.environ.get("PYTHONUSERBASE", None) + + def joinuser(*args): + return os.path.expanduser(os.path.join(*args)) + + # what about 'os2emx', 'riscos' ? + if os.name == "nt": + base = os.environ.get("APPDATA") or "~" + if env_base: + return env_base + else: + return joinuser(base, "Python") + + if sys.platform == "darwin": + framework = get_config_var("PYTHONFRAMEWORK") + if framework: + if env_base: + return env_base + else: + return joinuser("~", "Library", framework, "%d.%d" % + sys.version_info[:2]) + + if env_base: + return env_base + else: + return joinuser("~", ".local") + + +def _parse_makefile(filename, vars=None): + """Parse a Makefile-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + # Regexes needed for parsing Makefile (and similar syntaxes, + # like old-style Setup files). + _variable_rx = re.compile(r"([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") + _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)") + _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}") + + if vars is None: + vars = {} + done = {} + notdone = {} + + with codecs.open(filename, encoding='utf-8', errors="surrogateescape") as f: + lines = f.readlines() + + for line in lines: + if line.startswith('#') or line.strip() == '': + continue + m = _variable_rx.match(line) + if m: + n, v = m.group(1, 2) + v = v.strip() + # `$$' is a literal `$' in make + tmpv = v.replace('$$', '') + + if "$" in tmpv: + notdone[n] = v + else: + try: + v = int(v) + except ValueError: + # insert literal `$' + done[n] = v.replace('$$', '$') + else: + done[n] = v + + # do variable interpolation here + variables = list(notdone.keys()) + + # Variables with a 'PY_' prefix in the makefile. These need to + # be made available without that prefix through sysconfig. + # Special care is needed to ensure that variable expansion works, even + # if the expansion uses the name without a prefix. + renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS') + + while len(variables) > 0: + for name in tuple(variables): + value = notdone[name] + m = _findvar1_rx.search(value) or _findvar2_rx.search(value) + if m is not None: + n = m.group(1) + found = True + if n in done: + item = str(done[n]) + elif n in notdone: + # get it on a subsequent round + found = False + elif n in os.environ: + # do it like make: fall back to environment + item = os.environ[n] + + elif n in renamed_variables: + if (name.startswith('PY_') and + name[3:] in renamed_variables): + item = "" + + elif 'PY_' + n in notdone: + found = False + + else: + item = str(done['PY_' + n]) + + else: + done[n] = item = "" + + if found: + after = value[m.end():] + value = value[:m.start()] + item + after + if "$" in after: + notdone[name] = value + else: + try: + value = int(value) + except ValueError: + done[name] = value.strip() + else: + done[name] = value + variables.remove(name) + + if (name.startswith('PY_') and + name[3:] in renamed_variables): + + name = name[3:] + if name not in done: + done[name] = value + + else: + # bogus variable reference (e.g. "prefix=$/opt/python"); + # just drop it since we can't deal + done[name] = value + variables.remove(name) + + # strip spurious spaces + for k, v in done.items(): + if isinstance(v, str): + done[k] = v.strip() + + # save the results in the global dictionary + vars.update(done) + return vars + + +def get_makefile_filename(): + """Return the path of the Makefile.""" + if _PYTHON_BUILD: + return os.path.join(_PROJECT_BASE, "Makefile") + if hasattr(sys, 'abiflags'): + config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags) + else: + config_dir_name = 'config' + return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile') + + +def _init_posix(vars): + """Initialize the module as appropriate for POSIX systems.""" + # load the installed Makefile: + makefile = get_makefile_filename() + try: + _parse_makefile(makefile, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % makefile + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # load the installed pyconfig.h: + config_h = get_config_h_filename() + try: + with open(config_h) as f: + parse_config_h(f, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % config_h + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # On AIX, there are wrong paths to the linker scripts in the Makefile + # -- these paths are relative to the Python source, but when installed + # the scripts are in another directory. + if _PYTHON_BUILD: + vars['LDSHARED'] = vars['BLDSHARED'] + + +def _init_non_posix(vars): + """Initialize the module as appropriate for NT""" + # set basic install directories + vars['LIBDEST'] = get_path('stdlib') + vars['BINLIBDEST'] = get_path('platstdlib') + vars['INCLUDEPY'] = get_path('include') + vars['SO'] = '.pyd' + vars['EXE'] = '.exe' + vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT + vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable)) + +# +# public APIs +# + + +def parse_config_h(fp, vars=None): + """Parse a config.h-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + if vars is None: + vars = {} + define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n") + undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n") + + while True: + line = fp.readline() + if not line: + break + m = define_rx.match(line) + if m: + n, v = m.group(1, 2) + try: + v = int(v) + except ValueError: + pass + vars[n] = v + else: + m = undef_rx.match(line) + if m: + vars[m.group(1)] = 0 + return vars + + +def get_config_h_filename(): + """Return the path of pyconfig.h.""" + if _PYTHON_BUILD: + if os.name == "nt": + inc_dir = os.path.join(_PROJECT_BASE, "PC") + else: + inc_dir = _PROJECT_BASE + else: + inc_dir = get_path('platinclude') + return os.path.join(inc_dir, 'pyconfig.h') + + +def get_scheme_names(): + """Return a tuple containing the schemes names.""" + return tuple(sorted(_SCHEMES.sections())) + + +def get_path_names(): + """Return a tuple containing the paths names.""" + # xxx see if we want a static list + return _SCHEMES.options('posix_prefix') + + +def get_paths(scheme=_get_default_scheme(), vars=None, expand=True): + """Return a mapping containing an install scheme. + + ``scheme`` is the install scheme name. If not provided, it will + return the default scheme for the current platform. + """ + _ensure_cfg_read() + if expand: + return _expand_vars(scheme, vars) + else: + return dict(_SCHEMES.items(scheme)) + + +def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True): + """Return a path corresponding to the scheme. + + ``scheme`` is the install scheme name. + """ + return get_paths(scheme, vars, expand)[name] + + +def get_config_vars(*args): + """With no arguments, return a dictionary of all configuration + variables relevant for the current platform. + + On Unix, this means every variable defined in Python's installed Makefile; + On Windows and Mac OS it's a much smaller set. + + With arguments, return a list of values that result from looking up + each argument in the configuration variable dictionary. + """ + global _CONFIG_VARS + if _CONFIG_VARS is None: + _CONFIG_VARS = {} + # Normalized versions of prefix and exec_prefix are handy to have; + # in fact, these are the standard versions used most places in the + # distutils2 module. + _CONFIG_VARS['prefix'] = _PREFIX + _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX + _CONFIG_VARS['py_version'] = _PY_VERSION + _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT + _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2] + _CONFIG_VARS['base'] = _PREFIX + _CONFIG_VARS['platbase'] = _EXEC_PREFIX + _CONFIG_VARS['projectbase'] = _PROJECT_BASE + try: + _CONFIG_VARS['abiflags'] = sys.abiflags + except AttributeError: + # sys.abiflags may not be defined on all platforms. + _CONFIG_VARS['abiflags'] = '' + + if os.name in ('nt', 'os2'): + _init_non_posix(_CONFIG_VARS) + if os.name == 'posix': + _init_posix(_CONFIG_VARS) + # Setting 'userbase' is done below the call to the + # init function to enable using 'get_config_var' in + # the init-function. + if sys.version >= '2.6': + _CONFIG_VARS['userbase'] = _getuserbase() + + if 'srcdir' not in _CONFIG_VARS: + _CONFIG_VARS['srcdir'] = _PROJECT_BASE + else: + _CONFIG_VARS['srcdir'] = _safe_realpath(_CONFIG_VARS['srcdir']) + + # Convert srcdir into an absolute path if it appears necessary. + # Normally it is relative to the build directory. However, during + # testing, for example, we might be running a non-installed python + # from a different directory. + if _PYTHON_BUILD and os.name == "posix": + base = _PROJECT_BASE + try: + cwd = os.getcwd() + except OSError: + cwd = None + if (not os.path.isabs(_CONFIG_VARS['srcdir']) and + base != cwd): + # srcdir is relative and we are not in the same directory + # as the executable. Assume executable is in the build + # directory and make srcdir absolute. + srcdir = os.path.join(base, _CONFIG_VARS['srcdir']) + _CONFIG_VARS['srcdir'] = os.path.normpath(srcdir) + + if sys.platform == 'darwin': + kernel_version = os.uname()[2] # Kernel version (8.4.3) + major_version = int(kernel_version.split('.')[0]) + + if major_version < 8: + # On Mac OS X before 10.4, check if -arch and -isysroot + # are in CFLAGS or LDFLAGS and remove them if they are. + # This is needed when building extensions on a 10.3 system + # using a universal build of python. + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = re.sub('-isysroot [^ \t]*', ' ', flags) + _CONFIG_VARS[key] = flags + else: + # Allow the user to override the architecture flags using + # an environment variable. + # NOTE: This name was introduced by Apple in OSX 10.5 and + # is used by several scripting languages distributed with + # that OS release. + if 'ARCHFLAGS' in os.environ: + arch = os.environ['ARCHFLAGS'] + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = flags + ' ' + arch + _CONFIG_VARS[key] = flags + + # If we're on OSX 10.5 or later and the user tries to + # compiles an extension using an SDK that is not present + # on the current machine it is better to not use an SDK + # than to fail. + # + # The major usecase for this is users using a Python.org + # binary installer on OSX 10.6: that installer uses + # the 10.4u SDK, but that SDK is not installed by default + # when you install Xcode. + # + CFLAGS = _CONFIG_VARS.get('CFLAGS', '') + m = re.search(r'-isysroot\s+(\S+)', CFLAGS) + if m is not None: + sdk = m.group(1) + if not os.path.exists(sdk): + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-isysroot\s+\S+(\s|$)', ' ', flags) + _CONFIG_VARS[key] = flags + + if args: + vals = [] + for name in args: + vals.append(_CONFIG_VARS.get(name)) + return vals + else: + return _CONFIG_VARS + + +def get_config_var(name): + """Return the value of a single variable using the dictionary returned by + 'get_config_vars()'. + + Equivalent to get_config_vars().get(name) + """ + return get_config_vars().get(name) + + +def get_platform(): + """Return a string that identifies the current platform. + + This is used mainly to distinguish platform-specific build directories and + platform-specific built distributions. Typically includes the OS name + and version and the architecture (as supplied by 'os.uname()'), + although the exact information included depends on the OS; eg. for IRIX + the architecture isn't particularly important (IRIX only runs on SGI + hardware), but for Linux the kernel version isn't particularly + important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + irix-5.3 + irix64-6.2 + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-ia64 (64bit Windows on Itanium) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + """ + if os.name == 'nt': + # sniff sys.version for architecture. + prefix = " bit (" + i = sys.version.find(prefix) + if i == -1: + return sys.platform + j = sys.version.find(")", i) + look = sys.version[i+len(prefix):j].lower() + if look == 'amd64': + return 'win-amd64' + if look == 'itanium': + return 'win-ia64' + return sys.platform + + if os.name != "posix" or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + osname, host, release, version, machine = os.uname() + + # Convert the OS name to lowercase, remove '/' characters + # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_') + machine = machine.replace('/', '-') + + if osname[:5] == "linux": + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + elif osname[:5] == "sunos": + if release[0] >= "5": # SunOS 5 == Solaris 2 + osname = "solaris" + release = "%d.%s" % (int(release[0]) - 3, release[2:]) + # fall through to standard osname-release-machine representation + elif osname[:4] == "irix": # could be "irix64"! + return "%s-%s" % (osname, release) + elif osname[:3] == "aix": + return "%s-%s.%s" % (osname, version, release) + elif osname[:6] == "cygwin": + osname = "cygwin" + rel_re = re.compile(r'[\d.]+') + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == "darwin": + # + # For our purposes, we'll assume that the system version from + # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set + # to. This makes the compatibility story a bit more sane because the + # machine is going to compile and link as if it were + # MACOSX_DEPLOYMENT_TARGET. + cfgvars = get_config_vars() + macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET') + + if True: + # Always calculate the release of the running machine, + # needed to determine if we can build fat binaries or not. + + macrelease = macver + # Get the system version. Reading this plist is a documented + # way to get the system version (see the documentation for + # the Gestalt Manager) + try: + f = open('/System/Library/CoreServices/SystemVersion.plist') + except IOError: + # We're on a plain darwin box, fall back to the default + # behaviour. + pass + else: + try: + m = re.search(r'ProductUserVisibleVersion\s*' + r'(.*?)', f.read()) + finally: + f.close() + if m is not None: + macrelease = '.'.join(m.group(1).split('.')[:2]) + # else: fall back to the default behaviour + + if not macver: + macver = macrelease + + if macver: + release = macver + osname = "macosx" + + if ((macrelease + '.') >= '10.4.' and + '-arch' in get_config_vars().get('CFLAGS', '').strip()): + # The universal build will build fat binaries, but not on + # systems before 10.4 + # + # Try to detect 4-way universal builds, those have machine-type + # 'universal' instead of 'fat'. + + machine = 'fat' + cflags = get_config_vars().get('CFLAGS') + + archs = re.findall(r'-arch\s+(\S+)', cflags) + archs = tuple(sorted(set(archs))) + + if len(archs) == 1: + machine = archs[0] + elif archs == ('i386', 'ppc'): + machine = 'fat' + elif archs == ('i386', 'x86_64'): + machine = 'intel' + elif archs == ('i386', 'ppc', 'x86_64'): + machine = 'fat3' + elif archs == ('ppc64', 'x86_64'): + machine = 'fat64' + elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): + machine = 'universal' + else: + raise ValueError( + "Don't know machine value for archs=%r" % (archs,)) + + elif machine == 'i386': + # On OSX the machine type returned by uname is always the + # 32-bit variant, even if the executable architecture is + # the 64-bit variant + if sys.maxsize >= 2**32: + machine = 'x86_64' + + elif machine in ('PowerPC', 'Power_Macintosh'): + # Pick a sane name for the PPC architecture. + # See 'i386' case + if sys.maxsize >= 2**32: + machine = 'ppc64' + else: + machine = 'ppc' + + return "%s-%s-%s" % (osname, release, machine) + + +def get_python_version(): + return _PY_VERSION_SHORT + + +def _print_dict(title, data): + for index, (key, value) in enumerate(sorted(data.items())): + if index == 0: + print('%s: ' % (title)) + print('\t%s = "%s"' % (key, value)) + + +def _main(): + """Display all information sysconfig detains.""" + print('Platform: "%s"' % get_platform()) + print('Python version: "%s"' % get_python_version()) + print('Current installation scheme: "%s"' % _get_default_scheme()) + print() + _print_dict('Paths', get_paths()) + print() + _print_dict('Variables', get_config_vars()) + + +if __name__ == '__main__': + _main() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/tarfile.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/tarfile.py new file mode 100644 index 0000000..b0599bc --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/tarfile.py @@ -0,0 +1,2607 @@ +#------------------------------------------------------------------- +# tarfile.py +#------------------------------------------------------------------- +# Copyright (C) 2002 Lars Gustaebel +# All rights reserved. +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +from __future__ import print_function + +"""Read from and write to tar format archives. +""" + +__version__ = "$Revision$" + +version = "0.9.0" +__author__ = "Lars Gust\u00e4bel (lars@gustaebel.de)" +__date__ = "$Date: 2011-02-25 17:42:01 +0200 (Fri, 25 Feb 2011) $" +__cvsid__ = "$Id: tarfile.py 88586 2011-02-25 15:42:01Z marc-andre.lemburg $" +__credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend." + +#--------- +# Imports +#--------- +import sys +import os +import stat +import errno +import time +import struct +import copy +import re + +try: + import grp, pwd +except ImportError: + grp = pwd = None + +# os.symlink on Windows prior to 6.0 raises NotImplementedError +symlink_exception = (AttributeError, NotImplementedError) +try: + # WindowsError (1314) will be raised if the caller does not hold the + # SeCreateSymbolicLinkPrivilege privilege + symlink_exception += (WindowsError,) +except NameError: + pass + +# from tarfile import * +__all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] + +if sys.version_info[0] < 3: + import __builtin__ as builtins +else: + import builtins + +_open = builtins.open # Since 'open' is TarFile.open + +#--------------------------------------------------------- +# tar constants +#--------------------------------------------------------- +NUL = b"\0" # the null character +BLOCKSIZE = 512 # length of processing blocks +RECORDSIZE = BLOCKSIZE * 20 # length of records +GNU_MAGIC = b"ustar \0" # magic gnu tar string +POSIX_MAGIC = b"ustar\x0000" # magic posix tar string + +LENGTH_NAME = 100 # maximum length of a filename +LENGTH_LINK = 100 # maximum length of a linkname +LENGTH_PREFIX = 155 # maximum length of the prefix field + +REGTYPE = b"0" # regular file +AREGTYPE = b"\0" # regular file +LNKTYPE = b"1" # link (inside tarfile) +SYMTYPE = b"2" # symbolic link +CHRTYPE = b"3" # character special device +BLKTYPE = b"4" # block special device +DIRTYPE = b"5" # directory +FIFOTYPE = b"6" # fifo special device +CONTTYPE = b"7" # contiguous file + +GNUTYPE_LONGNAME = b"L" # GNU tar longname +GNUTYPE_LONGLINK = b"K" # GNU tar longlink +GNUTYPE_SPARSE = b"S" # GNU tar sparse file + +XHDTYPE = b"x" # POSIX.1-2001 extended header +XGLTYPE = b"g" # POSIX.1-2001 global header +SOLARIS_XHDTYPE = b"X" # Solaris extended header + +USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format +GNU_FORMAT = 1 # GNU tar format +PAX_FORMAT = 2 # POSIX.1-2001 (pax) format +DEFAULT_FORMAT = GNU_FORMAT + +#--------------------------------------------------------- +# tarfile constants +#--------------------------------------------------------- +# File types that tarfile supports: +SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, + SYMTYPE, DIRTYPE, FIFOTYPE, + CONTTYPE, CHRTYPE, BLKTYPE, + GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# File types that will be treated as a regular file. +REGULAR_TYPES = (REGTYPE, AREGTYPE, + CONTTYPE, GNUTYPE_SPARSE) + +# File types that are part of the GNU tar format. +GNU_TYPES = (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# Fields from a pax header that override a TarInfo attribute. +PAX_FIELDS = ("path", "linkpath", "size", "mtime", + "uid", "gid", "uname", "gname") + +# Fields from a pax header that are affected by hdrcharset. +PAX_NAME_FIELDS = set(("path", "linkpath", "uname", "gname")) + +# Fields in a pax header that are numbers, all other fields +# are treated as strings. +PAX_NUMBER_FIELDS = { + "atime": float, + "ctime": float, + "mtime": float, + "uid": int, + "gid": int, + "size": int +} + +#--------------------------------------------------------- +# Bits used in the mode field, values in octal. +#--------------------------------------------------------- +S_IFLNK = 0o120000 # symbolic link +S_IFREG = 0o100000 # regular file +S_IFBLK = 0o060000 # block device +S_IFDIR = 0o040000 # directory +S_IFCHR = 0o020000 # character device +S_IFIFO = 0o010000 # fifo + +TSUID = 0o4000 # set UID on execution +TSGID = 0o2000 # set GID on execution +TSVTX = 0o1000 # reserved + +TUREAD = 0o400 # read by owner +TUWRITE = 0o200 # write by owner +TUEXEC = 0o100 # execute/search by owner +TGREAD = 0o040 # read by group +TGWRITE = 0o020 # write by group +TGEXEC = 0o010 # execute/search by group +TOREAD = 0o004 # read by other +TOWRITE = 0o002 # write by other +TOEXEC = 0o001 # execute/search by other + +#--------------------------------------------------------- +# initialization +#--------------------------------------------------------- +if os.name in ("nt", "ce"): + ENCODING = "utf-8" +else: + ENCODING = sys.getfilesystemencoding() + +#--------------------------------------------------------- +# Some useful functions +#--------------------------------------------------------- + +def stn(s, length, encoding, errors): + """Convert a string to a null-terminated bytes object. + """ + s = s.encode(encoding, errors) + return s[:length] + (length - len(s)) * NUL + +def nts(s, encoding, errors): + """Convert a null-terminated bytes object to a string. + """ + p = s.find(b"\0") + if p != -1: + s = s[:p] + return s.decode(encoding, errors) + +def nti(s): + """Convert a number field to a python number. + """ + # There are two possible encodings for a number field, see + # itn() below. + if s[0] != chr(0o200): + try: + n = int(nts(s, "ascii", "strict") or "0", 8) + except ValueError: + raise InvalidHeaderError("invalid header") + else: + n = 0 + for i in range(len(s) - 1): + n <<= 8 + n += ord(s[i + 1]) + return n + +def itn(n, digits=8, format=DEFAULT_FORMAT): + """Convert a python number to a number field. + """ + # POSIX 1003.1-1988 requires numbers to be encoded as a string of + # octal digits followed by a null-byte, this allows values up to + # (8**(digits-1))-1. GNU tar allows storing numbers greater than + # that if necessary. A leading 0o200 byte indicates this particular + # encoding, the following digits-1 bytes are a big-endian + # representation. This allows values up to (256**(digits-1))-1. + if 0 <= n < 8 ** (digits - 1): + s = ("%0*o" % (digits - 1, n)).encode("ascii") + NUL + else: + if format != GNU_FORMAT or n >= 256 ** (digits - 1): + raise ValueError("overflow in number field") + + if n < 0: + # XXX We mimic GNU tar's behaviour with negative numbers, + # this could raise OverflowError. + n = struct.unpack("L", struct.pack("l", n))[0] + + s = bytearray() + for i in range(digits - 1): + s.insert(0, n & 0o377) + n >>= 8 + s.insert(0, 0o200) + return s + +def calc_chksums(buf): + """Calculate the checksum for a member's header by summing up all + characters except for the chksum field which is treated as if + it was filled with spaces. According to the GNU tar sources, + some tars (Sun and NeXT) calculate chksum with signed char, + which will be different if there are chars in the buffer with + the high bit set. So we calculate two checksums, unsigned and + signed. + """ + unsigned_chksum = 256 + sum(struct.unpack("148B", buf[:148]) + struct.unpack("356B", buf[156:512])) + signed_chksum = 256 + sum(struct.unpack("148b", buf[:148]) + struct.unpack("356b", buf[156:512])) + return unsigned_chksum, signed_chksum + +def copyfileobj(src, dst, length=None): + """Copy length bytes from fileobj src to fileobj dst. + If length is None, copy the entire content. + """ + if length == 0: + return + if length is None: + while True: + buf = src.read(16*1024) + if not buf: + break + dst.write(buf) + return + + BUFSIZE = 16 * 1024 + blocks, remainder = divmod(length, BUFSIZE) + for b in range(blocks): + buf = src.read(BUFSIZE) + if len(buf) < BUFSIZE: + raise IOError("end of file reached") + dst.write(buf) + + if remainder != 0: + buf = src.read(remainder) + if len(buf) < remainder: + raise IOError("end of file reached") + dst.write(buf) + return + +filemode_table = ( + ((S_IFLNK, "l"), + (S_IFREG, "-"), + (S_IFBLK, "b"), + (S_IFDIR, "d"), + (S_IFCHR, "c"), + (S_IFIFO, "p")), + + ((TUREAD, "r"),), + ((TUWRITE, "w"),), + ((TUEXEC|TSUID, "s"), + (TSUID, "S"), + (TUEXEC, "x")), + + ((TGREAD, "r"),), + ((TGWRITE, "w"),), + ((TGEXEC|TSGID, "s"), + (TSGID, "S"), + (TGEXEC, "x")), + + ((TOREAD, "r"),), + ((TOWRITE, "w"),), + ((TOEXEC|TSVTX, "t"), + (TSVTX, "T"), + (TOEXEC, "x")) +) + +def filemode(mode): + """Convert a file's mode to a string of the form + -rwxrwxrwx. + Used by TarFile.list() + """ + perm = [] + for table in filemode_table: + for bit, char in table: + if mode & bit == bit: + perm.append(char) + break + else: + perm.append("-") + return "".join(perm) + +class TarError(Exception): + """Base exception.""" + pass +class ExtractError(TarError): + """General exception for extract errors.""" + pass +class ReadError(TarError): + """Exception for unreadable tar archives.""" + pass +class CompressionError(TarError): + """Exception for unavailable compression methods.""" + pass +class StreamError(TarError): + """Exception for unsupported operations on stream-like TarFiles.""" + pass +class HeaderError(TarError): + """Base exception for header errors.""" + pass +class EmptyHeaderError(HeaderError): + """Exception for empty headers.""" + pass +class TruncatedHeaderError(HeaderError): + """Exception for truncated headers.""" + pass +class EOFHeaderError(HeaderError): + """Exception for end of file headers.""" + pass +class InvalidHeaderError(HeaderError): + """Exception for invalid headers.""" + pass +class SubsequentHeaderError(HeaderError): + """Exception for missing and invalid extended headers.""" + pass + +#--------------------------- +# internal stream interface +#--------------------------- +class _LowLevelFile(object): + """Low-level file object. Supports reading and writing. + It is used instead of a regular file object for streaming + access. + """ + + def __init__(self, name, mode): + mode = { + "r": os.O_RDONLY, + "w": os.O_WRONLY | os.O_CREAT | os.O_TRUNC, + }[mode] + if hasattr(os, "O_BINARY"): + mode |= os.O_BINARY + self.fd = os.open(name, mode, 0o666) + + def close(self): + os.close(self.fd) + + def read(self, size): + return os.read(self.fd, size) + + def write(self, s): + os.write(self.fd, s) + +class _Stream(object): + """Class that serves as an adapter between TarFile and + a stream-like object. The stream-like object only + needs to have a read() or write() method and is accessed + blockwise. Use of gzip or bzip2 compression is possible. + A stream-like object could be for example: sys.stdin, + sys.stdout, a socket, a tape device etc. + + _Stream is intended to be used only internally. + """ + + def __init__(self, name, mode, comptype, fileobj, bufsize): + """Construct a _Stream object. + """ + self._extfileobj = True + if fileobj is None: + fileobj = _LowLevelFile(name, mode) + self._extfileobj = False + + if comptype == '*': + # Enable transparent compression detection for the + # stream interface + fileobj = _StreamProxy(fileobj) + comptype = fileobj.getcomptype() + + self.name = name or "" + self.mode = mode + self.comptype = comptype + self.fileobj = fileobj + self.bufsize = bufsize + self.buf = b"" + self.pos = 0 + self.closed = False + + try: + if comptype == "gz": + try: + import zlib + except ImportError: + raise CompressionError("zlib module is not available") + self.zlib = zlib + self.crc = zlib.crc32(b"") + if mode == "r": + self._init_read_gz() + else: + self._init_write_gz() + + if comptype == "bz2": + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + if mode == "r": + self.dbuf = b"" + self.cmp = bz2.BZ2Decompressor() + else: + self.cmp = bz2.BZ2Compressor() + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + def __del__(self): + if hasattr(self, "closed") and not self.closed: + self.close() + + def _init_write_gz(self): + """Initialize for writing with gzip compression. + """ + self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED, + -self.zlib.MAX_WBITS, + self.zlib.DEF_MEM_LEVEL, + 0) + timestamp = struct.pack(" self.bufsize: + self.fileobj.write(self.buf[:self.bufsize]) + self.buf = self.buf[self.bufsize:] + + def close(self): + """Close the _Stream object. No operation should be + done on it afterwards. + """ + if self.closed: + return + + if self.mode == "w" and self.comptype != "tar": + self.buf += self.cmp.flush() + + if self.mode == "w" and self.buf: + self.fileobj.write(self.buf) + self.buf = b"" + if self.comptype == "gz": + # The native zlib crc is an unsigned 32-bit integer, but + # the Python wrapper implicitly casts that to a signed C + # long. So, on a 32-bit box self.crc may "look negative", + # while the same crc on a 64-bit box may "look positive". + # To avoid irksome warnings from the `struct` module, force + # it to look positive on all boxes. + self.fileobj.write(struct.pack("= 0: + blocks, remainder = divmod(pos - self.pos, self.bufsize) + for i in range(blocks): + self.read(self.bufsize) + self.read(remainder) + else: + raise StreamError("seeking backwards is not allowed") + return self.pos + + def read(self, size=None): + """Return the next size number of bytes from the stream. + If size is not defined, return all bytes of the stream + up to EOF. + """ + if size is None: + t = [] + while True: + buf = self._read(self.bufsize) + if not buf: + break + t.append(buf) + buf = "".join(t) + else: + buf = self._read(size) + self.pos += len(buf) + return buf + + def _read(self, size): + """Return size bytes from the stream. + """ + if self.comptype == "tar": + return self.__read(size) + + c = len(self.dbuf) + while c < size: + buf = self.__read(self.bufsize) + if not buf: + break + try: + buf = self.cmp.decompress(buf) + except IOError: + raise ReadError("invalid compressed data") + self.dbuf += buf + c += len(buf) + buf = self.dbuf[:size] + self.dbuf = self.dbuf[size:] + return buf + + def __read(self, size): + """Return size bytes from stream. If internal buffer is empty, + read another block from the stream. + """ + c = len(self.buf) + while c < size: + buf = self.fileobj.read(self.bufsize) + if not buf: + break + self.buf += buf + c += len(buf) + buf = self.buf[:size] + self.buf = self.buf[size:] + return buf +# class _Stream + +class _StreamProxy(object): + """Small proxy class that enables transparent compression + detection for the Stream interface (mode 'r|*'). + """ + + def __init__(self, fileobj): + self.fileobj = fileobj + self.buf = self.fileobj.read(BLOCKSIZE) + + def read(self, size): + self.read = self.fileobj.read + return self.buf + + def getcomptype(self): + if self.buf.startswith(b"\037\213\010"): + return "gz" + if self.buf.startswith(b"BZh91"): + return "bz2" + return "tar" + + def close(self): + self.fileobj.close() +# class StreamProxy + +class _BZ2Proxy(object): + """Small proxy class that enables external file object + support for "r:bz2" and "w:bz2" modes. This is actually + a workaround for a limitation in bz2 module's BZ2File + class which (unlike gzip.GzipFile) has no support for + a file object argument. + """ + + blocksize = 16 * 1024 + + def __init__(self, fileobj, mode): + self.fileobj = fileobj + self.mode = mode + self.name = getattr(self.fileobj, "name", None) + self.init() + + def init(self): + import bz2 + self.pos = 0 + if self.mode == "r": + self.bz2obj = bz2.BZ2Decompressor() + self.fileobj.seek(0) + self.buf = b"" + else: + self.bz2obj = bz2.BZ2Compressor() + + def read(self, size): + x = len(self.buf) + while x < size: + raw = self.fileobj.read(self.blocksize) + if not raw: + break + data = self.bz2obj.decompress(raw) + self.buf += data + x += len(data) + + buf = self.buf[:size] + self.buf = self.buf[size:] + self.pos += len(buf) + return buf + + def seek(self, pos): + if pos < self.pos: + self.init() + self.read(pos - self.pos) + + def tell(self): + return self.pos + + def write(self, data): + self.pos += len(data) + raw = self.bz2obj.compress(data) + self.fileobj.write(raw) + + def close(self): + if self.mode == "w": + raw = self.bz2obj.flush() + self.fileobj.write(raw) +# class _BZ2Proxy + +#------------------------ +# Extraction file object +#------------------------ +class _FileInFile(object): + """A thin wrapper around an existing file object that + provides a part of its data as an individual file + object. + """ + + def __init__(self, fileobj, offset, size, blockinfo=None): + self.fileobj = fileobj + self.offset = offset + self.size = size + self.position = 0 + + if blockinfo is None: + blockinfo = [(0, size)] + + # Construct a map with data and zero blocks. + self.map_index = 0 + self.map = [] + lastpos = 0 + realpos = self.offset + for offset, size in blockinfo: + if offset > lastpos: + self.map.append((False, lastpos, offset, None)) + self.map.append((True, offset, offset + size, realpos)) + realpos += size + lastpos = offset + size + if lastpos < self.size: + self.map.append((False, lastpos, self.size, None)) + + def seekable(self): + if not hasattr(self.fileobj, "seekable"): + # XXX gzip.GzipFile and bz2.BZ2File + return True + return self.fileobj.seekable() + + def tell(self): + """Return the current file position. + """ + return self.position + + def seek(self, position): + """Seek to a position in the file. + """ + self.position = position + + def read(self, size=None): + """Read data from the file. + """ + if size is None: + size = self.size - self.position + else: + size = min(size, self.size - self.position) + + buf = b"" + while size > 0: + while True: + data, start, stop, offset = self.map[self.map_index] + if start <= self.position < stop: + break + else: + self.map_index += 1 + if self.map_index == len(self.map): + self.map_index = 0 + length = min(size, stop - self.position) + if data: + self.fileobj.seek(offset + (self.position - start)) + buf += self.fileobj.read(length) + else: + buf += NUL * length + size -= length + self.position += length + return buf +#class _FileInFile + + +class ExFileObject(object): + """File-like object for reading an archive member. + Is returned by TarFile.extractfile(). + """ + blocksize = 1024 + + def __init__(self, tarfile, tarinfo): + self.fileobj = _FileInFile(tarfile.fileobj, + tarinfo.offset_data, + tarinfo.size, + tarinfo.sparse) + self.name = tarinfo.name + self.mode = "r" + self.closed = False + self.size = tarinfo.size + + self.position = 0 + self.buffer = b"" + + def readable(self): + return True + + def writable(self): + return False + + def seekable(self): + return self.fileobj.seekable() + + def read(self, size=None): + """Read at most size bytes from the file. If size is not + present or None, read all data until EOF is reached. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + buf = b"" + if self.buffer: + if size is None: + buf = self.buffer + self.buffer = b"" + else: + buf = self.buffer[:size] + self.buffer = self.buffer[size:] + + if size is None: + buf += self.fileobj.read() + else: + buf += self.fileobj.read(size - len(buf)) + + self.position += len(buf) + return buf + + # XXX TextIOWrapper uses the read1() method. + read1 = read + + def readline(self, size=-1): + """Read one entire line from the file. If size is present + and non-negative, return a string with at most that + size, which may be an incomplete line. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + while True: + buf = self.fileobj.read(self.blocksize) + self.buffer += buf + if not buf or b"\n" in buf: + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + pos = len(self.buffer) + break + + if size != -1: + pos = min(size, pos) + + buf = self.buffer[:pos] + self.buffer = self.buffer[pos:] + self.position += len(buf) + return buf + + def readlines(self): + """Return a list with all remaining lines. + """ + result = [] + while True: + line = self.readline() + if not line: break + result.append(line) + return result + + def tell(self): + """Return the current file position. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + return self.position + + def seek(self, pos, whence=os.SEEK_SET): + """Seek to a position in the file. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + if whence == os.SEEK_SET: + self.position = min(max(pos, 0), self.size) + elif whence == os.SEEK_CUR: + if pos < 0: + self.position = max(self.position + pos, 0) + else: + self.position = min(self.position + pos, self.size) + elif whence == os.SEEK_END: + self.position = max(min(self.size + pos, self.size), 0) + else: + raise ValueError("Invalid argument") + + self.buffer = b"" + self.fileobj.seek(self.position) + + def close(self): + """Close the file object. + """ + self.closed = True + + def __iter__(self): + """Get an iterator over the file's lines. + """ + while True: + line = self.readline() + if not line: + break + yield line +#class ExFileObject + +#------------------ +# Exported Classes +#------------------ +class TarInfo(object): + """Informational class which holds the details about an + archive member given by a tar header block. + TarInfo objects are returned by TarFile.getmember(), + TarFile.getmembers() and TarFile.gettarinfo() and are + usually created internally. + """ + + __slots__ = ("name", "mode", "uid", "gid", "size", "mtime", + "chksum", "type", "linkname", "uname", "gname", + "devmajor", "devminor", + "offset", "offset_data", "pax_headers", "sparse", + "tarfile", "_sparse_structs", "_link_target") + + def __init__(self, name=""): + """Construct a TarInfo object. name is the optional name + of the member. + """ + self.name = name # member name + self.mode = 0o644 # file permissions + self.uid = 0 # user id + self.gid = 0 # group id + self.size = 0 # file size + self.mtime = 0 # modification time + self.chksum = 0 # header checksum + self.type = REGTYPE # member type + self.linkname = "" # link name + self.uname = "" # user name + self.gname = "" # group name + self.devmajor = 0 # device major number + self.devminor = 0 # device minor number + + self.offset = 0 # the tar header starts here + self.offset_data = 0 # the file's data starts here + + self.sparse = None # sparse member information + self.pax_headers = {} # pax header information + + # In pax headers the "name" and "linkname" field are called + # "path" and "linkpath". + def _getpath(self): + return self.name + def _setpath(self, name): + self.name = name + path = property(_getpath, _setpath) + + def _getlinkpath(self): + return self.linkname + def _setlinkpath(self, linkname): + self.linkname = linkname + linkpath = property(_getlinkpath, _setlinkpath) + + def __repr__(self): + return "<%s %r at %#x>" % (self.__class__.__name__,self.name,id(self)) + + def get_info(self): + """Return the TarInfo's attributes as a dictionary. + """ + info = { + "name": self.name, + "mode": self.mode & 0o7777, + "uid": self.uid, + "gid": self.gid, + "size": self.size, + "mtime": self.mtime, + "chksum": self.chksum, + "type": self.type, + "linkname": self.linkname, + "uname": self.uname, + "gname": self.gname, + "devmajor": self.devmajor, + "devminor": self.devminor + } + + if info["type"] == DIRTYPE and not info["name"].endswith("/"): + info["name"] += "/" + + return info + + def tobuf(self, format=DEFAULT_FORMAT, encoding=ENCODING, errors="surrogateescape"): + """Return a tar header as a string of 512 byte blocks. + """ + info = self.get_info() + + if format == USTAR_FORMAT: + return self.create_ustar_header(info, encoding, errors) + elif format == GNU_FORMAT: + return self.create_gnu_header(info, encoding, errors) + elif format == PAX_FORMAT: + return self.create_pax_header(info, encoding) + else: + raise ValueError("invalid format") + + def create_ustar_header(self, info, encoding, errors): + """Return the object as a ustar header block. + """ + info["magic"] = POSIX_MAGIC + + if len(info["linkname"]) > LENGTH_LINK: + raise ValueError("linkname is too long") + + if len(info["name"]) > LENGTH_NAME: + info["prefix"], info["name"] = self._posix_split_name(info["name"]) + + return self._create_header(info, USTAR_FORMAT, encoding, errors) + + def create_gnu_header(self, info, encoding, errors): + """Return the object as a GNU header block sequence. + """ + info["magic"] = GNU_MAGIC + + buf = b"" + if len(info["linkname"]) > LENGTH_LINK: + buf += self._create_gnu_long_header(info["linkname"], GNUTYPE_LONGLINK, encoding, errors) + + if len(info["name"]) > LENGTH_NAME: + buf += self._create_gnu_long_header(info["name"], GNUTYPE_LONGNAME, encoding, errors) + + return buf + self._create_header(info, GNU_FORMAT, encoding, errors) + + def create_pax_header(self, info, encoding): + """Return the object as a ustar header block. If it cannot be + represented this way, prepend a pax extended header sequence + with supplement information. + """ + info["magic"] = POSIX_MAGIC + pax_headers = self.pax_headers.copy() + + # Test string fields for values that exceed the field length or cannot + # be represented in ASCII encoding. + for name, hname, length in ( + ("name", "path", LENGTH_NAME), ("linkname", "linkpath", LENGTH_LINK), + ("uname", "uname", 32), ("gname", "gname", 32)): + + if hname in pax_headers: + # The pax header has priority. + continue + + # Try to encode the string as ASCII. + try: + info[name].encode("ascii", "strict") + except UnicodeEncodeError: + pax_headers[hname] = info[name] + continue + + if len(info[name]) > length: + pax_headers[hname] = info[name] + + # Test number fields for values that exceed the field limit or values + # that like to be stored as float. + for name, digits in (("uid", 8), ("gid", 8), ("size", 12), ("mtime", 12)): + if name in pax_headers: + # The pax header has priority. Avoid overflow. + info[name] = 0 + continue + + val = info[name] + if not 0 <= val < 8 ** (digits - 1) or isinstance(val, float): + pax_headers[name] = str(val) + info[name] = 0 + + # Create a pax extended header if necessary. + if pax_headers: + buf = self._create_pax_generic_header(pax_headers, XHDTYPE, encoding) + else: + buf = b"" + + return buf + self._create_header(info, USTAR_FORMAT, "ascii", "replace") + + @classmethod + def create_pax_global_header(cls, pax_headers): + """Return the object as a pax global header block sequence. + """ + return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf8") + + def _posix_split_name(self, name): + """Split a name longer than 100 chars into a prefix + and a name part. + """ + prefix = name[:LENGTH_PREFIX + 1] + while prefix and prefix[-1] != "/": + prefix = prefix[:-1] + + name = name[len(prefix):] + prefix = prefix[:-1] + + if not prefix or len(name) > LENGTH_NAME: + raise ValueError("name is too long") + return prefix, name + + @staticmethod + def _create_header(info, format, encoding, errors): + """Return a header block. info is a dictionary with file + information, format must be one of the *_FORMAT constants. + """ + parts = [ + stn(info.get("name", ""), 100, encoding, errors), + itn(info.get("mode", 0) & 0o7777, 8, format), + itn(info.get("uid", 0), 8, format), + itn(info.get("gid", 0), 8, format), + itn(info.get("size", 0), 12, format), + itn(info.get("mtime", 0), 12, format), + b" ", # checksum field + info.get("type", REGTYPE), + stn(info.get("linkname", ""), 100, encoding, errors), + info.get("magic", POSIX_MAGIC), + stn(info.get("uname", ""), 32, encoding, errors), + stn(info.get("gname", ""), 32, encoding, errors), + itn(info.get("devmajor", 0), 8, format), + itn(info.get("devminor", 0), 8, format), + stn(info.get("prefix", ""), 155, encoding, errors) + ] + + buf = struct.pack("%ds" % BLOCKSIZE, b"".join(parts)) + chksum = calc_chksums(buf[-BLOCKSIZE:])[0] + buf = buf[:-364] + ("%06o\0" % chksum).encode("ascii") + buf[-357:] + return buf + + @staticmethod + def _create_payload(payload): + """Return the string payload filled with zero bytes + up to the next 512 byte border. + """ + blocks, remainder = divmod(len(payload), BLOCKSIZE) + if remainder > 0: + payload += (BLOCKSIZE - remainder) * NUL + return payload + + @classmethod + def _create_gnu_long_header(cls, name, type, encoding, errors): + """Return a GNUTYPE_LONGNAME or GNUTYPE_LONGLINK sequence + for name. + """ + name = name.encode(encoding, errors) + NUL + + info = {} + info["name"] = "././@LongLink" + info["type"] = type + info["size"] = len(name) + info["magic"] = GNU_MAGIC + + # create extended header + name blocks. + return cls._create_header(info, USTAR_FORMAT, encoding, errors) + \ + cls._create_payload(name) + + @classmethod + def _create_pax_generic_header(cls, pax_headers, type, encoding): + """Return a POSIX.1-2008 extended or global header sequence + that contains a list of keyword, value pairs. The values + must be strings. + """ + # Check if one of the fields contains surrogate characters and thereby + # forces hdrcharset=BINARY, see _proc_pax() for more information. + binary = False + for keyword, value in pax_headers.items(): + try: + value.encode("utf8", "strict") + except UnicodeEncodeError: + binary = True + break + + records = b"" + if binary: + # Put the hdrcharset field at the beginning of the header. + records += b"21 hdrcharset=BINARY\n" + + for keyword, value in pax_headers.items(): + keyword = keyword.encode("utf8") + if binary: + # Try to restore the original byte representation of `value'. + # Needless to say, that the encoding must match the string. + value = value.encode(encoding, "surrogateescape") + else: + value = value.encode("utf8") + + l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n' + n = p = 0 + while True: + n = l + len(str(p)) + if n == p: + break + p = n + records += bytes(str(p), "ascii") + b" " + keyword + b"=" + value + b"\n" + + # We use a hardcoded "././@PaxHeader" name like star does + # instead of the one that POSIX recommends. + info = {} + info["name"] = "././@PaxHeader" + info["type"] = type + info["size"] = len(records) + info["magic"] = POSIX_MAGIC + + # Create pax header + record blocks. + return cls._create_header(info, USTAR_FORMAT, "ascii", "replace") + \ + cls._create_payload(records) + + @classmethod + def frombuf(cls, buf, encoding, errors): + """Construct a TarInfo object from a 512 byte bytes object. + """ + if len(buf) == 0: + raise EmptyHeaderError("empty header") + if len(buf) != BLOCKSIZE: + raise TruncatedHeaderError("truncated header") + if buf.count(NUL) == BLOCKSIZE: + raise EOFHeaderError("end of file header") + + chksum = nti(buf[148:156]) + if chksum not in calc_chksums(buf): + raise InvalidHeaderError("bad checksum") + + obj = cls() + obj.name = nts(buf[0:100], encoding, errors) + obj.mode = nti(buf[100:108]) + obj.uid = nti(buf[108:116]) + obj.gid = nti(buf[116:124]) + obj.size = nti(buf[124:136]) + obj.mtime = nti(buf[136:148]) + obj.chksum = chksum + obj.type = buf[156:157] + obj.linkname = nts(buf[157:257], encoding, errors) + obj.uname = nts(buf[265:297], encoding, errors) + obj.gname = nts(buf[297:329], encoding, errors) + obj.devmajor = nti(buf[329:337]) + obj.devminor = nti(buf[337:345]) + prefix = nts(buf[345:500], encoding, errors) + + # Old V7 tar format represents a directory as a regular + # file with a trailing slash. + if obj.type == AREGTYPE and obj.name.endswith("/"): + obj.type = DIRTYPE + + # The old GNU sparse format occupies some of the unused + # space in the buffer for up to 4 sparse structures. + # Save the them for later processing in _proc_sparse(). + if obj.type == GNUTYPE_SPARSE: + pos = 386 + structs = [] + for i in range(4): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[482]) + origsize = nti(buf[483:495]) + obj._sparse_structs = (structs, isextended, origsize) + + # Remove redundant slashes from directories. + if obj.isdir(): + obj.name = obj.name.rstrip("/") + + # Reconstruct a ustar longname. + if prefix and obj.type not in GNU_TYPES: + obj.name = prefix + "/" + obj.name + return obj + + @classmethod + def fromtarfile(cls, tarfile): + """Return the next TarInfo object from TarFile object + tarfile. + """ + buf = tarfile.fileobj.read(BLOCKSIZE) + obj = cls.frombuf(buf, tarfile.encoding, tarfile.errors) + obj.offset = tarfile.fileobj.tell() - BLOCKSIZE + return obj._proc_member(tarfile) + + #-------------------------------------------------------------------------- + # The following are methods that are called depending on the type of a + # member. The entry point is _proc_member() which can be overridden in a + # subclass to add custom _proc_*() methods. A _proc_*() method MUST + # implement the following + # operations: + # 1. Set self.offset_data to the position where the data blocks begin, + # if there is data that follows. + # 2. Set tarfile.offset to the position where the next member's header will + # begin. + # 3. Return self or another valid TarInfo object. + def _proc_member(self, tarfile): + """Choose the right processing method depending on + the type and call it. + """ + if self.type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): + return self._proc_gnulong(tarfile) + elif self.type == GNUTYPE_SPARSE: + return self._proc_sparse(tarfile) + elif self.type in (XHDTYPE, XGLTYPE, SOLARIS_XHDTYPE): + return self._proc_pax(tarfile) + else: + return self._proc_builtin(tarfile) + + def _proc_builtin(self, tarfile): + """Process a builtin type or an unknown type which + will be treated as a regular file. + """ + self.offset_data = tarfile.fileobj.tell() + offset = self.offset_data + if self.isreg() or self.type not in SUPPORTED_TYPES: + # Skip the following data blocks. + offset += self._block(self.size) + tarfile.offset = offset + + # Patch the TarInfo object with saved global + # header information. + self._apply_pax_info(tarfile.pax_headers, tarfile.encoding, tarfile.errors) + + return self + + def _proc_gnulong(self, tarfile): + """Process the blocks that hold a GNU longname + or longlink member. + """ + buf = tarfile.fileobj.read(self._block(self.size)) + + # Fetch the next header and process it. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Patch the TarInfo object from the next header with + # the longname information. + next.offset = self.offset + if self.type == GNUTYPE_LONGNAME: + next.name = nts(buf, tarfile.encoding, tarfile.errors) + elif self.type == GNUTYPE_LONGLINK: + next.linkname = nts(buf, tarfile.encoding, tarfile.errors) + + return next + + def _proc_sparse(self, tarfile): + """Process a GNU sparse header plus extra headers. + """ + # We already collected some sparse structures in frombuf(). + structs, isextended, origsize = self._sparse_structs + del self._sparse_structs + + # Collect sparse structures from extended header blocks. + while isextended: + buf = tarfile.fileobj.read(BLOCKSIZE) + pos = 0 + for i in range(21): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + if offset and numbytes: + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[504]) + self.sparse = structs + + self.offset_data = tarfile.fileobj.tell() + tarfile.offset = self.offset_data + self._block(self.size) + self.size = origsize + return self + + def _proc_pax(self, tarfile): + """Process an extended or global header as described in + POSIX.1-2008. + """ + # Read the header information. + buf = tarfile.fileobj.read(self._block(self.size)) + + # A pax header stores supplemental information for either + # the following file (extended) or all following files + # (global). + if self.type == XGLTYPE: + pax_headers = tarfile.pax_headers + else: + pax_headers = tarfile.pax_headers.copy() + + # Check if the pax header contains a hdrcharset field. This tells us + # the encoding of the path, linkpath, uname and gname fields. Normally, + # these fields are UTF-8 encoded but since POSIX.1-2008 tar + # implementations are allowed to store them as raw binary strings if + # the translation to UTF-8 fails. + match = re.search(br"\d+ hdrcharset=([^\n]+)\n", buf) + if match is not None: + pax_headers["hdrcharset"] = match.group(1).decode("utf8") + + # For the time being, we don't care about anything other than "BINARY". + # The only other value that is currently allowed by the standard is + # "ISO-IR 10646 2000 UTF-8" in other words UTF-8. + hdrcharset = pax_headers.get("hdrcharset") + if hdrcharset == "BINARY": + encoding = tarfile.encoding + else: + encoding = "utf8" + + # Parse pax header information. A record looks like that: + # "%d %s=%s\n" % (length, keyword, value). length is the size + # of the complete record including the length field itself and + # the newline. keyword and value are both UTF-8 encoded strings. + regex = re.compile(br"(\d+) ([^=]+)=") + pos = 0 + while True: + match = regex.match(buf, pos) + if not match: + break + + length, keyword = match.groups() + length = int(length) + value = buf[match.end(2) + 1:match.start(1) + length - 1] + + # Normally, we could just use "utf8" as the encoding and "strict" + # as the error handler, but we better not take the risk. For + # example, GNU tar <= 1.23 is known to store filenames it cannot + # translate to UTF-8 as raw strings (unfortunately without a + # hdrcharset=BINARY header). + # We first try the strict standard encoding, and if that fails we + # fall back on the user's encoding and error handler. + keyword = self._decode_pax_field(keyword, "utf8", "utf8", + tarfile.errors) + if keyword in PAX_NAME_FIELDS: + value = self._decode_pax_field(value, encoding, tarfile.encoding, + tarfile.errors) + else: + value = self._decode_pax_field(value, "utf8", "utf8", + tarfile.errors) + + pax_headers[keyword] = value + pos += length + + # Fetch the next header. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Process GNU sparse information. + if "GNU.sparse.map" in pax_headers: + # GNU extended sparse format version 0.1. + self._proc_gnusparse_01(next, pax_headers) + + elif "GNU.sparse.size" in pax_headers: + # GNU extended sparse format version 0.0. + self._proc_gnusparse_00(next, pax_headers, buf) + + elif pax_headers.get("GNU.sparse.major") == "1" and pax_headers.get("GNU.sparse.minor") == "0": + # GNU extended sparse format version 1.0. + self._proc_gnusparse_10(next, pax_headers, tarfile) + + if self.type in (XHDTYPE, SOLARIS_XHDTYPE): + # Patch the TarInfo object with the extended header info. + next._apply_pax_info(pax_headers, tarfile.encoding, tarfile.errors) + next.offset = self.offset + + if "size" in pax_headers: + # If the extended header replaces the size field, + # we need to recalculate the offset where the next + # header starts. + offset = next.offset_data + if next.isreg() or next.type not in SUPPORTED_TYPES: + offset += next._block(next.size) + tarfile.offset = offset + + return next + + def _proc_gnusparse_00(self, next, pax_headers, buf): + """Process a GNU tar extended sparse header, version 0.0. + """ + offsets = [] + for match in re.finditer(br"\d+ GNU.sparse.offset=(\d+)\n", buf): + offsets.append(int(match.group(1))) + numbytes = [] + for match in re.finditer(br"\d+ GNU.sparse.numbytes=(\d+)\n", buf): + numbytes.append(int(match.group(1))) + next.sparse = list(zip(offsets, numbytes)) + + def _proc_gnusparse_01(self, next, pax_headers): + """Process a GNU tar extended sparse header, version 0.1. + """ + sparse = [int(x) for x in pax_headers["GNU.sparse.map"].split(",")] + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _proc_gnusparse_10(self, next, pax_headers, tarfile): + """Process a GNU tar extended sparse header, version 1.0. + """ + fields = None + sparse = [] + buf = tarfile.fileobj.read(BLOCKSIZE) + fields, buf = buf.split(b"\n", 1) + fields = int(fields) + while len(sparse) < fields * 2: + if b"\n" not in buf: + buf += tarfile.fileobj.read(BLOCKSIZE) + number, buf = buf.split(b"\n", 1) + sparse.append(int(number)) + next.offset_data = tarfile.fileobj.tell() + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _apply_pax_info(self, pax_headers, encoding, errors): + """Replace fields with supplemental information from a previous + pax extended or global header. + """ + for keyword, value in pax_headers.items(): + if keyword == "GNU.sparse.name": + setattr(self, "path", value) + elif keyword == "GNU.sparse.size": + setattr(self, "size", int(value)) + elif keyword == "GNU.sparse.realsize": + setattr(self, "size", int(value)) + elif keyword in PAX_FIELDS: + if keyword in PAX_NUMBER_FIELDS: + try: + value = PAX_NUMBER_FIELDS[keyword](value) + except ValueError: + value = 0 + if keyword == "path": + value = value.rstrip("/") + setattr(self, keyword, value) + + self.pax_headers = pax_headers.copy() + + def _decode_pax_field(self, value, encoding, fallback_encoding, fallback_errors): + """Decode a single field from a pax record. + """ + try: + return value.decode(encoding, "strict") + except UnicodeDecodeError: + return value.decode(fallback_encoding, fallback_errors) + + def _block(self, count): + """Round up a byte count by BLOCKSIZE and return it, + e.g. _block(834) => 1024. + """ + blocks, remainder = divmod(count, BLOCKSIZE) + if remainder: + blocks += 1 + return blocks * BLOCKSIZE + + def isreg(self): + return self.type in REGULAR_TYPES + def isfile(self): + return self.isreg() + def isdir(self): + return self.type == DIRTYPE + def issym(self): + return self.type == SYMTYPE + def islnk(self): + return self.type == LNKTYPE + def ischr(self): + return self.type == CHRTYPE + def isblk(self): + return self.type == BLKTYPE + def isfifo(self): + return self.type == FIFOTYPE + def issparse(self): + return self.sparse is not None + def isdev(self): + return self.type in (CHRTYPE, BLKTYPE, FIFOTYPE) +# class TarInfo + +class TarFile(object): + """The TarFile Class provides an interface to tar archives. + """ + + debug = 0 # May be set from 0 (no msgs) to 3 (all msgs) + + dereference = False # If true, add content of linked file to the + # tar file, else the link. + + ignore_zeros = False # If true, skips empty or invalid blocks and + # continues processing. + + errorlevel = 1 # If 0, fatal errors only appear in debug + # messages (if debug >= 0). If > 0, errors + # are passed to the caller as exceptions. + + format = DEFAULT_FORMAT # The format to use when creating an archive. + + encoding = ENCODING # Encoding for 8-bit character strings. + + errors = None # Error handler for unicode conversion. + + tarinfo = TarInfo # The default TarInfo class to use. + + fileobject = ExFileObject # The default ExFileObject class to use. + + def __init__(self, name=None, mode="r", fileobj=None, format=None, + tarinfo=None, dereference=None, ignore_zeros=None, encoding=None, + errors="surrogateescape", pax_headers=None, debug=None, errorlevel=None): + """Open an (uncompressed) tar archive `name'. `mode' is either 'r' to + read from an existing archive, 'a' to append data to an existing + file or 'w' to create a new file overwriting an existing one. `mode' + defaults to 'r'. + If `fileobj' is given, it is used for reading or writing data. If it + can be determined, `mode' is overridden by `fileobj's mode. + `fileobj' is not closed, when TarFile is closed. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + self.mode = mode + self._mode = {"r": "rb", "a": "r+b", "w": "wb"}[mode] + + if not fileobj: + if self.mode == "a" and not os.path.exists(name): + # Create nonexistent files in append mode. + self.mode = "w" + self._mode = "wb" + fileobj = bltn_open(name, self._mode) + self._extfileobj = False + else: + if name is None and hasattr(fileobj, "name"): + name = fileobj.name + if hasattr(fileobj, "mode"): + self._mode = fileobj.mode + self._extfileobj = True + self.name = os.path.abspath(name) if name else None + self.fileobj = fileobj + + # Init attributes. + if format is not None: + self.format = format + if tarinfo is not None: + self.tarinfo = tarinfo + if dereference is not None: + self.dereference = dereference + if ignore_zeros is not None: + self.ignore_zeros = ignore_zeros + if encoding is not None: + self.encoding = encoding + self.errors = errors + + if pax_headers is not None and self.format == PAX_FORMAT: + self.pax_headers = pax_headers + else: + self.pax_headers = {} + + if debug is not None: + self.debug = debug + if errorlevel is not None: + self.errorlevel = errorlevel + + # Init datastructures. + self.closed = False + self.members = [] # list of members as TarInfo objects + self._loaded = False # flag if all members have been read + self.offset = self.fileobj.tell() + # current position in the archive file + self.inodes = {} # dictionary caching the inodes of + # archive members already added + + try: + if self.mode == "r": + self.firstmember = None + self.firstmember = self.next() + + if self.mode == "a": + # Move to the end of the archive, + # before the first empty block. + while True: + self.fileobj.seek(self.offset) + try: + tarinfo = self.tarinfo.fromtarfile(self) + self.members.append(tarinfo) + except EOFHeaderError: + self.fileobj.seek(self.offset) + break + except HeaderError as e: + raise ReadError(str(e)) + + if self.mode in "aw": + self._loaded = True + + if self.pax_headers: + buf = self.tarinfo.create_pax_global_header(self.pax_headers.copy()) + self.fileobj.write(buf) + self.offset += len(buf) + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + #-------------------------------------------------------------------------- + # Below are the classmethods which act as alternate constructors to the + # TarFile class. The open() method is the only one that is needed for + # public use; it is the "super"-constructor and is able to select an + # adequate "sub"-constructor for a particular compression using the mapping + # from OPEN_METH. + # + # This concept allows one to subclass TarFile without losing the comfort of + # the super-constructor. A sub-constructor is registered and made available + # by adding it to the mapping in OPEN_METH. + + @classmethod + def open(cls, name=None, mode="r", fileobj=None, bufsize=RECORDSIZE, **kwargs): + """Open a tar archive for reading, writing or appending. Return + an appropriate TarFile class. + + mode: + 'r' or 'r:*' open for reading with transparent compression + 'r:' open for reading exclusively uncompressed + 'r:gz' open for reading with gzip compression + 'r:bz2' open for reading with bzip2 compression + 'a' or 'a:' open for appending, creating the file if necessary + 'w' or 'w:' open for writing without compression + 'w:gz' open for writing with gzip compression + 'w:bz2' open for writing with bzip2 compression + + 'r|*' open a stream of tar blocks with transparent compression + 'r|' open an uncompressed stream of tar blocks for reading + 'r|gz' open a gzip compressed stream of tar blocks + 'r|bz2' open a bzip2 compressed stream of tar blocks + 'w|' open an uncompressed stream for writing + 'w|gz' open a gzip compressed stream for writing + 'w|bz2' open a bzip2 compressed stream for writing + """ + + if not name and not fileobj: + raise ValueError("nothing to open") + + if mode in ("r", "r:*"): + # Find out which *open() is appropriate for opening the file. + for comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + if fileobj is not None: + saved_pos = fileobj.tell() + try: + return func(name, "r", fileobj, **kwargs) + except (ReadError, CompressionError) as e: + if fileobj is not None: + fileobj.seek(saved_pos) + continue + raise ReadError("file could not be opened successfully") + + elif ":" in mode: + filemode, comptype = mode.split(":", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + # Select the *open() function according to + # given compression. + if comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + else: + raise CompressionError("unknown compression type %r" % comptype) + return func(name, filemode, fileobj, **kwargs) + + elif "|" in mode: + filemode, comptype = mode.split("|", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + if filemode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + stream = _Stream(name, filemode, comptype, fileobj, bufsize) + try: + t = cls(name, filemode, stream, **kwargs) + except: + stream.close() + raise + t._extfileobj = False + return t + + elif mode in "aw": + return cls.taropen(name, mode, fileobj, **kwargs) + + raise ValueError("undiscernible mode") + + @classmethod + def taropen(cls, name, mode="r", fileobj=None, **kwargs): + """Open uncompressed tar archive name for reading or writing. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + return cls(name, mode, fileobj, **kwargs) + + @classmethod + def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open gzip compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + try: + import gzip + gzip.GzipFile + except (ImportError, AttributeError): + raise CompressionError("gzip module is not available") + + extfileobj = fileobj is not None + try: + fileobj = gzip.GzipFile(name, mode + "b", compresslevel, fileobj) + t = cls.taropen(name, mode, fileobj, **kwargs) + except IOError: + if not extfileobj and fileobj is not None: + fileobj.close() + if fileobj is None: + raise + raise ReadError("not a gzip file") + except: + if not extfileobj and fileobj is not None: + fileobj.close() + raise + t._extfileobj = extfileobj + return t + + @classmethod + def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open bzip2 compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'.") + + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + + if fileobj is not None: + fileobj = _BZ2Proxy(fileobj, mode) + else: + fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel) + + try: + t = cls.taropen(name, mode, fileobj, **kwargs) + except (IOError, EOFError): + fileobj.close() + raise ReadError("not a bzip2 file") + t._extfileobj = False + return t + + # All *open() methods are registered here. + OPEN_METH = { + "tar": "taropen", # uncompressed tar + "gz": "gzopen", # gzip compressed tar + "bz2": "bz2open" # bzip2 compressed tar + } + + #-------------------------------------------------------------------------- + # The public methods which TarFile provides: + + def close(self): + """Close the TarFile. In write-mode, two finishing zero blocks are + appended to the archive. + """ + if self.closed: + return + + if self.mode in "aw": + self.fileobj.write(NUL * (BLOCKSIZE * 2)) + self.offset += (BLOCKSIZE * 2) + # fill up the end with zero-blocks + # (like option -b20 for tar does) + blocks, remainder = divmod(self.offset, RECORDSIZE) + if remainder > 0: + self.fileobj.write(NUL * (RECORDSIZE - remainder)) + + if not self._extfileobj: + self.fileobj.close() + self.closed = True + + def getmember(self, name): + """Return a TarInfo object for member `name'. If `name' can not be + found in the archive, KeyError is raised. If a member occurs more + than once in the archive, its last occurrence is assumed to be the + most up-to-date version. + """ + tarinfo = self._getmember(name) + if tarinfo is None: + raise KeyError("filename %r not found" % name) + return tarinfo + + def getmembers(self): + """Return the members of the archive as a list of TarInfo objects. The + list has the same order as the members in the archive. + """ + self._check() + if not self._loaded: # if we want to obtain a list of + self._load() # all members, we first have to + # scan the whole archive. + return self.members + + def getnames(self): + """Return the members of the archive as a list of their names. It has + the same order as the list returned by getmembers(). + """ + return [tarinfo.name for tarinfo in self.getmembers()] + + def gettarinfo(self, name=None, arcname=None, fileobj=None): + """Create a TarInfo object for either the file `name' or the file + object `fileobj' (using os.fstat on its file descriptor). You can + modify some of the TarInfo's attributes before you add it using + addfile(). If given, `arcname' specifies an alternative name for the + file in the archive. + """ + self._check("aw") + + # When fileobj is given, replace name by + # fileobj's real name. + if fileobj is not None: + name = fileobj.name + + # Building the name of the member in the archive. + # Backward slashes are converted to forward slashes, + # Absolute paths are turned to relative paths. + if arcname is None: + arcname = name + drv, arcname = os.path.splitdrive(arcname) + arcname = arcname.replace(os.sep, "/") + arcname = arcname.lstrip("/") + + # Now, fill the TarInfo object with + # information specific for the file. + tarinfo = self.tarinfo() + tarinfo.tarfile = self + + # Use os.stat or os.lstat, depending on platform + # and if symlinks shall be resolved. + if fileobj is None: + if hasattr(os, "lstat") and not self.dereference: + statres = os.lstat(name) + else: + statres = os.stat(name) + else: + statres = os.fstat(fileobj.fileno()) + linkname = "" + + stmd = statres.st_mode + if stat.S_ISREG(stmd): + inode = (statres.st_ino, statres.st_dev) + if not self.dereference and statres.st_nlink > 1 and \ + inode in self.inodes and arcname != self.inodes[inode]: + # Is it a hardlink to an already + # archived file? + type = LNKTYPE + linkname = self.inodes[inode] + else: + # The inode is added only if its valid. + # For win32 it is always 0. + type = REGTYPE + if inode[0]: + self.inodes[inode] = arcname + elif stat.S_ISDIR(stmd): + type = DIRTYPE + elif stat.S_ISFIFO(stmd): + type = FIFOTYPE + elif stat.S_ISLNK(stmd): + type = SYMTYPE + linkname = os.readlink(name) + elif stat.S_ISCHR(stmd): + type = CHRTYPE + elif stat.S_ISBLK(stmd): + type = BLKTYPE + else: + return None + + # Fill the TarInfo object with all + # information we can get. + tarinfo.name = arcname + tarinfo.mode = stmd + tarinfo.uid = statres.st_uid + tarinfo.gid = statres.st_gid + if type == REGTYPE: + tarinfo.size = statres.st_size + else: + tarinfo.size = 0 + tarinfo.mtime = statres.st_mtime + tarinfo.type = type + tarinfo.linkname = linkname + if pwd: + try: + tarinfo.uname = pwd.getpwuid(tarinfo.uid)[0] + except KeyError: + pass + if grp: + try: + tarinfo.gname = grp.getgrgid(tarinfo.gid)[0] + except KeyError: + pass + + if type in (CHRTYPE, BLKTYPE): + if hasattr(os, "major") and hasattr(os, "minor"): + tarinfo.devmajor = os.major(statres.st_rdev) + tarinfo.devminor = os.minor(statres.st_rdev) + return tarinfo + + def list(self, verbose=True): + """Print a table of contents to sys.stdout. If `verbose' is False, only + the names of the members are printed. If it is True, an `ls -l'-like + output is produced. + """ + self._check() + + for tarinfo in self: + if verbose: + print(filemode(tarinfo.mode), end=' ') + print("%s/%s" % (tarinfo.uname or tarinfo.uid, + tarinfo.gname or tarinfo.gid), end=' ') + if tarinfo.ischr() or tarinfo.isblk(): + print("%10s" % ("%d,%d" \ + % (tarinfo.devmajor, tarinfo.devminor)), end=' ') + else: + print("%10d" % tarinfo.size, end=' ') + print("%d-%02d-%02d %02d:%02d:%02d" \ + % time.localtime(tarinfo.mtime)[:6], end=' ') + + print(tarinfo.name + ("/" if tarinfo.isdir() else ""), end=' ') + + if verbose: + if tarinfo.issym(): + print("->", tarinfo.linkname, end=' ') + if tarinfo.islnk(): + print("link to", tarinfo.linkname, end=' ') + print() + + def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): + """Add the file `name' to the archive. `name' may be any type of file + (directory, fifo, symbolic link, etc.). If given, `arcname' + specifies an alternative name for the file in the archive. + Directories are added recursively by default. This can be avoided by + setting `recursive' to False. `exclude' is a function that should + return True for each filename to be excluded. `filter' is a function + that expects a TarInfo object argument and returns the changed + TarInfo object, if it returns None the TarInfo object will be + excluded from the archive. + """ + self._check("aw") + + if arcname is None: + arcname = name + + # Exclude pathnames. + if exclude is not None: + import warnings + warnings.warn("use the filter argument instead", + DeprecationWarning, 2) + if exclude(name): + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Skip if somebody tries to archive the archive... + if self.name is not None and os.path.abspath(name) == self.name: + self._dbg(2, "tarfile: Skipped %r" % name) + return + + self._dbg(1, name) + + # Create a TarInfo object from the file. + tarinfo = self.gettarinfo(name, arcname) + + if tarinfo is None: + self._dbg(1, "tarfile: Unsupported type %r" % name) + return + + # Change or exclude the TarInfo object. + if filter is not None: + tarinfo = filter(tarinfo) + if tarinfo is None: + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Append the tar header and data to the archive. + if tarinfo.isreg(): + f = bltn_open(name, "rb") + self.addfile(tarinfo, f) + f.close() + + elif tarinfo.isdir(): + self.addfile(tarinfo) + if recursive: + for f in os.listdir(name): + self.add(os.path.join(name, f), os.path.join(arcname, f), + recursive, exclude, filter=filter) + + else: + self.addfile(tarinfo) + + def addfile(self, tarinfo, fileobj=None): + """Add the TarInfo object `tarinfo' to the archive. If `fileobj' is + given, tarinfo.size bytes are read from it and added to the archive. + You can create TarInfo objects using gettarinfo(). + On Windows platforms, `fileobj' should always be opened with mode + 'rb' to avoid irritation about the file size. + """ + self._check("aw") + + tarinfo = copy.copy(tarinfo) + + buf = tarinfo.tobuf(self.format, self.encoding, self.errors) + self.fileobj.write(buf) + self.offset += len(buf) + + # If there's data to follow, append it. + if fileobj is not None: + copyfileobj(fileobj, self.fileobj, tarinfo.size) + blocks, remainder = divmod(tarinfo.size, BLOCKSIZE) + if remainder > 0: + self.fileobj.write(NUL * (BLOCKSIZE - remainder)) + blocks += 1 + self.offset += blocks * BLOCKSIZE + + self.members.append(tarinfo) + + def extractall(self, path=".", members=None): + """Extract all members from the archive to the current working + directory and set owner, modification time and permissions on + directories afterwards. `path' specifies a different directory + to extract to. `members' is optional and must be a subset of the + list returned by getmembers(). + """ + directories = [] + + if members is None: + members = self + + for tarinfo in members: + if tarinfo.isdir(): + # Extract directories with a safe mode. + directories.append(tarinfo) + tarinfo = copy.copy(tarinfo) + tarinfo.mode = 0o700 + # Do not set_attrs directories, as we will do that further down + self.extract(tarinfo, path, set_attrs=not tarinfo.isdir()) + + # Reverse sort directories. + directories.sort(key=lambda a: a.name) + directories.reverse() + + # Set correct owner, mtime and filemode on directories. + for tarinfo in directories: + dirpath = os.path.join(path, tarinfo.name) + try: + self.chown(tarinfo, dirpath) + self.utime(tarinfo, dirpath) + self.chmod(tarinfo, dirpath) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extract(self, member, path="", set_attrs=True): + """Extract a member from the archive to the current working directory, + using its full name. Its file information is extracted as accurately + as possible. `member' may be a filename or a TarInfo object. You can + specify a different directory using `path'. File attributes (owner, + mtime, mode) are set unless `set_attrs' is False. + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + # Prepare the link target for makelink(). + if tarinfo.islnk(): + tarinfo._link_target = os.path.join(path, tarinfo.linkname) + + try: + self._extract_member(tarinfo, os.path.join(path, tarinfo.name), + set_attrs=set_attrs) + except EnvironmentError as e: + if self.errorlevel > 0: + raise + else: + if e.filename is None: + self._dbg(1, "tarfile: %s" % e.strerror) + else: + self._dbg(1, "tarfile: %s %r" % (e.strerror, e.filename)) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extractfile(self, member): + """Extract a member from the archive as a file object. `member' may be + a filename or a TarInfo object. If `member' is a regular file, a + file-like object is returned. If `member' is a link, a file-like + object is constructed from the link's target. If `member' is none of + the above, None is returned. + The file-like object is read-only and provides the following + methods: read(), readline(), readlines(), seek() and tell() + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + if tarinfo.isreg(): + return self.fileobject(self, tarinfo) + + elif tarinfo.type not in SUPPORTED_TYPES: + # If a member's type is unknown, it is treated as a + # regular file. + return self.fileobject(self, tarinfo) + + elif tarinfo.islnk() or tarinfo.issym(): + if isinstance(self.fileobj, _Stream): + # A small but ugly workaround for the case that someone tries + # to extract a (sym)link as a file-object from a non-seekable + # stream of tar blocks. + raise StreamError("cannot extract (sym)link as file object") + else: + # A (sym)link's file object is its target's file object. + return self.extractfile(self._find_link_target(tarinfo)) + else: + # If there's no data associated with the member (directory, chrdev, + # blkdev, etc.), return None instead of a file object. + return None + + def _extract_member(self, tarinfo, targetpath, set_attrs=True): + """Extract the TarInfo object tarinfo to a physical + file called targetpath. + """ + # Fetch the TarInfo object for the given name + # and build the destination pathname, replacing + # forward slashes to platform specific separators. + targetpath = targetpath.rstrip("/") + targetpath = targetpath.replace("/", os.sep) + + # Create all upper directories. + upperdirs = os.path.dirname(targetpath) + if upperdirs and not os.path.exists(upperdirs): + # Create directories that are not part of the archive with + # default permissions. + os.makedirs(upperdirs) + + if tarinfo.islnk() or tarinfo.issym(): + self._dbg(1, "%s -> %s" % (tarinfo.name, tarinfo.linkname)) + else: + self._dbg(1, tarinfo.name) + + if tarinfo.isreg(): + self.makefile(tarinfo, targetpath) + elif tarinfo.isdir(): + self.makedir(tarinfo, targetpath) + elif tarinfo.isfifo(): + self.makefifo(tarinfo, targetpath) + elif tarinfo.ischr() or tarinfo.isblk(): + self.makedev(tarinfo, targetpath) + elif tarinfo.islnk() or tarinfo.issym(): + self.makelink(tarinfo, targetpath) + elif tarinfo.type not in SUPPORTED_TYPES: + self.makeunknown(tarinfo, targetpath) + else: + self.makefile(tarinfo, targetpath) + + if set_attrs: + self.chown(tarinfo, targetpath) + if not tarinfo.issym(): + self.chmod(tarinfo, targetpath) + self.utime(tarinfo, targetpath) + + #-------------------------------------------------------------------------- + # Below are the different file methods. They are called via + # _extract_member() when extract() is called. They can be replaced in a + # subclass to implement other functionality. + + def makedir(self, tarinfo, targetpath): + """Make a directory called targetpath. + """ + try: + # Use a safe mode for the directory, the real mode is set + # later in _extract_member(). + os.mkdir(targetpath, 0o700) + except EnvironmentError as e: + if e.errno != errno.EEXIST: + raise + + def makefile(self, tarinfo, targetpath): + """Make a file called targetpath. + """ + source = self.fileobj + source.seek(tarinfo.offset_data) + target = bltn_open(targetpath, "wb") + if tarinfo.sparse is not None: + for offset, size in tarinfo.sparse: + target.seek(offset) + copyfileobj(source, target, size) + else: + copyfileobj(source, target, tarinfo.size) + target.seek(tarinfo.size) + target.truncate() + target.close() + + def makeunknown(self, tarinfo, targetpath): + """Make a file from a TarInfo object with an unknown type + at targetpath. + """ + self.makefile(tarinfo, targetpath) + self._dbg(1, "tarfile: Unknown file type %r, " \ + "extracted as regular file." % tarinfo.type) + + def makefifo(self, tarinfo, targetpath): + """Make a fifo called targetpath. + """ + if hasattr(os, "mkfifo"): + os.mkfifo(targetpath) + else: + raise ExtractError("fifo not supported by system") + + def makedev(self, tarinfo, targetpath): + """Make a character or block device called targetpath. + """ + if not hasattr(os, "mknod") or not hasattr(os, "makedev"): + raise ExtractError("special devices not supported by system") + + mode = tarinfo.mode + if tarinfo.isblk(): + mode |= stat.S_IFBLK + else: + mode |= stat.S_IFCHR + + os.mknod(targetpath, mode, + os.makedev(tarinfo.devmajor, tarinfo.devminor)) + + def makelink(self, tarinfo, targetpath): + """Make a (symbolic) link called targetpath. If it cannot be created + (platform limitation), we try to make a copy of the referenced file + instead of a link. + """ + try: + # For systems that support symbolic and hard links. + if tarinfo.issym(): + os.symlink(tarinfo.linkname, targetpath) + else: + # See extract(). + if os.path.exists(tarinfo._link_target): + os.link(tarinfo._link_target, targetpath) + else: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except symlink_exception: + if tarinfo.issym(): + linkpath = os.path.join(os.path.dirname(tarinfo.name), + tarinfo.linkname) + else: + linkpath = tarinfo.linkname + else: + try: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except KeyError: + raise ExtractError("unable to resolve link inside archive") + + def chown(self, tarinfo, targetpath): + """Set owner of targetpath according to tarinfo. + """ + if pwd and hasattr(os, "geteuid") and os.geteuid() == 0: + # We have to be root to do so. + try: + g = grp.getgrnam(tarinfo.gname)[2] + except KeyError: + g = tarinfo.gid + try: + u = pwd.getpwnam(tarinfo.uname)[2] + except KeyError: + u = tarinfo.uid + try: + if tarinfo.issym() and hasattr(os, "lchown"): + os.lchown(targetpath, u, g) + else: + if sys.platform != "os2emx": + os.chown(targetpath, u, g) + except EnvironmentError as e: + raise ExtractError("could not change owner") + + def chmod(self, tarinfo, targetpath): + """Set file permissions of targetpath according to tarinfo. + """ + if hasattr(os, 'chmod'): + try: + os.chmod(targetpath, tarinfo.mode) + except EnvironmentError as e: + raise ExtractError("could not change mode") + + def utime(self, tarinfo, targetpath): + """Set modification time of targetpath according to tarinfo. + """ + if not hasattr(os, 'utime'): + return + try: + os.utime(targetpath, (tarinfo.mtime, tarinfo.mtime)) + except EnvironmentError as e: + raise ExtractError("could not change modification time") + + #-------------------------------------------------------------------------- + def next(self): + """Return the next member of the archive as a TarInfo object, when + TarFile is opened for reading. Return None if there is no more + available. + """ + self._check("ra") + if self.firstmember is not None: + m = self.firstmember + self.firstmember = None + return m + + # Read the next block. + self.fileobj.seek(self.offset) + tarinfo = None + while True: + try: + tarinfo = self.tarinfo.fromtarfile(self) + except EOFHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + except InvalidHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + elif self.offset == 0: + raise ReadError(str(e)) + except EmptyHeaderError: + if self.offset == 0: + raise ReadError("empty file") + except TruncatedHeaderError as e: + if self.offset == 0: + raise ReadError(str(e)) + except SubsequentHeaderError as e: + raise ReadError(str(e)) + break + + if tarinfo is not None: + self.members.append(tarinfo) + else: + self._loaded = True + + return tarinfo + + #-------------------------------------------------------------------------- + # Little helper methods: + + def _getmember(self, name, tarinfo=None, normalize=False): + """Find an archive member by name from bottom to top. + If tarinfo is given, it is used as the starting point. + """ + # Ensure that all members have been loaded. + members = self.getmembers() + + # Limit the member search list up to tarinfo. + if tarinfo is not None: + members = members[:members.index(tarinfo)] + + if normalize: + name = os.path.normpath(name) + + for member in reversed(members): + if normalize: + member_name = os.path.normpath(member.name) + else: + member_name = member.name + + if name == member_name: + return member + + def _load(self): + """Read through the entire archive file and look for readable + members. + """ + while True: + tarinfo = self.next() + if tarinfo is None: + break + self._loaded = True + + def _check(self, mode=None): + """Check if TarFile is still open, and if the operation's mode + corresponds to TarFile's mode. + """ + if self.closed: + raise IOError("%s is closed" % self.__class__.__name__) + if mode is not None and self.mode not in mode: + raise IOError("bad operation for mode %r" % self.mode) + + def _find_link_target(self, tarinfo): + """Find the target member of a symlink or hardlink member in the + archive. + """ + if tarinfo.issym(): + # Always search the entire archive. + linkname = os.path.dirname(tarinfo.name) + "/" + tarinfo.linkname + limit = None + else: + # Search the archive before the link, because a hard link is + # just a reference to an already archived file. + linkname = tarinfo.linkname + limit = tarinfo + + member = self._getmember(linkname, tarinfo=limit, normalize=True) + if member is None: + raise KeyError("linkname %r not found" % linkname) + return member + + def __iter__(self): + """Provide an iterator object. + """ + if self._loaded: + return iter(self.members) + else: + return TarIter(self) + + def _dbg(self, level, msg): + """Write debugging output to sys.stderr. + """ + if level <= self.debug: + print(msg, file=sys.stderr) + + def __enter__(self): + self._check() + return self + + def __exit__(self, type, value, traceback): + if type is None: + self.close() + else: + # An exception occurred. We must not call close() because + # it would try to write end-of-archive blocks and padding. + if not self._extfileobj: + self.fileobj.close() + self.closed = True +# class TarFile + +class TarIter(object): + """Iterator Class. + + for tarinfo in TarFile(...): + suite... + """ + + def __init__(self, tarfile): + """Construct a TarIter object. + """ + self.tarfile = tarfile + self.index = 0 + def __iter__(self): + """Return iterator object. + """ + return self + + def __next__(self): + """Return the next item using TarFile's next() method. + When all members have been read, set TarFile as _loaded. + """ + # Fix for SF #1100429: Under rare circumstances it can + # happen that getmembers() is called during iteration, + # which will cause TarIter to stop prematurely. + if not self.tarfile._loaded: + tarinfo = self.tarfile.next() + if not tarinfo: + self.tarfile._loaded = True + raise StopIteration + else: + try: + tarinfo = self.tarfile.members[self.index] + except IndexError: + raise StopIteration + self.index += 1 + return tarinfo + + next = __next__ # for Python 2.x + +#-------------------- +# exported functions +#-------------------- +def is_tarfile(name): + """Return True if name points to a tar archive that we + are able to handle, else return False. + """ + try: + t = open(name) + t.close() + return True + except TarError: + return False + +bltn_open = open +open = TarFile.open diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 0000000..4843835 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1120 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from ._backport import shutil + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, + HTTPHandler, HTTPRedirectHandler, + build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + _userprog = None + def splituser(host): + """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + global _userprog + if _userprog is None: + import re + _userprog = re.compile('^(.*)@(.*)$') + + match = _userprog.match(host) + if match: return match.group(1, 2) + return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + import shutil + from urllib.parse import (urlparse, urlunparse, urljoin, splituser, quote, + unquote, urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, + HTTPBasicAuthHandler, HTTPPasswordMgr, + HTTPHandler, HTTPRedirectHandler, + build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + class CertificateError(ValueError): + pass + + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" + % (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" + % (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if not os.curdir in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if not normdir in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + +try: + import sysconfig +except ImportError: # pragma: no cover + from ._backport import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + import re + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format(filename, + encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format(filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__(key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union(*self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError('Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError('Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + try: + from imp import cache_from_source + except ImportError: # pragma: no cover + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover +## {{{ http://code.activestate.com/recipes/576693/ (r9) +# Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. +# Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args),)) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__,) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items,), inst_dict) + return self.__class__, (items,) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self)==len(other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext' : 'ext_convert', + 'cfg' : 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + #print d, rest + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int(idx) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + #rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance(value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance(value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and\ + isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/database.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 0000000..0b2cf32 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1339 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + + +__all__ = ['Distribution', 'BaseInstalledDistribution', + 'InstalledDistribution', 'EggInfoDistribution', + 'DistributionPath'] + + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [METADATA_FILENAME, + WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join(entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, metadata=metadata, + env=self) + elif self._include_egg and entry.endswith(('.egg-info', + '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + logger.debug('Getting requirements from metadata %r', md.todict()) + reqts = getattr(md, req_attr) + return set(md.get_requirements(reqts, extras=self.extras, + env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and + self.version == other.version and + self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % (METADATA_FILENAME, + path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + #base_location = os.path.dirname(self.path) + #base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + #if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix and + path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append((path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) and + self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + if line.startswith('['): + logger.warning('Unexpected line: quitting requirement scan: %r', + line) + break + r = parse_requirement(line) + if not r: + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode('utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + #otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) and + self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + #self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if not label is None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires | + dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = [] # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop()[0] + req.append(d) + for pred in graph.adjacency_list[d]: + if pred not in req: + todo.append(pred) + + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/index.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 0000000..9c2a4f2 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,509 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + response = self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, + keystore=None): + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error ' + 'code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 0000000..96c21ec --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1300 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2015 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, + parse_requirement, parse_name_and_version, ServerProxy, + normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception as e: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + #'packagetype': 'sdist', + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + # else: + # logger.debug('skipping pre-release ' + # 'version %s of %s', k, matcher.name) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.setDaemon(True) + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + #logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 426 / PEP 440. +default_locator = AggregatingLocator( + JSONLocator(), + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + #import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 0000000..92688d0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,393 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2013 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + +class Manifest(object): + """A list of files built by on exploring the filesystem and filtered by + applying various patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, anchor=True) + #if not found: + # logger.warning('no previously-included files ' + # 'found matching %r', pattern) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, anchor=False) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found anywhere in ' + # 'distribution', pattern) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, prefix=thedir) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found under directory %r', + # pattern, thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

    ...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + result = self.operations[op](lhs, rhs) + return result + +def default_context(): + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': platform.python_version(), + 'python_version': platform.python_version()[:3], + 'sys_platform': sys.platform, + } + return result + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 0000000..7015644 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1058 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and withdrawn 2.0). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', + 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', + 'Obsoletes-Dist', 'Requires-External', 'Maintainer', + 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', + 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', + 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', + 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +# Ditto for Obsoletes - see issue #140. +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', + 'Requires', 'Provides', 'Obsoletes') + +_566_MARKERS = ('Description-Content-Type',) + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + # avoid adding field names if already there + return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) + elif version == '2.0': + return _426_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + for marker in markers: + if marker in keys: + return True + return False + + keys = [] + for key, value in fields.items(): + if value in ([], 'UNKNOWN', None): + continue + keys.append(key) + + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.0', '2.1'] + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _426_FIELDS and '2.0' in possible_versions: + possible_versions.remove('2.0') + logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_0) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.0/2.1 fields') + + # we have the choice, 1.0, or 1.2, or 2.0 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.0 adds more features and is very new + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_0: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + + return '2.0' + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = { + name.lower().replace("-", "_"): name for name in _ALL_FIELDS +} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python',) +_VERSION_FIELDS = ('Version',) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension') +_LISTTUPLEFIELDS = ('Project-URL',) + +_ELEMENTSFIELD = ('Keywords',) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or + self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + def get_fullname(self, filesafe=False): + """Return the distribution name with version. + + If filesafe is true, return a filename-escaped form.""" + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning( + "'%s': '%s' is not valid (field '%s')", + project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, + scheme.is_valid_constraint_list), + (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, + self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.0 (JSON) + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy',), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy',)), + 'version': (VERSION_MATCHER, ('legacy',)), + 'summary': (SUMMARY_MATCHER, ('legacy',)), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + #import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), + scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, + key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, + env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', + missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', + 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), + ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + author = {} + maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, + sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, + sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = { 'requires': requirements } + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, + self.metadata_version, name, version) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 0000000..0a84484 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 0000000..e01502b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,423 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2015 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, source_dir, target_dir, add_launchers=True, + dry_run=False, fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' and + os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or ( + os.name == 'java' and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) and + (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join(sysconfig.get_path('scripts'), + 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp + and '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError( + 'The shebang (%r) is not decodable from utf-8' % shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError( + 'The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict(module=entry.prefix, + import_name=entry.suffix.split('.')[0], + func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith('.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % (name, self.variant_separator, + self.version_info[0], self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, + self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + name = '%s%s.exe' % (kind, bits) + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + distlib_package = __name__.rsplit('.', 1)[0] + resource = finder(distlib_package).find(name) + if not resource: + msg = ('Unable to find resource %s in package %s' % (name, + distlib_package)) + raise ValueError(msg) + return resource.bytes + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..8932a18e4596952373a38c60b81b7116d4ef9ee8 GIT binary patch literal 96768 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

    CyjS=e(HL`~QEl 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 QLtr!nMnhmU1n3e102NPmGynhq literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..325b8057c08cf7113d4fd889991fa5638d443793 GIT binary patch literal 105984 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 I7+fI$01Km?G5`Po literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/util.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 0000000..d940d6e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,1965 @@ +# +# Copyright (C) 2012-2021 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, + cache_from_source, urlopen, urljoin, httplib, xmlrpclib, + splittype, HTTPHandler, BaseConfigurator, valid_ident, + Container, configparser, URLError, ZipFile, fsdecode, + unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join(['%s %s' % con for con in versions])) + return Container(name=distname, extras=extras, constraints=versions, + marker=mark_expr, url=uri, requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): +# The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as +# changes to the stub launcher mean that sys.executable always points +# to the stub on OS X +# if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' +# in os.environ): +# result = os.environ['__PYVENV_LAUNCHER__'] +# else: +# result = sys.executable +# return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + #entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + def __init__(self, func): + self.func = func + #for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + #obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, path, optimize=False, force=False, prefix=None, hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, 'PycInvalidationMode'): + compile_kwargs['invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and + self.prefix == other.prefix and + self.suffix == other.suffix and + self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile(r'''(?P(\w|[-.+])+) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + +PROJECT_NAME_AND_VERSION = re.compile('([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result +# +# Extended metadata functionality +# + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + #data = reader.read().decode('utf-8') + #result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', + event, args, kwargs, result) + return result + +# +# Simple sequencing +# +class Sequencer(object): + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs or + step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + #http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node],lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node],index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', + '.tgz', '.tbz', '.whl') + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G','T','P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + #elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + #import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + #import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + +# +# HTTPSConnection which verifies certificates/matches domains +# + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + if not hasattr(ssl, 'SSLContext'): + # For 2.x + if self.ca_certs: + cert_reqs = ssl.CERT_REQUIRED + else: + cert_reqs = ssl.CERT_NONE + self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, + cert_reqs=cert_reqs, + ssl_version=ssl.PROTOCOL_SSLv23, + ca_certs=self.ca_certs) + else: # pragma: no cover + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if self.cert_file: + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError('Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + def http_open(self, req): + raise URLError('Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + +# +# XML-RPC with timeouts +# + +_ver_info = sys.version_info[:2] + +if _ver_info == (2, 6): + class HTTP(httplib.HTTP): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + + if ssl: + class HTTPS(httplib.HTTPS): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + +class Transport(xmlrpclib.Transport): + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if _ver_info == (2, 6): + result = HTTP(h, timeout=self.timeout) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + result = self._connection[1] + return result + +if ssl: + class SafeTransport(xmlrpclib.SafeTransport): + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if _ver_info == (2, 6): + result = HTTPS(host, None, **kwargs) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, + **kwargs) + result = self._connection[1] + return result + + +class ServerProxy(xmlrpclib.ServerProxy): + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + +class CSVWriter(CSVBase): + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + +# +# Configurator functionality +# + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + +# def _get_pypirc_command(): + # """ + # Get the distutils command for interacting with PyPI configurations. + # :return: the command. + # """ + # from distutils.core import Distribution + # from distutils.config import PyPIRCCommand + # d = Distribution() + # return PyPIRCCommand(d) + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [server.strip() for server in + index_servers.split('\n') + if server.strip() != ''] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', self.DEFAULT_REPOSITORY), + ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and + repository in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository and + result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647:'32bit', 9223372036854775807:'64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile (r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support, distutils.sysconfig + osname, release, machine = _osx_support.get_platform_osx( + distutils.sysconfig.get_config_vars(), + osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86' : 'win32', + 'x64' : 'win-amd64', + 'arm' : 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/version.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 0000000..b9c04c6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,739 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|b|c|rc)(\d+))?' + r'(\.(post)(\d+))?(\.(dev)(\d+))?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$') + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + #print('%s -> %s' % (s, m.groups())) + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + #import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + #import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + #TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..e6439e9e45897365d5ac6a85a46864c158a225fd GIT binary patch literal 90112 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 M4S~@R7}6mC0I4CIg8%>k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..46139dbf9400b7bc0b64e6756ce17b4eb5fd7436 GIT binary patch literal 99840 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 PF{l(9#iJoGI70vc!hogj literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 0000000..4a1ec05 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1056 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2020 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import imp +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, + cached_property, get_cache_base, read_exports, tempdir, + get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + if sys.version_info[1] >= 10: + VER_SUFFIX = '%s_%s' % sys.version_info[:2] # PEP 641 (draft) + else: + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if sysconfig.get_config_var('WITH_PYMALLOC'): + parts.append('m') + if sysconfig.get_config_var('Py_UNICODE_SIZE') == 4: + parts.append('u') + return ''.join(parts) + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile(r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile(r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + + +class Mounter(object): + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = imp.load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, + pyver, abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + wheel_metadata = self.get_wheel_metadata(zf) + wv = wheel_metadata['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, base): + records = list(records) # make a copy, as mutated + p = to_posix(os.path.relpath(record_path, base)) + records.append((p, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + self.write_record(records, p, libdir) + ap = to_posix(os.path.join(info_dir, 'RECORD')) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile(outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True } + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp(file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + v = NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], + '.'.join(str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug('Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, + updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, - 1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix, _, _ in imp.get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], + arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distro.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distro.py new file mode 100644 index 0000000..d86113b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distro.py @@ -0,0 +1,1230 @@ +# Copyright 2015,2016,2017 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 will remove it altogether. +Its predecessor function :py:func:`platform.dist` was already +deprecated since Python 2.6 and will also be removed in Python 3.8. +Still, there are many cases in which access to OS distribution information +is needed. See `Python issue 1322 `_ for +more information. +""" + +import os +import re +import sys +import json +import shlex +import logging +import argparse +import subprocess + + +_UNIXCONFDIR = os.environ.get('UNIXCONFDIR', '/etc') +_OS_RELEASE_BASENAME = 'os-release' + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + 'ol': 'oracle', # Oracle Linux +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + 'enterpriseenterpriseas': 'oracle', # Oracle Enterprise Linux 4 + 'enterpriseenterpriseserver': 'oracle', # Oracle Linux 5 + 'redhatenterpriseworkstation': 'rhel', # RHEL 6, 7 Workstation + 'redhatenterpriseserver': 'rhel', # RHEL 6, 7 Server + 'redhatenterprisecomputenode': 'rhel', # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + 'redhat': 'rhel', # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r'(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)') + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile( + r'(\w+)[-_](release|version)$') + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + 'debian_version', + 'lsb-release', + 'oem-release', + _OS_RELEASE_BASENAME, + 'system-release', + 'plesk-release', +) + + +def linux_distribution(full_distribution_name=True): + """ + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + return _distro.linux_distribution(full_distribution_name) + + +def id(): + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amazon" Amazon Linux + "arch" Arch Linux + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty=False): + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty=False, best=False): + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best=False): + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best=False): + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best=False): + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best=False): + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like(): + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename(): + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty=False, best=False): + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute): + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute): + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute): + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute): + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +class cached_property(object): + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + def __init__(self, f): + self._fname = f.__name__ + self._f = f + + def __get__(self, obj, owner): + assert obj is not None, 'call {} on an instance'.format(self._fname) + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution(object): + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__(self, + include_lsb=True, + os_release_file='', + distro_release_file='', + include_uname=True): + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + Raises: + + * :py:exc:`IOError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`subprocess.CalledProcessError`: The lsb_release command had + some issue (other than not being available in the program execution + path). + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.os_release_file = os_release_file or \ + os.path.join(_UNIXCONFDIR, _OS_RELEASE_BASENAME) + self.distro_release_file = distro_release_file or '' # updated later + self.include_lsb = include_lsb + self.include_uname = include_uname + + def __repr__(self): + """Return repr of all info + """ + return \ + "LinuxDistribution(" \ + "os_release_file={self.os_release_file!r}, " \ + "distro_release_file={self.distro_release_file!r}, " \ + "include_lsb={self.include_lsb!r}, " \ + "include_uname={self.include_uname!r}, " \ + "_os_release_info={self._os_release_info!r}, " \ + "_lsb_release_info={self._lsb_release_info!r}, " \ + "_distro_release_info={self._distro_release_info!r}, " \ + "_uname_info={self._uname_info!r})".format( + self=self) + + def linux_distribution(self, full_distribution_name=True): + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self.codename() + ) + + def id(self): + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + def normalize(distro_id, table): + distro_id = distro_id.lower().replace(' ', '_') + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr('distributor_id') + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return '' + + def name(self, pretty=False): + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = self.os_release_attr('name') \ + or self.lsb_release_attr('distributor_id') \ + or self.distro_release_attr('name') \ + or self.uname_attr('name') + if pretty: + name = self.os_release_attr('pretty_name') \ + or self.lsb_release_attr('description') + if not name: + name = self.distro_release_attr('name') \ + or self.uname_attr('name') + version = self.version(pretty=True) + if version: + name = name + ' ' + version + return name or '' + + def version(self, pretty=False, best=False): + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr('version_id'), + self.lsb_release_attr('release'), + self.distro_release_attr('version_id'), + self._parse_distro_release_content( + self.os_release_attr('pretty_name')).get('version_id', ''), + self._parse_distro_release_content( + self.lsb_release_attr('description')).get('version_id', ''), + self.uname_attr('release') + ] + version = '' + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == '': + version = v + else: + for v in versions: + if v != '': + version = v + break + if pretty and version and self.codename(): + version = '{0} ({1})'.format(version, self.codename()) + return version + + def version_parts(self, best=False): + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r'(\d+)\.?(\d+)?\.?(\d+)?') + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or '', build_number or '' + return '', '', '' + + def major_version(self, best=False): + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best=False): + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best=False): + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self): + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr('id_like') or '' + + def codename(self): + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info['codename'] + except KeyError: + return self.lsb_release_attr('codename') \ + or self.distro_release_attr('codename') \ + or '' + + def info(self, pretty=False, best=False): + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return dict( + id=self.id(), + version=self.version(pretty, best), + version_parts=dict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best) + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def os_release_attr(self, attribute): + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, '') + + def lsb_release_attr(self, attribute): + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, '') + + def distro_release_attr(self, attribute): + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, '') + + def uname_attr(self, attribute): + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_release_attr`. + """ + return self._uname_info.get(attribute, '') + + @cached_property + def _os_release_info(self): + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file) as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines): + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + # The shlex module defines its `wordchars` variable using literals, + # making it dependent on the encoding of the Python source file. + # In Python 2.6 and 2.7, the shlex source file is encoded in + # 'iso-8859-1', and the `wordchars` variable is defined as a byte + # string. This causes a UnicodeDecodeError to be raised when the + # parsed content is a unicode object. The following fix resolves that + # (... but it should be fixed in shlex...): + if sys.version_info[0] == 2 and isinstance(lexer.wordchars, bytes): + lexer.wordchars = lexer.wordchars.decode('iso-8859-1') + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + if '=' in token: + k, v = token.split('=', 1) + props[k.lower()] = v + else: + # Ignore any tokens that are not variable assignments + pass + + if 'version_codename' in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props['codename'] = props['version_codename'] + elif 'ubuntu_codename' in props: + # Same as above but a non-standard field name used on older Ubuntus + props['codename'] = props['ubuntu_codename'] + elif 'version' in props: + # If there is no version_codename, parse it from the version + codename = re.search(r'(\(\D+\))|,(\s+)?\D+', props['version']) + if codename: + codename = codename.group() + codename = codename.strip('()') + codename = codename.strip(',') + codename = codename.strip() + # codename appears within paranthese. + props['codename'] = codename + + return props + + @cached_property + def _lsb_release_info(self): + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + with open(os.devnull, 'w') as devnull: + try: + cmd = ('lsb_release', '-a') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: # Command not found + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines): + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip('\n').split(':', 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(' ', '_').lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self): + with open(os.devnull, 'w') as devnull: + try: + cmd = ('uname', '-rs') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @staticmethod + def _parse_uname_content(lines): + props = {} + match = re.search(r'^([^\s]+)\s+([\d\.]+)', lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == 'Linux': + return {} + props['id'] = name.lower() + props['name'] = name + props['release'] = version + return props + + @staticmethod + def _to_str(text): + encoding = sys.getfilesystemencoding() + encoding = 'utf-8' if encoding == 'ascii' else encoding + + if sys.version_info[0] >= 3: + if isinstance(text, bytes): + return text.decode(encoding) + else: + if isinstance(text, unicode): # noqa + return text.encode(encoding) + + return text + + @cached_property + def _distro_release_info(self): + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file( + self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if 'name' in distro_info \ + and 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + elif match: + distro_info['id'] = match.group(1) + return distro_info + else: + try: + basenames = os.listdir(_UNIXCONFDIR) + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = ['SuSE-release', + 'arch-release', + 'base-release', + 'centos-release', + 'fedora-release', + 'gentoo-release', + 'mageia-release', + 'mandrake-release', + 'mandriva-release', + 'mandrivalinux-release', + 'manjaro-release', + 'oracle-release', + 'redhat-release', + 'sl-release', + 'slackware-version'] + for basename in basenames: + if basename in _DISTRO_RELEASE_IGNORE_BASENAMES: + continue + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match: + filepath = os.path.join(_UNIXCONFDIR, basename) + distro_info = self._parse_distro_release_file(filepath) + if 'name' in distro_info: + # The name is always present if the pattern matches + self.distro_release_file = filepath + distro_info['id'] = match.group(1) + if 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + return distro_info + return {} + + def _parse_distro_release_file(self, filepath): + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath) as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except (OSError, IOError): + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/nir0s/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line): + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match( + line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info['name'] = matches.group(3)[::-1] + if matches.group(2): + distro_info['version_id'] = matches.group(2)[::-1] + if matches.group(1): + distro_info['codename'] = matches.group(1)[::-1] + elif line: + distro_info['name'] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main(): + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + '--json', + '-j', + help="Output in machine readable format", + action="store_true") + args = parser.parse_args() + + if args.json: + logger.info(json.dumps(info(), indent=4, sort_keys=True)) + else: + logger.info('Name: %s', name(pretty=True)) + distribution_version = version(pretty=True) + logger.info('Version: %s', distribution_version) + distribution_codename = codename() + logger.info('Codename: %s', distribution_codename) + + +if __name__ == '__main__': + main() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py new file mode 100644 index 0000000..e6df4ab --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py @@ -0,0 +1,35 @@ +""" +HTML parsing library based on the `WHATWG HTML specification +`_. The parser is designed to be compatible with +existing HTML found in the wild and implements well-defined error recovery that +is largely compatible with modern desktop web browsers. + +Example usage:: + + from pip._vendor import html5lib + with open("my_document.html", "rb") as f: + tree = html5lib.parse(f) + +For convenience, this module re-exports the following names: + +* :func:`~.html5parser.parse` +* :func:`~.html5parser.parseFragment` +* :class:`~.html5parser.HTMLParser` +* :func:`~.treebuilders.getTreeBuilder` +* :func:`~.treewalkers.getTreeWalker` +* :func:`~.serializer.serialize` +""" + +from __future__ import absolute_import, division, unicode_literals + +from .html5parser import HTMLParser, parse, parseFragment +from .treebuilders import getTreeBuilder +from .treewalkers import getTreeWalker +from .serializer import serialize + +__all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", + "getTreeWalker", "serialize"] + +# this has to be at the top level, see how setup.py parses this +#: Distribution version number. +__version__ = "1.1" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a830907ea24ceda28bb17799e385e28eb68f17a GIT binary patch literal 1294 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

    44|Xkiuxr_a zT`P1S>{|I?*O~{r)<4*_>%p#lx({~kf3Umt!S414yZdw>?CyWCdzS8lJ<}iT0a5cG z>{+GzV9%BZd$v8;v*W>@UAhnU?0vAeH(tX%8|6y~R?!)H(ht1n{A2#oQ*wXm0rR8Bu$HSJchb_GiTPEv1 zY}x&=W$(k5{SR9kbsx5NKWy!N*xLWFb)xRW*2xcBr|CXyo$;`BmhQvWc@J9`J#1a_ zuyxtP))fz1SLr@%UGuPYz3#)-jSpM5JZ#;j`><{9!?yXl58IYMY+I@Oux-`Dwl%sB z+txm8+o1cfZQH}Poe$e~KWuN-eb~P0Vfz~0hwbYhwr|vZ*uLXo`!3yw+xI`*HAna1 zuK5pl@6vs^d;h~d({vy1nf`FkJl%(T=0Duqru%Sj`@_9`x)1mEKioUx;oeyf_s)5^ zcizLj`*a`f-T!dk)`$D{KHRro_u>A=hx=O}?(fxoxWE75{wcZ-_fLJee~#|M{qrC0 zU#t6Y|Hg;=w?5pzSNBnK|D)!)x{sO{JZfH~`>18CeBH-Q z3m!M`e%!oY_i;YfKn_CX5NMY=>3qtJ44k?w=#>mlVN zp#l=AAlwKk2yvEzdmgOX2QUAKDE0O{ShEkgfFrM1!%}EL3n(nb5~2t~FLhFlNq{H@Rw2p&P_D zF{Us?F{LsuU`b(I$QZ?%A`NPtw=hPrrO2ePr*O0|MzN=Grf{_|L~(#txV11uai;L5 z@U<{Rai#F52(&Onai<8T2(>Uo@uUc+h_o<7@urBTh_x_8@ui5TNVG6S@ux_pNVPCT z38b(EGib`*;`Pi+%P&qXam&mpNiC}44ULXT0gpDB>X_ELg(QPIaWEHy*r3KUxEZbo z>LoJPFvK&|Fx4=`GuANIFvK&}u+%WbGuN=zFvPReu+=ccvt}~XFvPQ^Fa$HKWc1Ty zza^AXlwS~$o0C`U0~+e^OUzBZ#Sa&AEGa4SE50RJP?TDhnpfhIUz(JY>XKNT;hdkF zo0?Zrd`lcAl~|nNSOOJx%}co@32jolh=xnDAi+sB&DWj<|&kCmSiY^6;;V*l#~=$>Fbx5m+O@q z>*W`v>l+yu80dp#^{X_o8KIDwr%;lS3Nk?LPy`C>Tbw2N5xF^_1fj`XA= zj5Um93`H6xj0>1jm`a#I38ID(RAQtsFJ!7^EM%);T)>*bvXHUJ4XlP0rY42WoB`CK z4Q9|}_p4&k)vZ#8W*>M`NY2kINzBYsNKDB}Ois-!QAkNF&PXk;V%AmA1@~U7WYM*x z=B0q*J`t?+7o&nETM;DTyVC=&=e7JE%nu zKw$^UX$*{Pj2w(SjC_n-j694SI6@Mt3ne5$aS0mU0mWUh87w4?Nx(o zsAVbvmAp(Pte`M06scicz?Q-Y303G&(Jw}xDyfjviV|4ffdyEowt<0xb5STLS+Ey@ z3X5B;MUX+#PqA2q{Tw7#6UC2mL`qnrxt9 z$AwI_OoexOK;`f+Ms@HYT$LiYSVj+A&_G&FszM>C+}7m0C6t$+2UZ92 zC1g117JFJ|UP@w44q7
    HPp34#o@fHERT2Y76y2$UX+K;`)@7LZm=R!Ck3#YGes zC{_BGmK2nh6gh&@EjP5902zTEN!*Y~0z2pvD1IR24``$mGy=`XD8k6YD8yJLi7lSM zx=^AB6uY2k0!L8~IEp}HexR9|6s8mg(4c57GdRka7J|l_S)heKa}A>y15&hsWLfiA zYM5$SYnW@~C%7r=%`ae!`7G95`#4M;30%35>s(@p*h9QfgjG;&jMAtA%GSo8Van(SxBV@JIG?pB6%@aMNVy1_7T^(ki>EXX;X7E# z2#RLNYy~)0zyv62ZgHm-<>x|^ml(*Gpi+&2QG`(hBcmay#PAn9IzR*dDU6WWGcnLK zC{qnX7Gn*g4FkC3V)CnE4OKNTjnHH&k_Dv{P;?Y!fmmQSfeDbqiZU4(7^D#n0;QNL z3DiJGcoW4vpymNQ3L_-br!X}$HG}3Wn4!}>;6ZPuB3+Op3_#Tmq)Lqf zPxFBGji41&MWFIt0pv80O$>}xQmD>C34b=wtWJoVCZnIGAgF~4%0Th)x47ctbMsS5 zb5i5uZ}G&(7nUaGKxLSUQg5+?W;Zi)Qj4-dZUQx8i$IgIMIj(=1c-GIByk! z(r8gGNDLHgUO8WE^Y3=9mrK^YO0Yd9FWm>C%1@E4Z|7dHnp2Nwqi2RDZh2RjEV z2Wt^Xho&OPy=kQ-rA4Xn@kJnC7l9(Y2-K)5Dg;>zDur%wCg`94P;=g{vU|^WXFgyKwBLl-@5C<8vGB7YWFfcF_Z(w9#NMT4}%wfo7jAG1Xiek!T zj$&p6i81A{7`A%#7KBS#=tFiJ32C`u?-I7&EIBuWG<&Y2^SD;gyVW^?6;<%&m% zGcu$~q;RM3v@oO!xiB;{HZw*^rb?vnf<=U(B2uXmDSTiN5vYiCDo7Q7ia9q93WU3*=LT7c!=>XEPQ5@nUFVOyydjkSd$P zk|NZ~B*~Dfm?F~5D9(@~EY7fyF-j?q3nC9((YBn=RX}L3` z$fqc@Fr+A?YBw`S>9{kbD5fa2Fr+Af)$6)5q$sDTv@oQofcbhUswrwM3{mMucYsmXkcKQXB|Kc}=LH9j-9Ait>O7Dq~ES!Qu&e%>vC(!9*%{FK!AoXnEcqQsnH zO~zZCC8-r9@gX{0`DrrUVt1-6NiFvDzr_(; zQk0pO?&+_|c#EezH7PYOIX@*cFTMCBBLf42Cd(~mSAVx#{KW-{$*Im6iA9OYC8gQx8=@(R%WaQ@=>sjg-XO^Vu79=KTC#I(s>lb7e=*O3(=B4Bp>1UMW=9q#M z$7kjhl$I2i6s0ES>J?Pp;VMWME+U4Dv*gGy?+zIo>J~Vqjn>5&;n) zzk@viA*4WJAY;KQWN2r;Fvud1`JX}2Vh1K|N@p=JFhn!za&YtM%Gc{2n*V zFh((_Fr_fJFhsGWu%xiIFhsGYu%)oKFhsGXaHMdyFhsGZaHVj!Fhp^r@TBmzFhp^t z@TKs#Fhp^s2m~`|3f|&#DosmEElN!Z2B+w%V-S93Ub;eBevtwsofj*VWF(d-q~t5) z<(DXAB$lNrB!RVol;x)>lw_o47AfSH=W%f5a|?1(b5rw5Qd1NX zixm0->KTRPyqcktOSRp?Tq+cPixVSVITrz+y0~?f;pP2`;A~!Lw666$6IiygY znUkZCl&VmilV7e-oSB!Ls*qU%vdCW}PfN>46Ra~C6kf3K1F=CET&93BQVnAbLp-=- ziDyhy?A%PfhHw*r-7Y#?_qvN5tTR*6GG7Z%!jFm)(p1v3K!0}BHK z1K7DX3=9k@jJ1q43|R~*3^fc{j46zg44`Vug&|g;mZ^rZgsFz9nbDk~ma$L*&D~g^auUTWpC11*v%{h^U8V?jmDQ zqGw4-EJ=iT2A;Qz3_!Iy$VZT@&BMsUCuJV>UCCW+}Ds8kj+?>Q^QotUc*wuTEi~R04}T<@{~##YoIDXau6Owu7(8^c(p7w%nO)n z*lJiI`aoqSIEa~Q*g+*q3S%v6p-c@^(J`<(h6OC3C;+KQVP3#m!wkx?sJRW4v^3ce z0SrzoMdqLw0EOf&7Epbq$pJ|`;85o)O3h6K*J0pN=@wH_*)48JTJ+3INv*iW1L62X zN+c*RHN_>dB=HtEIERMh2c;&apvRmc0|P@6DCX3_1r?~6;$q}t6l3IJwma@b-OQ84&va)TKEphX?1%N7sr(q!hPYck&ANX<(rF3&8<&}1qS2W4f( z3Z!ranFa1{bc5mmltQbNJwkkaJVCt_NS4J`+*KJnC+2|~bH%A83W<3NF#8lh7AYhu zK>Lvj;LeVY0!Wo=ktXjguFT@hyyB9?yyVm(P|m-_;}H@P5R_V6ke^qaTEq@=A4d_C zdy73WB_%1bIQ14&TEQ*$jKt!^l9D1w2!R6Q7H3FhL8@y}QGU@aF_5D}A-z{5x8D*4 zi92QHB^Fg832U<4Vk^!sElN(k#g<*3Sd?CTi!-wrs{Ixx%s0ho0dW_JRv47CKg6MMixdMCIO}*Q0oPwNe(L1!AmAH@j-_f_*3|U88l^!{6Ib2>j6diWtl0dpoTRp(jaYCND~{@Lsuxt z2RE}p0T7a(otl?fm0F|+Yp-V(DseB6osPH-25_7 zyF9;0p(wQ=CowrQFCEQrLUAo1og{7%^$sot&r6?rk6z3}xz?_?$ zpHrHfrvNf9Co?Zqp`<7=IXg2i9qOh`1`P%Vl*$H_g+M_Lu56;f1wj^LF<%O(EzguE zSHhga)XbQ|oXu3E0;(-RE&4o;8ip)Z5G#cx9i)z}ggu3|nK6Ye4bu!Whh;$^LLZBLjnHUS>&VVoqjpDyRdLssIW*q{IVtDX7PTCZhpK zn>q^7u#_09si148;Fn*No0yYXm6`(T&7>ygDx?+V=PE!{g98v`7^vS>TAZqoRH*

    Cg^u(f+oYdlCP?`gE^_={DL5|Kz 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 z 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 QO$f(xurn|+{O95T0HpnAssI20 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6c5842b85a59f436585baaed80b890c6c0d1be8 GIT binary patch literal 10805 zcmYe~<>g{vU|^WXFgsnto`K;ph=Yt-7#J8F7#J9es~8y=QW#Pga~N_NqZo6UqL^}- zqnH^%VoW(KxvWvFU^a6OTNGOgLkdd{doD*5M=oa+CnG}&YYJNqS1xxHcP>v9PcCm1 zFIbE{hbxyaiZ7Qxia%E%N&qazkt3KZ6eW}^93>1kk26OkS2RkLks*a^fmkZNg^W>(c^s+AApKE_sfwx6WsDOTiw#m07N{&_C_0s@kSd+3Xv0u=Dn%$o zxP>7~HI*YpBvrMUiIE{iCPgeoyoE7J&7C1dB1N)=Aw@D(y_q>m!<`{TDn+`5Aw@b> zvza+cD}_0jK~wf6C{{F?Z}BH473b%amZZjK<`(1^mE7V;$t=q(&dkrdB~Y4|nVg@J z8lRI{l3J9QQ>@8&i?bxPq9negvLMw@lj#;;QEGZ-aY<@Xd}>iqe$g$7irk#!jKrd% z)U=}1f}F(URER|JOGX9;22JK$JZ1TrDXuxGxv6<2#kT~L^7C_26Z0HPN{TX*N=s6U zZ}ArwBqpaiXCxLSCYPiZ6>Boz;wwr{Ni0c(>*7ewE6FU$Of9~}U6GsP3gu`r-Qq4O zN=+?K%*jqID!#=QUs{q0b~0OPadKio>Me#UHYIgi8@q&GjM2XsV@u;fA;8GQ%)-jX z&cVsW&BM#bFCZu+EFvl#fIo$GA!G3$kQj)?$WXWp z%w{VQsNra4Okql40NE(U08(GLEQNi6U=8C!Mvz<6n1UHfglZU?8G{*87=jrzIsDv; zL>U+uLW;z|A!%L3rlwq>T5Me;1WH-Lx41HkGxLf|67!N%ZwZA$60U0=DEYdAlcp$C zETkwguQ(^MBo!jenVMIcn_84ul6s3RKPf9Ux#SjWaY4_z&0g0JKx0rJ?^KMBLBa4OPJLjjQ7UXBWSIs7DC;a>1SOtYmJ+5khD?SU<|T}MjJ2#atP7YyS)!S-hG`*FFoPyz;tVDR zhG3XqiWN#SQWY}u3Q9{9O7gQ)^Aw6pic%AE6-tXU^U}eR#RaL!nQ57+DGDHGK*|>` zE(HYz1*^oObckLnuu2pIO7a!pA%>(JWCm0XPDN4$PBWQ#=@6AL9;Q0D z4Mp+!1trB+3W<4@3i$;knfZCeAk_tl#bCN5BNgmou&WCyt&(#Ri;JxiKw%AvTRnt1 zdLALZKJefvN>C`tNGwrEPc11{NG?iEEJ;m)IZuMpl%QAjLSNCbss zW?ni(xobsYZb43}6@+JJXQz->l%J~rcL11CkXTflTBHD}h!ns)u&XhZBisv94Htpy z0LMl=G&*e|#%ZYAfNZj}Ny<;Dw6iI&^T<@R(J!#G(T50tQ@fqICfpFXu^Pz6=_usq zW|n}0JTpHpF(K zFh((_Fh#MXFh{YbFh{YaFh{YcutagBFh_BwutagCutagEFh}vEutf2uFh}vFutf2v zutW)@uto`{u%)oKFhmKZaHMdyFhmKbaHVj!Fhq%@h@|kQ@U<{TiKd9A@TUm0Fh+@` zh=ChEj8Wn#Ji!c_;zgDqAF$=5rY9y>{$f-Lant0xC0JORUy>T1SW;3HUzV6t3Mxe* zLZGI}E#cDQ)cB;-;*xkIK_Sfeyd|BRnU|THS(O?OZKi;Ygtk*eK&F%wC1&Pi=B39M z=jUXmlosETEe5q-;*(O-@{3aAF{FhcEs^+~lK9L#uxZ7&c%fpDM$RpPqSWI2oU&9% zbpdMRh$rS0WF#h~mSiR;=72Rpogkc<2db~)b5lza<3V04PA$15P+U@!SrA{Iky(-o zcFZk~;>5hnlFX`9l(q+`@C3C#z;Rv%E zh8fiIs9|nqTFBJQ%*asamd;Sa5YGkH!JWby%%I7Z=)}dq;0baexNcEEP3e$a0WP&5 zWi5t}trWsDQcE&Yixl#U6!P*xrMLnlV8BH(C~y>@fun~o4P>HAYFc7xP6@btOh^bR zDossDKvDuO+#yK>DJdbWE6G;?%PN3m!BL_BNo|l4GbKMyy#!p0fb0U{qSV6D%%W7V zE>PW4kXobwNx2G1Mfv5Rk}oMWBe5(qzeqtNAwdZur<9POsiRPyk(!6iuoQ))O0Yjc zEuWOcq7<-BP>luAmtUlim{XouSqv73FhMd%{scJlnM@HaGPBr4P+~i2@2&InaLRn<(WA-pt?{YCBHN&2NGDR z#R{c)IjP0Ph@eIZ3vjS2BBO|i%0~BGzU?okdR=LkN~n0o+>b%T8v}^$WqkM2UjDQDG_3RJfxUF zIG`k70V0D4e^8Squ|y#+H8lm)1V}>lAw+eG0;uJgnWvDKUzD4eqmT;ilEH)_)*yt7 zOOrDc5{ps%Qe0A*lS+%=Qz4#1aR;cOomd14b5K*R zIKQ+gIThSg(^Ck^NL7gN^-(A&N=->k%gjqnL71bKQ(~>4mR@3wVwhTDZh^Ie8YpL5 zE2t$Fa(-?>QEG8fQ zesIlzVp3{Fa%w>dEcz1?3W`9bp(ef(6GuYDQ)^l&1ZU(Im89ksD?qDMM2-d*!=Um6 z#aUUU#URtd&ZvP1PzQfhL3 zZfda=ArsKFq2^fZk&LZ@V5Q)hmz-0Y0*W1l-2yznz)3rFF3A1%;rQn~NS)u?= zRr=7R0x4U;#a%wQ3z?XMw|K`MG&q{8RtiC>`9&$IMQB+*3Do;mK-Q!HR)*JROm7x} z2G**K;^Q;(GE3s)H8d5{^Gg&G^At++QY#7|1$TC8WqE#4ib7&hdMRiCQbAp{SiQ)V zfq}uzPm|{sXIfEyRcaon70nLufAKBmoYcHqoFSD3(BUGMywr-4TP&dQ&>}Zb--Eq4 zwFFc)6{&)G=@8y6Ht=|8@hvt`QJ-9*$#RROI5j8j7F%|CVo`eWEq;Wv;=uweU_(Gd zH%MJG4w!e^LBkxNfi4DrAx0iX5k?M1HbyQ+8Adk7Dsj{nvmQ)OGHA#V)@=i^K}~+} zP$OuBri7t}v4pXishH1;p$RnP##E$K!?*x6$jFq!2pTD=fepPe`4yQlFfgoSDUx7d zU?^e*5w;-TvVq4XQdcq+#elgWzviVw+z8r186W7+}UBQVJb4HVaQ@CGDu-cVa{RBWvOLhWT;`OVXR?lW~v2+J!_E{SdI-L z*USi(VJ}Jn%Wz=Ga2C~pWw7%sBpGViYS=&%850bQ$`~dv79FZ#OA*dyn!s3GR>M4jv1kpL zoK?e`A|lDKfHy@HZs#nponjz6YZw-Q{2(I9u#gdCUY-a@q(l&+tCijvY93@70)S=s^Mz}#R<~{rlLhDlC}JK z4mAu}k}2{a`J#O#(hFp2KrzHn%2>;vrvjE!0L$GfkwuZ?D3ME11a4ot4?4pIt4N>MFV0USRa3iCWHq{ zDJg;wHaLZ7Wiw4+Dbj$a5J-w(DPjZVd~ix&DH20U3847VMx-FH89HDyvLNZNR-i^; z0dI;fH081sg@ASIfzuI4w?0H2EDeH9FaVoy4&jOvLve;$!5YC5wKB#DEJbs`W*9;2 zWn`#f$WoucQnaH+utWnazoSI0Mo^NWRv?cf#TcZjRsa+RH3D#-GA!VO*b8z;;T-T} zjESFH5vVlRWW2=&X_ee!0Zj?sVt2_;1~IC5Y!qGmokJo6ToqJ{Z?S+nbGJAON|SOj zlRZiG?B>5H|XtUZ%5)V~C?B(=Co*&^%E{V)`u(S5N~yBr&~; z*+#WEq)Hn}PjW_PP717T4rZ%s&>e_+ymSmPx7Kwu#EdidCtyEAg29L-Ur6%X6=VexA_8@CXX+chEkqbyP1f)zDGUyDS@D46WO}@oeoSImaoN-GO zP0|NEtbL0s3^a%hw*MA8bgr!kG;RxSx`LabMVufTJVAsPh~Nbgz951RG@&R2X`pd| zCJ7+(0N@C?#gUm851v~Ghw&{|@DxW;I>@2yDUh5Du_F^C#29~z6BO9-;M~jwW`c*_ zZZT%xVl2DGg-EJJ1t1N~*{PLi?Jn?~!aGoN>kg-)#7GV@&j6#fDAU82rNuV_$;VB8F`3Ra$0W}{%C0?-+ z1E~2}B$dLrfT4u3hG78{sFApk3Dh(RW=LT|h%RJ=ihn z?iDigO7hXB=RiG4aK{#*3^B0>Niv`TB)A_CqbOiq;Knq3x)Rb4P=E=7G{R>$!4?%E zPaVR|gv_rZOh%nD1Zl*W2ZT-jfu{;}K(myHNi%pa8$%b;Y$wbB)VM;?3eFUGrxC$( zh>+Pml=(xLlcC{fi|RfNb?~${bgmJm79JW!3btr-AsU#yc;q=pOcV4VvxFKD`%xw^ zH6inqAU(L}Dlz?qh@8)$>5-VYDVg$Ed82vO^Aa##2$bF!G;w?V-j5oNP)r53u z!Nph+*x6tL?Di%G28Ic6w=;oCjw)Hy^n*xX5Yrg_G(o6nI;b#~xWy3q;f$N^57}}RQVKvOL|ZZSp=$0 z!POwR$}0*6c`yM)fa@%9?FE|EEdoVA5y&SNJ4Yl3I|n;gJp&h)BzQg+)Ds4!4mbu4&48zjL91y{r;LLcG?|NLK-vtTWjdht z6+8<-3ItGW%>;R27KoS)s#w_L<5TjJi;F-B z7Q9LawDbnN-l(J)Qu~5yeQuB&!L0&t6%49%wfmhmqb83+cND>s^w>VwFQvjLydEfxU7PhxIY#_N_N)}+`VFFixj7x2LR literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_ihatexml.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_ihatexml.py new file mode 100644 index 0000000..fed2982 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_ihatexml.py @@ -0,0 +1,289 @@ +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings + +from .constants import DataLossWarning + +baseChar = """ +[#x0041-#x005A] | [#x0061-#x007A] | [#x00C0-#x00D6] | [#x00D8-#x00F6] | +[#x00F8-#x00FF] | [#x0100-#x0131] | [#x0134-#x013E] | [#x0141-#x0148] | +[#x014A-#x017E] | [#x0180-#x01C3] | [#x01CD-#x01F0] | [#x01F4-#x01F5] | +[#x01FA-#x0217] | [#x0250-#x02A8] | [#x02BB-#x02C1] | #x0386 | +[#x0388-#x038A] | #x038C | [#x038E-#x03A1] | [#x03A3-#x03CE] | +[#x03D0-#x03D6] | #x03DA | #x03DC | #x03DE | #x03E0 | [#x03E2-#x03F3] | +[#x0401-#x040C] | [#x040E-#x044F] | [#x0451-#x045C] | [#x045E-#x0481] | +[#x0490-#x04C4] | [#x04C7-#x04C8] | [#x04CB-#x04CC] | [#x04D0-#x04EB] | +[#x04EE-#x04F5] | [#x04F8-#x04F9] | [#x0531-#x0556] | #x0559 | +[#x0561-#x0586] | [#x05D0-#x05EA] | [#x05F0-#x05F2] | [#x0621-#x063A] | +[#x0641-#x064A] | [#x0671-#x06B7] | [#x06BA-#x06BE] | [#x06C0-#x06CE] | +[#x06D0-#x06D3] | #x06D5 | [#x06E5-#x06E6] | [#x0905-#x0939] | #x093D | +[#x0958-#x0961] | [#x0985-#x098C] | [#x098F-#x0990] | [#x0993-#x09A8] | +[#x09AA-#x09B0] | #x09B2 | [#x09B6-#x09B9] | [#x09DC-#x09DD] | +[#x09DF-#x09E1] | [#x09F0-#x09F1] | [#x0A05-#x0A0A] | [#x0A0F-#x0A10] | +[#x0A13-#x0A28] | [#x0A2A-#x0A30] | [#x0A32-#x0A33] | [#x0A35-#x0A36] | +[#x0A38-#x0A39] | [#x0A59-#x0A5C] | #x0A5E | [#x0A72-#x0A74] | +[#x0A85-#x0A8B] | #x0A8D | [#x0A8F-#x0A91] | [#x0A93-#x0AA8] | +[#x0AAA-#x0AB0] | [#x0AB2-#x0AB3] | [#x0AB5-#x0AB9] | #x0ABD | #x0AE0 | +[#x0B05-#x0B0C] | [#x0B0F-#x0B10] | [#x0B13-#x0B28] | [#x0B2A-#x0B30] | +[#x0B32-#x0B33] | [#x0B36-#x0B39] | #x0B3D | [#x0B5C-#x0B5D] | +[#x0B5F-#x0B61] | [#x0B85-#x0B8A] | [#x0B8E-#x0B90] | [#x0B92-#x0B95] | +[#x0B99-#x0B9A] | #x0B9C | [#x0B9E-#x0B9F] | [#x0BA3-#x0BA4] | +[#x0BA8-#x0BAA] | [#x0BAE-#x0BB5] | [#x0BB7-#x0BB9] | [#x0C05-#x0C0C] | +[#x0C0E-#x0C10] | [#x0C12-#x0C28] | [#x0C2A-#x0C33] | [#x0C35-#x0C39] | +[#x0C60-#x0C61] | [#x0C85-#x0C8C] | [#x0C8E-#x0C90] | [#x0C92-#x0CA8] | +[#x0CAA-#x0CB3] | [#x0CB5-#x0CB9] | #x0CDE | [#x0CE0-#x0CE1] | +[#x0D05-#x0D0C] | [#x0D0E-#x0D10] | [#x0D12-#x0D28] | [#x0D2A-#x0D39] | +[#x0D60-#x0D61] | [#x0E01-#x0E2E] | #x0E30 | [#x0E32-#x0E33] | +[#x0E40-#x0E45] | [#x0E81-#x0E82] | #x0E84 | [#x0E87-#x0E88] | #x0E8A | +#x0E8D | [#x0E94-#x0E97] | [#x0E99-#x0E9F] | [#x0EA1-#x0EA3] | #x0EA5 | +#x0EA7 | [#x0EAA-#x0EAB] | [#x0EAD-#x0EAE] | #x0EB0 | [#x0EB2-#x0EB3] | +#x0EBD | [#x0EC0-#x0EC4] | [#x0F40-#x0F47] | [#x0F49-#x0F69] | +[#x10A0-#x10C5] | [#x10D0-#x10F6] | #x1100 | [#x1102-#x1103] | +[#x1105-#x1107] | #x1109 | [#x110B-#x110C] | [#x110E-#x1112] | #x113C | +#x113E | #x1140 | #x114C | #x114E | #x1150 | [#x1154-#x1155] | #x1159 | +[#x115F-#x1161] | #x1163 | #x1165 | #x1167 | #x1169 | [#x116D-#x116E] | +[#x1172-#x1173] | #x1175 | #x119E | #x11A8 | #x11AB | [#x11AE-#x11AF] | +[#x11B7-#x11B8] | #x11BA | [#x11BC-#x11C2] | #x11EB | #x11F0 | #x11F9 | +[#x1E00-#x1E9B] | [#x1EA0-#x1EF9] | [#x1F00-#x1F15] | [#x1F18-#x1F1D] | +[#x1F20-#x1F45] | [#x1F48-#x1F4D] | [#x1F50-#x1F57] | #x1F59 | #x1F5B | +#x1F5D | [#x1F5F-#x1F7D] | [#x1F80-#x1FB4] | [#x1FB6-#x1FBC] | #x1FBE | +[#x1FC2-#x1FC4] | [#x1FC6-#x1FCC] | [#x1FD0-#x1FD3] | [#x1FD6-#x1FDB] | +[#x1FE0-#x1FEC] | [#x1FF2-#x1FF4] | [#x1FF6-#x1FFC] | #x2126 | +[#x212A-#x212B] | #x212E | [#x2180-#x2182] | [#x3041-#x3094] | +[#x30A1-#x30FA] | [#x3105-#x312C] | [#xAC00-#xD7A3]""" + +ideographic = """[#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029]""" + +combiningCharacter = """ +[#x0300-#x0345] | [#x0360-#x0361] | [#x0483-#x0486] | [#x0591-#x05A1] | +[#x05A3-#x05B9] | [#x05BB-#x05BD] | #x05BF | [#x05C1-#x05C2] | #x05C4 | +[#x064B-#x0652] | #x0670 | [#x06D6-#x06DC] | [#x06DD-#x06DF] | +[#x06E0-#x06E4] | [#x06E7-#x06E8] | [#x06EA-#x06ED] | [#x0901-#x0903] | +#x093C | [#x093E-#x094C] | #x094D | [#x0951-#x0954] | [#x0962-#x0963] | +[#x0981-#x0983] | #x09BC | #x09BE | #x09BF | [#x09C0-#x09C4] | +[#x09C7-#x09C8] | [#x09CB-#x09CD] | #x09D7 | [#x09E2-#x09E3] | #x0A02 | +#x0A3C | #x0A3E | #x0A3F | [#x0A40-#x0A42] | [#x0A47-#x0A48] | +[#x0A4B-#x0A4D] | [#x0A70-#x0A71] | [#x0A81-#x0A83] | #x0ABC | +[#x0ABE-#x0AC5] | [#x0AC7-#x0AC9] | [#x0ACB-#x0ACD] | [#x0B01-#x0B03] | +#x0B3C | [#x0B3E-#x0B43] | [#x0B47-#x0B48] | [#x0B4B-#x0B4D] | +[#x0B56-#x0B57] | [#x0B82-#x0B83] | [#x0BBE-#x0BC2] | [#x0BC6-#x0BC8] | +[#x0BCA-#x0BCD] | #x0BD7 | [#x0C01-#x0C03] | [#x0C3E-#x0C44] | +[#x0C46-#x0C48] | [#x0C4A-#x0C4D] | [#x0C55-#x0C56] | [#x0C82-#x0C83] | +[#x0CBE-#x0CC4] | [#x0CC6-#x0CC8] | [#x0CCA-#x0CCD] | [#x0CD5-#x0CD6] | +[#x0D02-#x0D03] | [#x0D3E-#x0D43] | [#x0D46-#x0D48] | [#x0D4A-#x0D4D] | +#x0D57 | #x0E31 | [#x0E34-#x0E3A] | [#x0E47-#x0E4E] | #x0EB1 | +[#x0EB4-#x0EB9] | [#x0EBB-#x0EBC] | [#x0EC8-#x0ECD] | [#x0F18-#x0F19] | +#x0F35 | #x0F37 | #x0F39 | #x0F3E | #x0F3F | [#x0F71-#x0F84] | +[#x0F86-#x0F8B] | [#x0F90-#x0F95] | #x0F97 | [#x0F99-#x0FAD] | +[#x0FB1-#x0FB7] | #x0FB9 | [#x20D0-#x20DC] | #x20E1 | [#x302A-#x302F] | +#x3099 | #x309A""" + +digit = """ +[#x0030-#x0039] | [#x0660-#x0669] | [#x06F0-#x06F9] | [#x0966-#x096F] | +[#x09E6-#x09EF] | [#x0A66-#x0A6F] | [#x0AE6-#x0AEF] | [#x0B66-#x0B6F] | +[#x0BE7-#x0BEF] | [#x0C66-#x0C6F] | [#x0CE6-#x0CEF] | [#x0D66-#x0D6F] | +[#x0E50-#x0E59] | [#x0ED0-#x0ED9] | [#x0F20-#x0F29]""" + +extender = """ +#x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | #x0E46 | #x0EC6 | #x3005 | +#[#x3031-#x3035] | [#x309D-#x309E] | [#x30FC-#x30FE]""" + +letter = " | ".join([baseChar, ideographic]) + +# Without the +name = " | ".join([letter, digit, ".", "-", "_", combiningCharacter, + extender]) +nameFirst = " | ".join([letter, "_"]) + +reChar = re.compile(r"#x([\d|A-F]{4,4})") +reCharRange = re.compile(r"\[#x([\d|A-F]{4,4})-#x([\d|A-F]{4,4})\]") + + +def charStringToList(chars): + charRanges = [item.strip() for item in chars.split(" | ")] + rv = [] + for item in charRanges: + foundMatch = False + for regexp in (reChar, reCharRange): + match = regexp.match(item) + if match is not None: + rv.append([hexToInt(item) for item in match.groups()]) + if len(rv[-1]) == 1: + rv[-1] = rv[-1] * 2 + foundMatch = True + break + if not foundMatch: + assert len(item) == 1 + + rv.append([ord(item)] * 2) + rv = normaliseCharList(rv) + return rv + + +def normaliseCharList(charList): + charList = sorted(charList) + for item in charList: + assert item[1] >= item[0] + rv = [] + i = 0 + while i < len(charList): + j = 1 + rv.append(charList[i]) + while i + j < len(charList) and charList[i + j][0] <= rv[-1][1] + 1: + rv[-1][1] = charList[i + j][1] + j += 1 + i += j + return rv + + +# We don't really support characters above the BMP :( +max_unicode = int("FFFF", 16) + + +def missingRanges(charList): + rv = [] + if charList[0] != 0: + rv.append([0, charList[0][0] - 1]) + for i, item in enumerate(charList[:-1]): + rv.append([item[1] + 1, charList[i + 1][0] - 1]) + if charList[-1][1] != max_unicode: + rv.append([charList[-1][1] + 1, max_unicode]) + return rv + + +def listToRegexpStr(charList): + rv = [] + for item in charList: + if item[0] == item[1]: + rv.append(escapeRegexp(chr(item[0]))) + else: + rv.append(escapeRegexp(chr(item[0])) + "-" + + escapeRegexp(chr(item[1]))) + return "[%s]" % "".join(rv) + + +def hexToInt(hex_str): + return int(hex_str, 16) + + +def escapeRegexp(string): + specialCharacters = (".", "^", "$", "*", "+", "?", "{", "}", + "[", "]", "|", "(", ")", "-") + for char in specialCharacters: + string = string.replace(char, "\\" + char) + + return string + +# output from the above +nonXmlNameBMPRegexp = re.compile('[\x00-,/:-@\\[-\\^`\\{-\xb6\xb8-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u02cf\u02d2-\u02ff\u0346-\u035f\u0362-\u0385\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482\u0487-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u0590\u05a2\u05ba\u05be\u05c0\u05c3\u05c5-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u063f\u0653-\u065f\u066a-\u066f\u06b8-\u06b9\u06bf\u06cf\u06d4\u06e9\u06ee-\u06ef\u06fa-\u0900\u0904\u093a-\u093b\u094e-\u0950\u0955-\u0957\u0964-\u0965\u0970-\u0980\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09bb\u09bd\u09c5-\u09c6\u09c9-\u09ca\u09ce-\u09d6\u09d8-\u09db\u09de\u09e4-\u09e5\u09f2-\u0a01\u0a03-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a3b\u0a3d\u0a43-\u0a46\u0a49-\u0a4a\u0a4e-\u0a58\u0a5d\u0a5f-\u0a65\u0a75-\u0a80\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abb\u0ac6\u0aca\u0ace-\u0adf\u0ae1-\u0ae5\u0af0-\u0b00\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3b\u0b44-\u0b46\u0b49-\u0b4a\u0b4e-\u0b55\u0b58-\u0b5b\u0b5e\u0b62-\u0b65\u0b70-\u0b81\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0bbd\u0bc3-\u0bc5\u0bc9\u0bce-\u0bd6\u0bd8-\u0be6\u0bf0-\u0c00\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c3d\u0c45\u0c49\u0c4e-\u0c54\u0c57-\u0c5f\u0c62-\u0c65\u0c70-\u0c81\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cbd\u0cc5\u0cc9\u0cce-\u0cd4\u0cd7-\u0cdd\u0cdf\u0ce2-\u0ce5\u0cf0-\u0d01\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d3d\u0d44-\u0d45\u0d49\u0d4e-\u0d56\u0d58-\u0d5f\u0d62-\u0d65\u0d70-\u0e00\u0e2f\u0e3b-\u0e3f\u0e4f\u0e5a-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eba\u0ebe-\u0ebf\u0ec5\u0ec7\u0ece-\u0ecf\u0eda-\u0f17\u0f1a-\u0f1f\u0f2a-\u0f34\u0f36\u0f38\u0f3a-\u0f3d\u0f48\u0f6a-\u0f70\u0f85\u0f8c-\u0f8f\u0f96\u0f98\u0fae-\u0fb0\u0fb8\u0fba-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u20cf\u20dd-\u20e0\u20e2-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3004\u3006\u3008-\u3020\u3030\u3036-\u3040\u3095-\u3098\u309b-\u309c\u309f-\u30a0\u30fb\u30ff-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +nonXmlNameFirstBMPRegexp = re.compile('[\x00-@\\[-\\^`\\{-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u0385\u0387\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u0640\u064b-\u0670\u06b8-\u06b9\u06bf\u06cf\u06d4\u06d6-\u06e4\u06e7-\u0904\u093a-\u093c\u093e-\u0957\u0962-\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09db\u09de\u09e2-\u09ef\u09f2-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a58\u0a5d\u0a5f-\u0a71\u0a75-\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abc\u0abe-\u0adf\u0ae1-\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3c\u0b3e-\u0b5b\u0b5e\u0b62-\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c5f\u0c62-\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cdd\u0cdf\u0ce2-\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d5f\u0d62-\u0e00\u0e2f\u0e31\u0e34-\u0e3f\u0e46-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eb1\u0eb4-\u0ebc\u0ebe-\u0ebf\u0ec5-\u0f3f\u0f48\u0f6a-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3006\u3008-\u3020\u302a-\u3040\u3095-\u30a0\u30fb-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +# Simpler things +nonPubidCharRegexp = re.compile("[^\x20\x0D\x0Aa-zA-Z0-9\\-'()+,./:=?;!*#@$_%]") + + +class InfosetFilter(object): + replacementRegexp = re.compile(r"U[\dA-F]{5,5}") + + def __init__(self, + dropXmlnsLocalName=False, + dropXmlnsAttrNs=False, + preventDoubleDashComments=False, + preventDashAtCommentEnd=False, + replaceFormFeedCharacters=True, + preventSingleQuotePubid=False): + + self.dropXmlnsLocalName = dropXmlnsLocalName + self.dropXmlnsAttrNs = dropXmlnsAttrNs + + self.preventDoubleDashComments = preventDoubleDashComments + self.preventDashAtCommentEnd = preventDashAtCommentEnd + + self.replaceFormFeedCharacters = replaceFormFeedCharacters + + self.preventSingleQuotePubid = preventSingleQuotePubid + + self.replaceCache = {} + + def coerceAttribute(self, name, namespace=None): + if self.dropXmlnsLocalName and name.startswith("xmlns:"): + warnings.warn("Attributes cannot begin with xmlns", DataLossWarning) + return None + elif (self.dropXmlnsAttrNs and + namespace == "http://www.w3.org/2000/xmlns/"): + warnings.warn("Attributes cannot be in the xml namespace", DataLossWarning) + return None + else: + return self.toXmlName(name) + + def coerceElement(self, name): + return self.toXmlName(name) + + def coerceComment(self, data): + if self.preventDoubleDashComments: + while "--" in data: + warnings.warn("Comments cannot contain adjacent dashes", DataLossWarning) + data = data.replace("--", "- -") + if data.endswith("-"): + warnings.warn("Comments cannot end in a dash", DataLossWarning) + data += " " + return data + + def coerceCharacters(self, data): + if self.replaceFormFeedCharacters: + for _ in range(data.count("\x0C")): + warnings.warn("Text cannot contain U+000C", DataLossWarning) + data = data.replace("\x0C", " ") + # Other non-xml characters + return data + + def coercePubid(self, data): + dataOutput = data + for char in nonPubidCharRegexp.findall(data): + warnings.warn("Coercing non-XML pubid", DataLossWarning) + replacement = self.getReplacementCharacter(char) + dataOutput = dataOutput.replace(char, replacement) + if self.preventSingleQuotePubid and dataOutput.find("'") >= 0: + warnings.warn("Pubid cannot contain single quote", DataLossWarning) + dataOutput = dataOutput.replace("'", self.getReplacementCharacter("'")) + return dataOutput + + def toXmlName(self, name): + nameFirst = name[0] + nameRest = name[1:] + m = nonXmlNameFirstBMPRegexp.match(nameFirst) + if m: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + nameFirstOutput = self.getReplacementCharacter(nameFirst) + else: + nameFirstOutput = nameFirst + + nameRestOutput = nameRest + replaceChars = set(nonXmlNameBMPRegexp.findall(nameRest)) + for char in replaceChars: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + replacement = self.getReplacementCharacter(char) + nameRestOutput = nameRestOutput.replace(char, replacement) + return nameFirstOutput + nameRestOutput + + def getReplacementCharacter(self, char): + if char in self.replaceCache: + replacement = self.replaceCache[char] + else: + replacement = self.escapeChar(char) + return replacement + + def fromXmlName(self, name): + for item in set(self.replacementRegexp.findall(name)): + name = name.replace(item, self.unescapeChar(item)) + return name + + def escapeChar(self, char): + replacement = "U%05X" % ord(char) + self.replaceCache[char] = replacement + return replacement + + def unescapeChar(self, charcode): + return chr(int(charcode[1:], 16)) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_inputstream.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_inputstream.py new file mode 100644 index 0000000..be8cd71 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_inputstream.py @@ -0,0 +1,918 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type +from pip._vendor.six.moves import http_client, urllib + +import codecs +import re +from io import BytesIO, StringIO + +from pip._vendor import webencodings + +from .constants import EOF, spaceCharacters, asciiLetters, asciiUppercase +from .constants import _ReparseException +from . import _utils + +# Non-unicode versions of constants for use in the pre-parser +spaceCharactersBytes = frozenset([item.encode("ascii") for item in spaceCharacters]) +asciiLettersBytes = frozenset([item.encode("ascii") for item in asciiLetters]) +asciiUppercaseBytes = frozenset([item.encode("ascii") for item in asciiUppercase]) +spacesAngleBrackets = spaceCharactersBytes | frozenset([b">", b"<"]) + + +invalid_unicode_no_surrogate = "[\u0001-\u0008\u000B\u000E-\u001F\u007F-\u009F\uFDD0-\uFDEF\uFFFE\uFFFF\U0001FFFE\U0001FFFF\U0002FFFE\U0002FFFF\U0003FFFE\U0003FFFF\U0004FFFE\U0004FFFF\U0005FFFE\U0005FFFF\U0006FFFE\U0006FFFF\U0007FFFE\U0007FFFF\U0008FFFE\U0008FFFF\U0009FFFE\U0009FFFF\U000AFFFE\U000AFFFF\U000BFFFE\U000BFFFF\U000CFFFE\U000CFFFF\U000DFFFE\U000DFFFF\U000EFFFE\U000EFFFF\U000FFFFE\U000FFFFF\U0010FFFE\U0010FFFF]" # noqa + +if _utils.supports_lone_surrogates: + # Use one extra step of indirection and create surrogates with + # eval. Not using this indirection would introduce an illegal + # unicode literal on platforms not supporting such lone + # surrogates. + assert invalid_unicode_no_surrogate[-1] == "]" and invalid_unicode_no_surrogate.count("]") == 1 + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate[:-1] + + eval('"\\uD800-\\uDFFF"') + # pylint:disable=eval-used + "]") +else: + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate) + +non_bmp_invalid_codepoints = {0x1FFFE, 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, 0x5FFFF, + 0x6FFFE, 0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, + 0x8FFFF, 0x9FFFE, 0x9FFFF, 0xAFFFE, 0xAFFFF, + 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, + 0x10FFFE, 0x10FFFF} + +ascii_punctuation_re = re.compile("[\u0009-\u000D\u0020-\u002F\u003A-\u0040\u005C\u005B-\u0060\u007B-\u007E]") + +# Cache for charsUntil() +charsUntilRegEx = {} + + +class BufferedStream(object): + """Buffering for streams that do not have buffering of their own + + The buffer is implemented as a list of chunks on the assumption that + joining many strings will be slow since it is O(n**2) + """ + + def __init__(self, stream): + self.stream = stream + self.buffer = [] + self.position = [-1, 0] # chunk number, offset + + def tell(self): + pos = 0 + for chunk in self.buffer[:self.position[0]]: + pos += len(chunk) + pos += self.position[1] + return pos + + def seek(self, pos): + assert pos <= self._bufferedBytes() + offset = pos + i = 0 + while len(self.buffer[i]) < offset: + offset -= len(self.buffer[i]) + i += 1 + self.position = [i, offset] + + def read(self, bytes): + if not self.buffer: + return self._readStream(bytes) + elif (self.position[0] == len(self.buffer) and + self.position[1] == len(self.buffer[-1])): + return self._readStream(bytes) + else: + return self._readFromBuffer(bytes) + + def _bufferedBytes(self): + return sum([len(item) for item in self.buffer]) + + def _readStream(self, bytes): + data = self.stream.read(bytes) + self.buffer.append(data) + self.position[0] += 1 + self.position[1] = len(data) + return data + + def _readFromBuffer(self, bytes): + remainingBytes = bytes + rv = [] + bufferIndex = self.position[0] + bufferOffset = self.position[1] + while bufferIndex < len(self.buffer) and remainingBytes != 0: + assert remainingBytes > 0 + bufferedData = self.buffer[bufferIndex] + + if remainingBytes <= len(bufferedData) - bufferOffset: + bytesToRead = remainingBytes + self.position = [bufferIndex, bufferOffset + bytesToRead] + else: + bytesToRead = len(bufferedData) - bufferOffset + self.position = [bufferIndex, len(bufferedData)] + bufferIndex += 1 + rv.append(bufferedData[bufferOffset:bufferOffset + bytesToRead]) + remainingBytes -= bytesToRead + + bufferOffset = 0 + + if remainingBytes: + rv.append(self._readStream(remainingBytes)) + + return b"".join(rv) + + +def HTMLInputStream(source, **kwargs): + # Work around Python bug #20007: read(0) closes the connection. + # http://bugs.python.org/issue20007 + if (isinstance(source, http_client.HTTPResponse) or + # Also check for addinfourl wrapping HTTPResponse + (isinstance(source, urllib.response.addbase) and + isinstance(source.fp, http_client.HTTPResponse))): + isUnicode = False + elif hasattr(source, "read"): + isUnicode = isinstance(source.read(0), text_type) + else: + isUnicode = isinstance(source, text_type) + + if isUnicode: + encodings = [x for x in kwargs if x.endswith("_encoding")] + if encodings: + raise TypeError("Cannot set an encoding with a unicode input, set %r" % encodings) + + return HTMLUnicodeInputStream(source, **kwargs) + else: + return HTMLBinaryInputStream(source, **kwargs) + + +class HTMLUnicodeInputStream(object): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + _defaultChunkSize = 10240 + + def __init__(self, source): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + + if not _utils.supports_lone_surrogates: + # Such platforms will have already checked for such + # surrogate errors, so no need to do this checking. + self.reportCharacterErrors = None + elif len("\U0010FFFF") == 1: + self.reportCharacterErrors = self.characterErrorsUCS4 + else: + self.reportCharacterErrors = self.characterErrorsUCS2 + + # List of where new lines occur + self.newLines = [0] + + self.charEncoding = (lookupEncoding("utf-8"), "certain") + self.dataStream = self.openStream(source) + + self.reset() + + def reset(self): + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + self.errors = [] + + # number of (complete) lines in previous chunks + self.prevNumLines = 0 + # number of columns in the last line of the previous chunk + self.prevNumCols = 0 + + # Deal with CR LF and surrogates split over chunk boundaries + self._bufferedCharacter = None + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = StringIO(source) + + return stream + + def _position(self, offset): + chunk = self.chunk + nLines = chunk.count('\n', 0, offset) + positionLine = self.prevNumLines + nLines + lastLinePos = chunk.rfind('\n', 0, offset) + if lastLinePos == -1: + positionColumn = self.prevNumCols + offset + else: + positionColumn = offset - (lastLinePos + 1) + return (positionLine, positionColumn) + + def position(self): + """Returns (line, col) of the current position in the stream.""" + line, col = self._position(self.chunkOffset) + return (line + 1, col) + + def char(self): + """ Read one character from the stream or queue if available. Return + EOF when EOF is reached. + """ + # Read a new chunk from the input stream if necessary + if self.chunkOffset >= self.chunkSize: + if not self.readChunk(): + return EOF + + chunkOffset = self.chunkOffset + char = self.chunk[chunkOffset] + self.chunkOffset = chunkOffset + 1 + + return char + + def readChunk(self, chunkSize=None): + if chunkSize is None: + chunkSize = self._defaultChunkSize + + self.prevNumLines, self.prevNumCols = self._position(self.chunkSize) + + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + + data = self.dataStream.read(chunkSize) + + # Deal with CR LF and surrogates broken across chunks + if self._bufferedCharacter: + data = self._bufferedCharacter + data + self._bufferedCharacter = None + elif not data: + # We have no more data, bye-bye stream + return False + + if len(data) > 1: + lastv = ord(data[-1]) + if lastv == 0x0D or 0xD800 <= lastv <= 0xDBFF: + self._bufferedCharacter = data[-1] + data = data[:-1] + + if self.reportCharacterErrors: + self.reportCharacterErrors(data) + + # Replace invalid characters + data = data.replace("\r\n", "\n") + data = data.replace("\r", "\n") + + self.chunk = data + self.chunkSize = len(data) + + return True + + def characterErrorsUCS4(self, data): + for _ in range(len(invalid_unicode_re.findall(data))): + self.errors.append("invalid-codepoint") + + def characterErrorsUCS2(self, data): + # Someone picked the wrong compile option + # You lose + skip = False + for match in invalid_unicode_re.finditer(data): + if skip: + continue + codepoint = ord(match.group()) + pos = match.start() + # Pretty sure there should be endianness issues here + if _utils.isSurrogatePair(data[pos:pos + 2]): + # We have a surrogate pair! + char_val = _utils.surrogatePairToCodepoint(data[pos:pos + 2]) + if char_val in non_bmp_invalid_codepoints: + self.errors.append("invalid-codepoint") + skip = True + elif (codepoint >= 0xD800 and codepoint <= 0xDFFF and + pos == len(data) - 1): + self.errors.append("invalid-codepoint") + else: + skip = False + self.errors.append("invalid-codepoint") + + def charsUntil(self, characters, opposite=False): + """ Returns a string of characters from the stream up to but not + including any character in 'characters' or EOF. 'characters' must be + a container that supports the 'in' method and iteration over its + characters. + """ + + # Use a cache of regexps to find the required characters + try: + chars = charsUntilRegEx[(characters, opposite)] + except KeyError: + if __debug__: + for c in characters: + assert(ord(c) < 128) + regex = "".join(["\\x%02x" % ord(c) for c in characters]) + if not opposite: + regex = "^%s" % regex + chars = charsUntilRegEx[(characters, opposite)] = re.compile("[%s]+" % regex) + + rv = [] + + while True: + # Find the longest matching prefix + m = chars.match(self.chunk, self.chunkOffset) + if m is None: + # If nothing matched, and it wasn't because we ran out of chunk, + # then stop + if self.chunkOffset != self.chunkSize: + break + else: + end = m.end() + # If not the whole chunk matched, return everything + # up to the part that didn't match + if end != self.chunkSize: + rv.append(self.chunk[self.chunkOffset:end]) + self.chunkOffset = end + break + # If the whole remainder of the chunk matched, + # use it all and read the next chunk + rv.append(self.chunk[self.chunkOffset:]) + if not self.readChunk(): + # Reached EOF + break + + r = "".join(rv) + return r + + def unget(self, char): + # Only one character is allowed to be ungotten at once - it must + # be consumed again before any further call to unget + if char is not EOF: + if self.chunkOffset == 0: + # unget is called quite rarely, so it's a good idea to do + # more work here if it saves a bit of work in the frequently + # called char and charsUntil. + # So, just prepend the ungotten character onto the current + # chunk: + self.chunk = char + self.chunk + self.chunkSize += 1 + else: + self.chunkOffset -= 1 + assert self.chunk[self.chunkOffset] == char + + +class HTMLBinaryInputStream(HTMLUnicodeInputStream): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + def __init__(self, source, override_encoding=None, transport_encoding=None, + same_origin_parent_encoding=None, likely_encoding=None, + default_encoding="windows-1252", useChardet=True): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + # Raw Stream - for unicode objects this will encode to utf-8 and set + # self.charEncoding as appropriate + self.rawStream = self.openStream(source) + + HTMLUnicodeInputStream.__init__(self, self.rawStream) + + # Encoding Information + # Number of bytes to use when looking for a meta element with + # encoding information + self.numBytesMeta = 1024 + # Number of bytes to use when using detecting encoding using chardet + self.numBytesChardet = 100 + # Things from args + self.override_encoding = override_encoding + self.transport_encoding = transport_encoding + self.same_origin_parent_encoding = same_origin_parent_encoding + self.likely_encoding = likely_encoding + self.default_encoding = default_encoding + + # Determine encoding + self.charEncoding = self.determineEncoding(useChardet) + assert self.charEncoding[0] is not None + + # Call superclass + self.reset() + + def reset(self): + self.dataStream = self.charEncoding[0].codec_info.streamreader(self.rawStream, 'replace') + HTMLUnicodeInputStream.reset(self) + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = BytesIO(source) + + try: + stream.seek(stream.tell()) + except Exception: + stream = BufferedStream(stream) + + return stream + + def determineEncoding(self, chardet=True): + # BOMs take precedence over everything + # This will also read past the BOM if present + charEncoding = self.detectBOM(), "certain" + if charEncoding[0] is not None: + return charEncoding + + # If we've been overridden, we've been overridden + charEncoding = lookupEncoding(self.override_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Now check the transport layer + charEncoding = lookupEncoding(self.transport_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Look for meta elements with encoding information + charEncoding = self.detectEncodingMeta(), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Parent document encoding + charEncoding = lookupEncoding(self.same_origin_parent_encoding), "tentative" + if charEncoding[0] is not None and not charEncoding[0].name.startswith("utf-16"): + return charEncoding + + # "likely" encoding + charEncoding = lookupEncoding(self.likely_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Guess with chardet, if available + if chardet: + try: + from pip._vendor.chardet.universaldetector import UniversalDetector + except ImportError: + pass + else: + buffers = [] + detector = UniversalDetector() + while not detector.done: + buffer = self.rawStream.read(self.numBytesChardet) + assert isinstance(buffer, bytes) + if not buffer: + break + buffers.append(buffer) + detector.feed(buffer) + detector.close() + encoding = lookupEncoding(detector.result['encoding']) + self.rawStream.seek(0) + if encoding is not None: + return encoding, "tentative" + + # Try the default encoding + charEncoding = lookupEncoding(self.default_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Fallback to html5lib's default if even that hasn't worked + return lookupEncoding("windows-1252"), "tentative" + + def changeEncoding(self, newEncoding): + assert self.charEncoding[1] != "certain" + newEncoding = lookupEncoding(newEncoding) + if newEncoding is None: + return + if newEncoding.name in ("utf-16be", "utf-16le"): + newEncoding = lookupEncoding("utf-8") + assert newEncoding is not None + elif newEncoding == self.charEncoding[0]: + self.charEncoding = (self.charEncoding[0], "certain") + else: + self.rawStream.seek(0) + self.charEncoding = (newEncoding, "certain") + self.reset() + raise _ReparseException("Encoding changed from %s to %s" % (self.charEncoding[0], newEncoding)) + + def detectBOM(self): + """Attempts to detect at BOM at the start of the stream. If + an encoding can be determined from the BOM return the name of the + encoding otherwise return None""" + bomDict = { + codecs.BOM_UTF8: 'utf-8', + codecs.BOM_UTF16_LE: 'utf-16le', codecs.BOM_UTF16_BE: 'utf-16be', + codecs.BOM_UTF32_LE: 'utf-32le', codecs.BOM_UTF32_BE: 'utf-32be' + } + + # Go to beginning of file and read in 4 bytes + string = self.rawStream.read(4) + assert isinstance(string, bytes) + + # Try detecting the BOM using bytes from the string + encoding = bomDict.get(string[:3]) # UTF-8 + seek = 3 + if not encoding: + # Need to detect UTF-32 before UTF-16 + encoding = bomDict.get(string) # UTF-32 + seek = 4 + if not encoding: + encoding = bomDict.get(string[:2]) # UTF-16 + seek = 2 + + # Set the read position past the BOM if one was found, otherwise + # set it to the start of the stream + if encoding: + self.rawStream.seek(seek) + return lookupEncoding(encoding) + else: + self.rawStream.seek(0) + return None + + def detectEncodingMeta(self): + """Report the encoding declared by the meta element + """ + buffer = self.rawStream.read(self.numBytesMeta) + assert isinstance(buffer, bytes) + parser = EncodingParser(buffer) + self.rawStream.seek(0) + encoding = parser.getEncoding() + + if encoding is not None and encoding.name in ("utf-16be", "utf-16le"): + encoding = lookupEncoding("utf-8") + + return encoding + + +class EncodingBytes(bytes): + """String-like object with an associated position and various extra methods + If the position is ever greater than the string length then an exception is + raised""" + def __new__(self, value): + assert isinstance(value, bytes) + return bytes.__new__(self, value.lower()) + + def __init__(self, value): + # pylint:disable=unused-argument + self._position = -1 + + def __iter__(self): + return self + + def __next__(self): + p = self._position = self._position + 1 + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + return self[p:p + 1] + + def next(self): + # Py2 compat + return self.__next__() + + def previous(self): + p = self._position + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + self._position = p = p - 1 + return self[p:p + 1] + + def setPosition(self, position): + if self._position >= len(self): + raise StopIteration + self._position = position + + def getPosition(self): + if self._position >= len(self): + raise StopIteration + if self._position >= 0: + return self._position + else: + return None + + position = property(getPosition, setPosition) + + def getCurrentByte(self): + return self[self.position:self.position + 1] + + currentByte = property(getCurrentByte) + + def skip(self, chars=spaceCharactersBytes): + """Skip past a list of characters""" + p = self.position # use property for the error-checking + while p < len(self): + c = self[p:p + 1] + if c not in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def skipUntil(self, chars): + p = self.position + while p < len(self): + c = self[p:p + 1] + if c in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def matchBytes(self, bytes): + """Look for a sequence of bytes at the start of a string. If the bytes + are found return True and advance the position to the byte after the + match. Otherwise return False and leave the position alone""" + rv = self.startswith(bytes, self.position) + if rv: + self.position += len(bytes) + return rv + + def jumpTo(self, bytes): + """Look for the next sequence of bytes matching a given sequence. If + a match is found advance the position to the last byte of the match""" + try: + self._position = self.index(bytes, self.position) + len(bytes) - 1 + except ValueError: + raise StopIteration + return True + + +class EncodingParser(object): + """Mini parser for detecting character encoding from meta elements""" + + def __init__(self, data): + """string - the data to work on for encoding detection""" + self.data = EncodingBytes(data) + self.encoding = None + + def getEncoding(self): + if b"") + + def handleMeta(self): + if self.data.currentByte not in spaceCharactersBytes: + # if we have ") + + def getAttribute(self): + """Return a name,value pair for the next attribute in the stream, + if one is found, or None""" + data = self.data + # Step 1 (skip chars) + c = data.skip(spaceCharactersBytes | frozenset([b"/"])) + assert c is None or len(c) == 1 + # Step 2 + if c in (b">", None): + return None + # Step 3 + attrName = [] + attrValue = [] + # Step 4 attribute name + while True: + if c == b"=" and attrName: + break + elif c in spaceCharactersBytes: + # Step 6! + c = data.skip() + break + elif c in (b"/", b">"): + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrName.append(c.lower()) + elif c is None: + return None + else: + attrName.append(c) + # Step 5 + c = next(data) + # Step 7 + if c != b"=": + data.previous() + return b"".join(attrName), b"" + # Step 8 + next(data) + # Step 9 + c = data.skip() + # Step 10 + if c in (b"'", b'"'): + # 10.1 + quoteChar = c + while True: + # 10.2 + c = next(data) + # 10.3 + if c == quoteChar: + next(data) + return b"".join(attrName), b"".join(attrValue) + # 10.4 + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + # 10.5 + else: + attrValue.append(c) + elif c == b">": + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + # Step 11 + while True: + c = next(data) + if c in spacesAngleBrackets: + return b"".join(attrName), b"".join(attrValue) + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + + +class ContentAttrParser(object): + def __init__(self, data): + assert isinstance(data, bytes) + self.data = data + + def parse(self): + try: + # Check if the attr name is charset + # otherwise return + self.data.jumpTo(b"charset") + self.data.position += 1 + self.data.skip() + if not self.data.currentByte == b"=": + # If there is no = sign keep looking for attrs + return None + self.data.position += 1 + self.data.skip() + # Look for an encoding between matching quote marks + if self.data.currentByte in (b'"', b"'"): + quoteMark = self.data.currentByte + self.data.position += 1 + oldPosition = self.data.position + if self.data.jumpTo(quoteMark): + return self.data[oldPosition:self.data.position] + else: + return None + else: + # Unquoted value + oldPosition = self.data.position + try: + self.data.skipUntil(spaceCharactersBytes) + return self.data[oldPosition:self.data.position] + except StopIteration: + # Return the whole remaining value + return self.data[oldPosition:] + except StopIteration: + return None + + +def lookupEncoding(encoding): + """Return the python codec name corresponding to an encoding or None if the + string doesn't correspond to a valid encoding.""" + if isinstance(encoding, bytes): + try: + encoding = encoding.decode("ascii") + except UnicodeDecodeError: + return None + + if encoding is not None: + try: + return webencodings.lookup(encoding) + except AttributeError: + return None + else: + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_tokenizer.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_tokenizer.py new file mode 100644 index 0000000..e71f153 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_tokenizer.py @@ -0,0 +1,1735 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import unichr as chr + +from collections import deque, OrderedDict +from sys import version_info + +from .constants import spaceCharacters +from .constants import entities +from .constants import asciiLetters, asciiUpper2Lower +from .constants import digits, hexDigits, EOF +from .constants import tokenTypes, tagTokenTypes +from .constants import replacementCharacters + +from ._inputstream import HTMLInputStream + +from ._trie import Trie + +entitiesTrie = Trie(entities) + +if version_info >= (3, 7): + attributeMap = dict +else: + attributeMap = OrderedDict + + +class HTMLTokenizer(object): + """ This class takes care of tokenizing HTML. + + * self.currentToken + Holds the token that is currently being processed. + + * self.state + Holds a reference to the method to be invoked... XXX + + * self.stream + Points to HTMLInputStream object. + """ + + def __init__(self, stream, parser=None, **kwargs): + + self.stream = HTMLInputStream(stream, **kwargs) + self.parser = parser + + # Setup the initial tokenizer state + self.escapeFlag = False + self.lastFourChars = [] + self.state = self.dataState + self.escape = False + + # The current token being created + self.currentToken = None + super(HTMLTokenizer, self).__init__() + + def __iter__(self): + """ This is where the magic happens. + + We do our usually processing through the states and when we have a token + to return we yield the token which pauses processing until the next token + is requested. + """ + self.tokenQueue = deque([]) + # Start processing. When EOF is reached self.state will return False + # instead of True and the loop will terminate. + while self.state(): + while self.stream.errors: + yield {"type": tokenTypes["ParseError"], "data": self.stream.errors.pop(0)} + while self.tokenQueue: + yield self.tokenQueue.popleft() + + def consumeNumberEntity(self, isHex): + """This function returns either U+FFFD or the character based on the + decimal or hexadecimal representation. It also discards ";" if present. + If not present self.tokenQueue.append({"type": tokenTypes["ParseError"]}) is invoked. + """ + + allowed = digits + radix = 10 + if isHex: + allowed = hexDigits + radix = 16 + + charStack = [] + + # Consume all the characters that are in range while making sure we + # don't hit an EOF. + c = self.stream.char() + while c in allowed and c is not EOF: + charStack.append(c) + c = self.stream.char() + + # Convert the set of characters consumed to an int. + charAsInt = int("".join(charStack), radix) + + # Certain characters get replaced with others + if charAsInt in replacementCharacters: + char = replacementCharacters[charAsInt] + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + elif ((0xD800 <= charAsInt <= 0xDFFF) or + (charAsInt > 0x10FFFF)): + char = "\uFFFD" + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + else: + # Should speed up this check somehow (e.g. move the set to a constant) + if ((0x0001 <= charAsInt <= 0x0008) or + (0x000E <= charAsInt <= 0x001F) or + (0x007F <= charAsInt <= 0x009F) or + (0xFDD0 <= charAsInt <= 0xFDEF) or + charAsInt in frozenset([0x000B, 0xFFFE, 0xFFFF, 0x1FFFE, + 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, + 0x5FFFF, 0x6FFFE, 0x6FFFF, 0x7FFFE, + 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, + 0x9FFFF, 0xAFFFE, 0xAFFFF, 0xBFFFE, + 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, + 0xFFFFF, 0x10FFFE, 0x10FFFF])): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + try: + # Try/except needed as UCS-2 Python builds' unichar only works + # within the BMP. + char = chr(charAsInt) + except ValueError: + v = charAsInt - 0x10000 + char = chr(0xD800 | (v >> 10)) + chr(0xDC00 | (v & 0x3FF)) + + # Discard the ; if present. Otherwise, put it back on the queue and + # invoke parseError on parser. + if c != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "numeric-entity-without-semicolon"}) + self.stream.unget(c) + + return char + + def consumeEntity(self, allowedChar=None, fromAttribute=False): + # Initialise to the default output for when no entity is matched + output = "&" + + charStack = [self.stream.char()] + if (charStack[0] in spaceCharacters or charStack[0] in (EOF, "<", "&") or + (allowedChar is not None and allowedChar == charStack[0])): + self.stream.unget(charStack[0]) + + elif charStack[0] == "#": + # Read the next character to see if it's hex or decimal + hex = False + charStack.append(self.stream.char()) + if charStack[-1] in ("x", "X"): + hex = True + charStack.append(self.stream.char()) + + # charStack[-1] should be the first digit + if (hex and charStack[-1] in hexDigits) \ + or (not hex and charStack[-1] in digits): + # At least one digit found, so consume the whole number + self.stream.unget(charStack[-1]) + output = self.consumeNumberEntity(hex) + else: + # No digits found + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "expected-numeric-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + else: + # At this point in the process might have named entity. Entities + # are stored in the global variable "entities". + # + # Consume characters and compare to these to a substring of the + # entity names in the list until the substring no longer matches. + while (charStack[-1] is not EOF): + if not entitiesTrie.has_keys_with_prefix("".join(charStack)): + break + charStack.append(self.stream.char()) + + # At this point we have a string that starts with some characters + # that may match an entity + # Try to find the longest entity the string will match to take care + # of ¬i for instance. + try: + entityName = entitiesTrie.longest_prefix("".join(charStack[:-1])) + entityLength = len(entityName) + except KeyError: + entityName = None + + if entityName is not None: + if entityName[-1] != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "named-entity-without-semicolon"}) + if (entityName[-1] != ";" and fromAttribute and + (charStack[entityLength] in asciiLetters or + charStack[entityLength] in digits or + charStack[entityLength] == "=")): + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + else: + output = entities[entityName] + self.stream.unget(charStack.pop()) + output += "".join(charStack[entityLength:]) + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-named-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + if fromAttribute: + self.currentToken["data"][-1][1] += output + else: + if output in spaceCharacters: + tokenType = "SpaceCharacters" + else: + tokenType = "Characters" + self.tokenQueue.append({"type": tokenTypes[tokenType], "data": output}) + + def processEntityInAttribute(self, allowedChar): + """This method replaces the need for "entityInAttributeValueState". + """ + self.consumeEntity(allowedChar=allowedChar, fromAttribute=True) + + def emitCurrentToken(self): + """This method is a generic handler for emitting the tags. It also sets + the state to "data" because that's what's needed after a token has been + emitted. + """ + token = self.currentToken + # Add token to the queue to be yielded + if (token["type"] in tagTokenTypes): + token["name"] = token["name"].translate(asciiUpper2Lower) + if token["type"] == tokenTypes["StartTag"]: + raw = token["data"] + data = attributeMap(raw) + if len(raw) > len(data): + # we had some duplicated attribute, fix so first wins + data.update(raw[::-1]) + token["data"] = data + + if token["type"] == tokenTypes["EndTag"]: + if token["data"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "attributes-in-end-tag"}) + if token["selfClosing"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "self-closing-flag-on-end-tag"}) + self.tokenQueue.append(token) + self.state = self.dataState + + # Below are the various tokenizer states worked out. + def dataState(self): + data = self.stream.char() + if data == "&": + self.state = self.entityDataState + elif data == "<": + self.state = self.tagOpenState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\u0000"}) + elif data is EOF: + # Tokenization ends. + return False + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def entityDataState(self): + self.consumeEntity() + self.state = self.dataState + return True + + def rcdataState(self): + data = self.stream.char() + if data == "&": + self.state = self.characterReferenceInRcdata + elif data == "<": + self.state = self.rcdataLessThanSignState + elif data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def characterReferenceInRcdata(self): + self.consumeEntity() + self.state = self.rcdataState + return True + + def rawtextState(self): + data = self.stream.char() + if data == "<": + self.state = self.rawtextLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def scriptDataState(self): + data = self.stream.char() + if data == "<": + self.state = self.scriptDataLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def plaintextState(self): + data = self.stream.char() + if data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + self.stream.charsUntil("\u0000")}) + return True + + def tagOpenState(self): + data = self.stream.char() + if data == "!": + self.state = self.markupDeclarationOpenState + elif data == "/": + self.state = self.closeTagOpenState + elif data in asciiLetters: + self.currentToken = {"type": tokenTypes["StartTag"], + "name": data, "data": [], + "selfClosing": False, + "selfClosingAcknowledged": False} + self.state = self.tagNameState + elif data == ">": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-right-bracket"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<>"}) + self.state = self.dataState + elif data == "?": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-question-mark"}) + self.stream.unget(data) + self.state = self.bogusCommentState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.dataState + return True + + def closeTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.currentToken = {"type": tokenTypes["EndTag"], "name": data, + "data": [], "selfClosing": False} + self.state = self.tagNameState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-right-bracket"}) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-eof"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "": + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-tag-name"}) + self.state = self.dataState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + else: + self.currentToken["name"] += data + # (Don't use charsUntil here, because tag names are + # very short and it's faster to not do anything fancy) + return True + + def rcdataLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.rcdataEndTagOpenState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.rcdataState + return True + + def rcdataEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer += data + self.state = self.rcdataEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataEscapedState + elif data == EOF: + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.scriptDataEscapedEndTagOpenState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<" + data}) + self.temporaryBuffer = data + self.state = self.scriptDataDoubleEscapeStartState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer = data + self.state = self.scriptDataEscapedEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": ""))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataDoubleEscapedState + else: + self.state = self.scriptDataEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataDoubleEscapedState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + return True + + def scriptDataDoubleEscapedDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedDashDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "/"}) + self.temporaryBuffer = "" + self.state = self.scriptDataDoubleEscapeEndState + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapeEndState(self): + data = self.stream.char() + if data in (spaceCharacters | frozenset(("/", ">"))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataEscapedState + else: + self.state = self.scriptDataDoubleEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def beforeAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data in ("'", '"', "=", "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-name-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def attributeNameState(self): + data = self.stream.char() + leavingThisState = True + emitToken = False + if data == "=": + self.state = self.beforeAttributeValueState + elif data in asciiLetters: + self.currentToken["data"][-1][0] += data +\ + self.stream.charsUntil(asciiLetters, True) + leavingThisState = False + elif data == ">": + # XXX If we emit here the attributes are converted to a dict + # without being checked and when the code below runs we error + # because data is a dict not a list + emitToken = True + elif data in spaceCharacters: + self.state = self.afterAttributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][0] += "\uFFFD" + leavingThisState = False + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"][-1][0] += data + leavingThisState = False + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-attribute-name"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][0] += data + leavingThisState = False + + if leavingThisState: + # Attributes are not dropped at this stage. That happens when the + # start tag token is emitted so values can still be safely appended + # to attributes, but we do want to report the parse error in time. + self.currentToken["data"][-1][0] = ( + self.currentToken["data"][-1][0].translate(asciiUpper2Lower)) + for name, _ in self.currentToken["data"][:-1]: + if self.currentToken["data"][-1][0] == name: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "duplicate-attribute"}) + break + # XXX Fix for above XXX + if emitToken: + self.emitCurrentToken() + return True + + def afterAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "=": + self.state = self.beforeAttributeValueState + elif data == ">": + self.emitCurrentToken() + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-after-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-end-of-tag-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def beforeAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "\"": + self.state = self.attributeValueDoubleQuotedState + elif data == "&": + self.state = self.attributeValueUnQuotedState + self.stream.unget(data) + elif data == "'": + self.state = self.attributeValueSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-right-bracket"}) + self.emitCurrentToken() + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + self.state = self.attributeValueUnQuotedState + elif data in ("=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "equals-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + return True + + def attributeValueDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute('"') + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-double-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("\"", "&", "\u0000")) + return True + + def attributeValueSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute("'") + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-single-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("'", "&", "\u0000")) + return True + + def attributeValueUnQuotedState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == "&": + self.processEntityInAttribute(">") + elif data == ">": + self.emitCurrentToken() + elif data in ('"', "'", "=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-no-quotes"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.stream.charsUntil( + frozenset(("&", ">", '"', "'", "=", "<", "`", "\u0000")) | spaceCharacters) + return True + + def afterAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-EOF-after-attribute-value"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-attribute-value"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def selfClosingStartTagState(self): + data = self.stream.char() + if data == ">": + self.currentToken["selfClosing"] = True + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "unexpected-EOF-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def bogusCommentState(self): + # Make a new comment token and give it as value all the characters + # until the first > or EOF (charsUntil checks for EOF automatically) + # and emit it. + data = self.stream.charsUntil(">") + data = data.replace("\u0000", "\uFFFD") + self.tokenQueue.append( + {"type": tokenTypes["Comment"], "data": data}) + + # Eat the character directly after the bogus comment which is either a + # ">" or an EOF. + self.stream.char() + self.state = self.dataState + return True + + def markupDeclarationOpenState(self): + charStack = [self.stream.char()] + if charStack[-1] == "-": + charStack.append(self.stream.char()) + if charStack[-1] == "-": + self.currentToken = {"type": tokenTypes["Comment"], "data": ""} + self.state = self.commentStartState + return True + elif charStack[-1] in ('d', 'D'): + matched = True + for expected in (('o', 'O'), ('c', 'C'), ('t', 'T'), + ('y', 'Y'), ('p', 'P'), ('e', 'E')): + charStack.append(self.stream.char()) + if charStack[-1] not in expected: + matched = False + break + if matched: + self.currentToken = {"type": tokenTypes["Doctype"], + "name": "", + "publicId": None, "systemId": None, + "correct": True} + self.state = self.doctypeState + return True + elif (charStack[-1] == "[" and + self.parser is not None and + self.parser.tree.openElements and + self.parser.tree.openElements[-1].namespace != self.parser.tree.defaultNamespace): + matched = True + for expected in ["C", "D", "A", "T", "A", "["]: + charStack.append(self.stream.char()) + if charStack[-1] != expected: + matched = False + break + if matched: + self.state = self.cdataSectionState + return True + + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-dashes-or-doctype"}) + + while charStack: + self.stream.unget(charStack.pop()) + self.state = self.bogusCommentState + return True + + def commentStartState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentStartDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + self.state = self.commentState + return True + + def commentStartDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + \ + self.stream.charsUntil(("-", "\u0000")) + return True + + def commentEndDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentEndState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--\uFFFD" + self.state = self.commentState + elif data == "!": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-bang-after-double-dash-in-comment"}) + self.state = self.commentEndBangState + elif data == "-": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-dash-after-double-dash-in-comment"}) + self.currentToken["data"] += data + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-double-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-comment"}) + self.currentToken["data"] += "--" + data + self.state = self.commentState + return True + + def commentEndBangState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "-": + self.currentToken["data"] += "--!" + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--!\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-bang-state"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "--!" + data + self.state = self.commentState + return True + + def doctypeState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "need-space-after-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeNameState + return True + + def beforeDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-right-bracket"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] = "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] = data + self.state = self.doctypeNameState + return True + + def doctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.state = self.afterDoctypeNameState + elif data == ">": + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype-name"}) + self.currentToken["correct"] = False + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] += data + return True + + def afterDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.currentToken["correct"] = False + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + if data in ("p", "P"): + matched = True + for expected in (("u", "U"), ("b", "B"), ("l", "L"), + ("i", "I"), ("c", "C")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypePublicKeywordState + return True + elif data in ("s", "S"): + matched = True + for expected in (("y", "Y"), ("s", "S"), ("t", "T"), + ("e", "E"), ("m", "M")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypeSystemKeywordState + return True + + # All the characters read before the current 'data' will be + # [a-zA-Z], so they're garbage in the bogus doctype and can be + # discarded; only the latest character might be '>' or EOF + # and needs to be ungetted + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-space-or-right-bracket-in-doctype", "datavars": + {"data": data}}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + + return True + + def afterDoctypePublicKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypePublicIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + return True + + def beforeDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypePublicIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def doctypePublicIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def afterDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.betweenDoctypePublicAndSystemIdentifiersState + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def betweenDoctypePublicAndSystemIdentifiersState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def afterDoctypeSystemKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeSystemIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + return True + + def beforeDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypeSystemIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def doctypeSystemIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def afterDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.state = self.bogusDoctypeState + return True + + def bogusDoctypeState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + # XXX EMIT + self.stream.unget(data) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + pass + return True + + def cdataSectionState(self): + data = [] + while True: + data.append(self.stream.charsUntil("]")) + data.append(self.stream.charsUntil(">")) + char = self.stream.char() + if char == EOF: + break + else: + assert char == ">" + if data[-1][-2:] == "]]": + data[-1] = data[-1][:-2] + break + else: + data.append(char) + + data = "".join(data) # pylint:disable=redefined-variable-type + # Deal with null here rather than in the parser + nullCount = data.count("\u0000") + if nullCount > 0: + for _ in range(nullCount): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + data = data.replace("\u0000", "\uFFFD") + if data: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": data}) + self.state = self.dataState + return True diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__init__.py new file mode 100644 index 0000000..3fcfae2 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__init__.py @@ -0,0 +1,5 @@ +from __future__ import absolute_import, division, unicode_literals + +from .py import Trie + +__all__ = ["Trie"] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e49011711f892fd1c2293fbc0be522d3e971081c GIT binary patch literal 344 zcmYe~<>g{vU|^WXFgv}7fq~&Mh=Yuo7#J8F7#J9ewHO!}QW#Pga~N_NqZo6UqL^}- zqnH^PQkYVhb69d&qgWXkQdrU%qu5edgBdj0UV==~WWL3pm{gpfQ(BT5pP5^bUsQ67 zBPFvevp6$9@0LJmUS@KBN@{#gW=U#MVovc(Mg|53O~zX+Aw`*~MQjWV41SvIx47ct z(@IN9i&Ep`i$KmPVrF1qC}Lq?V7SFpPzhFci#SF(Oaer~FM zdU<9^i6N8g{vU|^WXFgsnAg@NHQh=Ytd7#J8F7#J9eBN!MMQW#Pga~N_NqZo6UqL^}- zqnH^PssvIPQkZgBa#^ET85zPE^5j?;QrRk<7#TniEXNL!i)6@SGGK6LNMTN4X<R?D=C}k*;D`Bo-YGw>(0K11Vg{g(3hRKBiB%;aem&^z<35r36vobI+2!rB5 zih+S4gQ12YR;ZS-hH(Ky2g5?fB9K~ZX2WabD!Lbk@U&IX(<^>TTIgp}a zP_kuU;$z}q);$UP* zVGL#{Tb_PZsMlO&OCBaU_rWUu8LqJYutYIi)DB`JM3}z@{NMS5ttYK_sOkosf zXl8O@h}EcNs$ooFsA1w}Xl0UQ0IQWl7GYvwWC&&`lq+EZ>1$$4VF+f>Wb%6nN`9Km zw^)l3^U_mqG3TV_-Qw_0t#mCa$}d9kGh-&iv!Fy(1okmsPJUi`YH9oh=F{{uz&#+A)u(KVW?q}WJm)=2&11SW05Qa z0|Sby*mEEOjqWyKR2$R4@%X%&}5sOnv)YBkK{fP zkUCHRf>S>y$Wfq@85CxGoE+>NTwrmK8@S@*(@IN9i&Ep`i$Fy~5h$FBKt8y|pPZkQ zlbT$TnV(mzmzb1X1S&ReaeIQxQgGzm;zm*eHWJAVh)CqHfq2diln{zR4iRBuViaKH IVH9Ep06=bPlmGw# literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee6a869834f569378696a6e8cdce9e6e52e6a855 GIT binary patch literal 2249 zcmYe~<>g{vU|^WXFgx9doq^#oh=Yt-7#J8F7#J9eeHa)RQW#Pga~N_NqZo6UqL^}- zqnH^%VoW(KxvWvFU^a6OTP}MPJ0n91OA2caM=oa+7bAl^Lke38dkaGfdn#8ma};L^ zM=*mX=Sz@1n#{NO6O)Sbb4p86<1=#$@{3AtainCHWfo`V=iL%0&C5*APf3l>$t+1N zO3W$NWW2>$l3Gy`Us73+s>yhZJ1Mg`HMt}{CpE3)B_jg^gC^rGmXM;%)MSw1$e0=C z5jO?~hE#?q#uSDqrWD2$rWS@M<`m`>mKKI6mK4?$wibpc))e*>juwU}wiM13t`>$U z_7s5>o)q2|#wd;yz7+lzhA7Sy?qCK@!6FU@28LuNBzr(?P?$M`!pw_-fuV!}Vo43- z0>*_5E)30#&5XrzB}^&I&5TWqHH8Zu~1(^l<@nxxbDfvbE86~+n zrXa=fB}JL3`URDG1(mlrZPHWoQY#9I?6?^i7(Ro1QKbNiD!usl%)HE!_;@{=oc!d( zoMJmYxY8;K$DAC6?9|F)h1}BO5{0Bxh2oN;%)IpCTMR{@z|iEp#hjRvbBhI}<`!p2 zWkITIQBi);E!Oyy#FE5YY{mISC8;U5SmPlI;*%4TGg6C7if%FIq~_h?f$$6RGxJJ{ zHJNU)6sP8--C_Z01qTX*;A3E5xWxf;CMd%c^MKsXD8|Ua#Ky?S$i`U3i{cfGGy#e% zaGC(=2E}?7Lm5LbLlGwf1H($jB2f^%VklN9VFb~jkgj1|z*NJK#k`QQ$ft%OizSAs zmZ_GxgcT%T!&t*q!`#fm!cfan%bF(u6K!UKh?FokGt{!xu#~WYR5vqbGZmH8umyu+ zk)eiFl3@W;4dX(_qIorJ3)n#_Kw=9S85wF=Q<%&dYFP_QK#47$xrU{N6PCJ{TCq7`d2u7`Yh5m;}IC zh=oajQGk()iH(tqsfrUE1E3s>67rx>2Vro?r+`Bq4nbaAv7t$YOfq8nUe5kPS&;0*5SX4T~hh0!C2C1~X_f`-Qk^ zvO^NA1}GrV!UYs~;9R813J#YdEs!E@5TOGi^gskS)qx3c(i6!@EC!cI@t}~7hXkY< zC=CjM3l=U$7I5eYG4U|*F|sgKNrFQJn=Va8KTR%B>6Dk4n;IW~iz_}pH$SB`2gK%y zk1s4u%z?-h$$}iB2qKh0ger(o0}= 0xD800 and ord(data[0]) <= 0xDBFF and + ord(data[1]) >= 0xDC00 and ord(data[1]) <= 0xDFFF) + + +def surrogatePairToCodepoint(data): + char_val = (0x10000 + (ord(data[0]) - 0xD800) * 0x400 + + (ord(data[1]) - 0xDC00)) + return char_val + +# Module Factory Factory (no, this isn't Java, I know) +# Here to stop this being duplicated all over the place. + + +def moduleFactoryFactory(factory): + moduleCache = {} + + def moduleFactory(baseModule, *args, **kwargs): + if isinstance(ModuleType.__name__, type("")): + name = "_%s_factory" % baseModule.__name__ + else: + name = b"_%s_factory" % baseModule.__name__ + + kwargs_tuple = tuple(kwargs.items()) + + try: + return moduleCache[name][args][kwargs_tuple] + except KeyError: + mod = ModuleType(name) + objs = factory(baseModule, *args, **kwargs) + mod.__dict__.update(objs) + if "name" not in moduleCache: + moduleCache[name] = {} + if "args" not in moduleCache[name]: + moduleCache[name][args] = {} + if "kwargs" not in moduleCache[name][args]: + moduleCache[name][args][kwargs_tuple] = {} + moduleCache[name][args][kwargs_tuple] = mod + return mod + + return moduleFactory + + +def memoize(func): + cache = {} + + def wrapped(*args, **kwargs): + key = (tuple(args), tuple(kwargs.items())) + if key not in cache: + cache[key] = func(*args, **kwargs) + return cache[key] + + return wrapped diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/constants.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/constants.py new file mode 100644 index 0000000..14eb656 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/constants.py @@ -0,0 +1,2946 @@ +from __future__ import absolute_import, division, unicode_literals + +import string + +EOF = None + +E = { + "null-character": + "Null character in input stream, replaced with U+FFFD.", + "invalid-codepoint": + "Invalid codepoint in stream.", + "incorrectly-placed-solidus": + "Solidus (/) incorrectly placed in tag.", + "incorrect-cr-newline-entity": + "Incorrect CR newline entity, replaced with LF.", + "illegal-windows-1252-entity": + "Entity used with illegal number (windows-1252 reference).", + "cant-convert-numeric-entity": + "Numeric entity couldn't be converted to character " + "(codepoint U+%(charAsInt)08x).", + "illegal-codepoint-for-numeric-entity": + "Numeric entity represents an illegal codepoint: " + "U+%(charAsInt)08x.", + "numeric-entity-without-semicolon": + "Numeric entity didn't end with ';'.", + "expected-numeric-entity-but-got-eof": + "Numeric entity expected. Got end of file instead.", + "expected-numeric-entity": + "Numeric entity expected but none found.", + "named-entity-without-semicolon": + "Named entity didn't end with ';'.", + "expected-named-entity": + "Named entity expected. Got none.", + "attributes-in-end-tag": + "End tag contains unexpected attributes.", + 'self-closing-flag-on-end-tag': + "End tag contains unexpected self-closing flag.", + "expected-tag-name-but-got-right-bracket": + "Expected tag name. Got '>' instead.", + "expected-tag-name-but-got-question-mark": + "Expected tag name. Got '?' instead. (HTML doesn't " + "support processing instructions.)", + "expected-tag-name": + "Expected tag name. Got something else instead", + "expected-closing-tag-but-got-right-bracket": + "Expected closing tag. Got '>' instead. Ignoring ''.", + "expected-closing-tag-but-got-eof": + "Expected closing tag. Unexpected end of file.", + "expected-closing-tag-but-got-char": + "Expected closing tag. Unexpected character '%(data)s' found.", + "eof-in-tag-name": + "Unexpected end of file in the tag name.", + "expected-attribute-name-but-got-eof": + "Unexpected end of file. Expected attribute name instead.", + "eof-in-attribute-name": + "Unexpected end of file in attribute name.", + "invalid-character-in-attribute-name": + "Invalid character in attribute name", + "duplicate-attribute": + "Dropped duplicate attribute on tag.", + "expected-end-of-tag-name-but-got-eof": + "Unexpected end of file. Expected = or end of tag.", + "expected-attribute-value-but-got-eof": + "Unexpected end of file. Expected attribute value.", + "expected-attribute-value-but-got-right-bracket": + "Expected attribute value. Got '>' instead.", + 'equals-in-unquoted-attribute-value': + "Unexpected = in unquoted attribute", + 'unexpected-character-in-unquoted-attribute-value': + "Unexpected character in unquoted attribute", + "invalid-character-after-attribute-name": + "Unexpected character after attribute name.", + "unexpected-character-after-attribute-value": + "Unexpected character after attribute value.", + "eof-in-attribute-value-double-quote": + "Unexpected end of file in attribute value (\").", + "eof-in-attribute-value-single-quote": + "Unexpected end of file in attribute value (').", + "eof-in-attribute-value-no-quotes": + "Unexpected end of file in attribute value.", + "unexpected-EOF-after-solidus-in-tag": + "Unexpected end of file in tag. Expected >", + "unexpected-character-after-solidus-in-tag": + "Unexpected character after / in tag. Expected >", + "expected-dashes-or-doctype": + "Expected '--' or 'DOCTYPE'. Not found.", + "unexpected-bang-after-double-dash-in-comment": + "Unexpected ! after -- in comment", + "unexpected-space-after-double-dash-in-comment": + "Unexpected space after -- in comment", + "incorrect-comment": + "Incorrect comment.", + "eof-in-comment": + "Unexpected end of file in comment.", + "eof-in-comment-end-dash": + "Unexpected end of file in comment (-)", + "unexpected-dash-after-double-dash-in-comment": + "Unexpected '-' after '--' found in comment.", + "eof-in-comment-double-dash": + "Unexpected end of file in comment (--).", + "eof-in-comment-end-space-state": + "Unexpected end of file in comment.", + "eof-in-comment-end-bang-state": + "Unexpected end of file in comment.", + "unexpected-char-in-comment": + "Unexpected character in comment found.", + "need-space-after-doctype": + "No space after literal string 'DOCTYPE'.", + "expected-doctype-name-but-got-right-bracket": + "Unexpected > character. Expected DOCTYPE name.", + "expected-doctype-name-but-got-eof": + "Unexpected end of file. Expected DOCTYPE name.", + "eof-in-doctype-name": + "Unexpected end of file in DOCTYPE name.", + "eof-in-doctype": + "Unexpected end of file in DOCTYPE.", + "expected-space-or-right-bracket-in-doctype": + "Expected space or '>'. Got '%(data)s'", + "unexpected-end-of-doctype": + "Unexpected end of DOCTYPE.", + "unexpected-char-in-doctype": + "Unexpected character in DOCTYPE.", + "eof-in-innerhtml": + "XXX innerHTML EOF", + "unexpected-doctype": + "Unexpected DOCTYPE. Ignored.", + "non-html-root": + "html needs to be the first start tag.", + "expected-doctype-but-got-eof": + "Unexpected End of file. Expected DOCTYPE.", + "unknown-doctype": + "Erroneous DOCTYPE.", + "expected-doctype-but-got-chars": + "Unexpected non-space characters. Expected DOCTYPE.", + "expected-doctype-but-got-start-tag": + "Unexpected start tag (%(name)s). Expected DOCTYPE.", + "expected-doctype-but-got-end-tag": + "Unexpected end tag (%(name)s). Expected DOCTYPE.", + "end-tag-after-implied-root": + "Unexpected end tag (%(name)s) after the (implied) root element.", + "expected-named-closing-tag-but-got-eof": + "Unexpected end of file. Expected end tag (%(name)s).", + "two-heads-are-not-better-than-one": + "Unexpected start tag head in existing head. Ignored.", + "unexpected-end-tag": + "Unexpected end tag (%(name)s). Ignored.", + "unexpected-start-tag-out-of-my-head": + "Unexpected start tag (%(name)s) that can be in head. Moved.", + "unexpected-start-tag": + "Unexpected start tag (%(name)s).", + "missing-end-tag": + "Missing end tag (%(name)s).", + "missing-end-tags": + "Missing end tags (%(name)s).", + "unexpected-start-tag-implies-end-tag": + "Unexpected start tag (%(startName)s) " + "implies end tag (%(endName)s).", + "unexpected-start-tag-treated-as": + "Unexpected start tag (%(originalName)s). Treated as %(newName)s.", + "deprecated-tag": + "Unexpected start tag %(name)s. Don't use it!", + "unexpected-start-tag-ignored": + "Unexpected start tag %(name)s. Ignored.", + "expected-one-end-tag-but-got-another": + "Unexpected end tag (%(gotName)s). " + "Missing end tag (%(expectedName)s).", + "end-tag-too-early": + "End tag (%(name)s) seen too early. Expected other end tag.", + "end-tag-too-early-named": + "Unexpected end tag (%(gotName)s). Expected end tag (%(expectedName)s).", + "end-tag-too-early-ignored": + "End tag (%(name)s) seen too early. Ignored.", + "adoption-agency-1.1": + "End tag (%(name)s) violates step 1, " + "paragraph 1 of the adoption agency algorithm.", + "adoption-agency-1.2": + "End tag (%(name)s) violates step 1, " + "paragraph 2 of the adoption agency algorithm.", + "adoption-agency-1.3": + "End tag (%(name)s) violates step 1, " + "paragraph 3 of the adoption agency algorithm.", + "adoption-agency-4.4": + "End tag (%(name)s) violates step 4, " + "paragraph 4 of the adoption agency algorithm.", + "unexpected-end-tag-treated-as": + "Unexpected end tag (%(originalName)s). Treated as %(newName)s.", + "no-end-tag": + "This element (%(name)s) has no end tag.", + "unexpected-implied-end-tag-in-table": + "Unexpected implied end tag (%(name)s) in the table phase.", + "unexpected-implied-end-tag-in-table-body": + "Unexpected implied end tag (%(name)s) in the table body phase.", + "unexpected-char-implies-table-voodoo": + "Unexpected non-space characters in " + "table context caused voodoo mode.", + "unexpected-hidden-input-in-table": + "Unexpected input with type hidden in table context.", + "unexpected-form-in-table": + "Unexpected form in table context.", + "unexpected-start-tag-implies-table-voodoo": + "Unexpected start tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-end-tag-implies-table-voodoo": + "Unexpected end tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-cell-in-table-body": + "Unexpected table cell start tag (%(name)s) " + "in the table body phase.", + "unexpected-cell-end-tag": + "Got table cell end tag (%(name)s) " + "while required end tags are missing.", + "unexpected-end-tag-in-table-body": + "Unexpected end tag (%(name)s) in the table body phase. Ignored.", + "unexpected-implied-end-tag-in-table-row": + "Unexpected implied end tag (%(name)s) in the table row phase.", + "unexpected-end-tag-in-table-row": + "Unexpected end tag (%(name)s) in the table row phase. Ignored.", + "unexpected-select-in-select": + "Unexpected select start tag in the select phase " + "treated as select end tag.", + "unexpected-input-in-select": + "Unexpected input start tag in the select phase.", + "unexpected-start-tag-in-select": + "Unexpected start tag token (%(name)s in the select phase. " + "Ignored.", + "unexpected-end-tag-in-select": + "Unexpected end tag (%(name)s) in the select phase. Ignored.", + "unexpected-table-element-start-tag-in-select-in-table": + "Unexpected table element start tag (%(name)s) in the select in table phase.", + "unexpected-table-element-end-tag-in-select-in-table": + "Unexpected table element end tag (%(name)s) in the select in table phase.", + "unexpected-char-after-body": + "Unexpected non-space characters in the after body phase.", + "unexpected-start-tag-after-body": + "Unexpected start tag token (%(name)s)" + " in the after body phase.", + "unexpected-end-tag-after-body": + "Unexpected end tag token (%(name)s)" + " in the after body phase.", + "unexpected-char-in-frameset": + "Unexpected characters in the frameset phase. Characters ignored.", + "unexpected-start-tag-in-frameset": + "Unexpected start tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-frameset-in-frameset-innerhtml": + "Unexpected end tag token (frameset) " + "in the frameset phase (innerHTML).", + "unexpected-end-tag-in-frameset": + "Unexpected end tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-char-after-frameset": + "Unexpected non-space characters in the " + "after frameset phase. Ignored.", + "unexpected-start-tag-after-frameset": + "Unexpected start tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-frameset": + "Unexpected end tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-body-innerhtml": + "Unexpected end tag after body(innerHtml)", + "expected-eof-but-got-char": + "Unexpected non-space characters. Expected end of file.", + "expected-eof-but-got-start-tag": + "Unexpected start tag (%(name)s)" + ". Expected end of file.", + "expected-eof-but-got-end-tag": + "Unexpected end tag (%(name)s)" + ". Expected end of file.", + "eof-in-table": + "Unexpected end of file. Expected table content.", + "eof-in-select": + "Unexpected end of file. Expected select content.", + "eof-in-frameset": + "Unexpected end of file. Expected frameset content.", + "eof-in-script-in-script": + "Unexpected end of file. Expected script content.", + "eof-in-foreign-lands": + "Unexpected end of file. Expected foreign content", + "non-void-element-with-trailing-solidus": + "Trailing solidus not allowed on element %(name)s", + "unexpected-html-element-in-foreign-content": + "Element %(name)s not allowed in a non-html context", + "unexpected-end-tag-before-html": + "Unexpected end tag (%(name)s) before html.", + "unexpected-inhead-noscript-tag": + "Element %(name)s not allowed in a inhead-noscript context", + "eof-in-head-noscript": + "Unexpected end of file. Expected inhead-noscript content", + "char-in-head-noscript": + "Unexpected non-space character. Expected inhead-noscript content", + "XXX-undefined-error": + "Undefined error (this sucks and should be fixed)", +} + +namespaces = { + "html": "http://www.w3.org/1999/xhtml", + "mathml": "http://www.w3.org/1998/Math/MathML", + "svg": "http://www.w3.org/2000/svg", + "xlink": "http://www.w3.org/1999/xlink", + "xml": "http://www.w3.org/XML/1998/namespace", + "xmlns": "http://www.w3.org/2000/xmlns/" +} + +scopingElements = frozenset([ + (namespaces["html"], "applet"), + (namespaces["html"], "caption"), + (namespaces["html"], "html"), + (namespaces["html"], "marquee"), + (namespaces["html"], "object"), + (namespaces["html"], "table"), + (namespaces["html"], "td"), + (namespaces["html"], "th"), + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext"), + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title"), +]) + +formattingElements = frozenset([ + (namespaces["html"], "a"), + (namespaces["html"], "b"), + (namespaces["html"], "big"), + (namespaces["html"], "code"), + (namespaces["html"], "em"), + (namespaces["html"], "font"), + (namespaces["html"], "i"), + (namespaces["html"], "nobr"), + (namespaces["html"], "s"), + (namespaces["html"], "small"), + (namespaces["html"], "strike"), + (namespaces["html"], "strong"), + (namespaces["html"], "tt"), + (namespaces["html"], "u") +]) + +specialElements = frozenset([ + (namespaces["html"], "address"), + (namespaces["html"], "applet"), + (namespaces["html"], "area"), + (namespaces["html"], "article"), + (namespaces["html"], "aside"), + (namespaces["html"], "base"), + (namespaces["html"], "basefont"), + (namespaces["html"], "bgsound"), + (namespaces["html"], "blockquote"), + (namespaces["html"], "body"), + (namespaces["html"], "br"), + (namespaces["html"], "button"), + (namespaces["html"], "caption"), + (namespaces["html"], "center"), + (namespaces["html"], "col"), + (namespaces["html"], "colgroup"), + (namespaces["html"], "command"), + (namespaces["html"], "dd"), + (namespaces["html"], "details"), + (namespaces["html"], "dir"), + (namespaces["html"], "div"), + (namespaces["html"], "dl"), + (namespaces["html"], "dt"), + (namespaces["html"], "embed"), + (namespaces["html"], "fieldset"), + (namespaces["html"], "figure"), + (namespaces["html"], "footer"), + (namespaces["html"], "form"), + (namespaces["html"], "frame"), + (namespaces["html"], "frameset"), + (namespaces["html"], "h1"), + (namespaces["html"], "h2"), + (namespaces["html"], "h3"), + (namespaces["html"], "h4"), + (namespaces["html"], "h5"), + (namespaces["html"], "h6"), + (namespaces["html"], "head"), + (namespaces["html"], "header"), + (namespaces["html"], "hr"), + (namespaces["html"], "html"), + (namespaces["html"], "iframe"), + # Note that image is commented out in the spec as "this isn't an + # element that can end up on the stack, so it doesn't matter," + (namespaces["html"], "image"), + (namespaces["html"], "img"), + (namespaces["html"], "input"), + (namespaces["html"], "isindex"), + (namespaces["html"], "li"), + (namespaces["html"], "link"), + (namespaces["html"], "listing"), + (namespaces["html"], "marquee"), + (namespaces["html"], "menu"), + (namespaces["html"], "meta"), + (namespaces["html"], "nav"), + (namespaces["html"], "noembed"), + (namespaces["html"], "noframes"), + (namespaces["html"], "noscript"), + (namespaces["html"], "object"), + (namespaces["html"], "ol"), + (namespaces["html"], "p"), + (namespaces["html"], "param"), + (namespaces["html"], "plaintext"), + (namespaces["html"], "pre"), + (namespaces["html"], "script"), + (namespaces["html"], "section"), + (namespaces["html"], "select"), + (namespaces["html"], "style"), + (namespaces["html"], "table"), + (namespaces["html"], "tbody"), + (namespaces["html"], "td"), + (namespaces["html"], "textarea"), + (namespaces["html"], "tfoot"), + (namespaces["html"], "th"), + (namespaces["html"], "thead"), + (namespaces["html"], "title"), + (namespaces["html"], "tr"), + (namespaces["html"], "ul"), + (namespaces["html"], "wbr"), + (namespaces["html"], "xmp"), + (namespaces["svg"], "foreignObject") +]) + +htmlIntegrationPointElements = frozenset([ + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title") +]) + +mathmlTextIntegrationPointElements = frozenset([ + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext") +]) + +adjustSVGAttributes = { + "attributename": "attributeName", + "attributetype": "attributeType", + "basefrequency": "baseFrequency", + "baseprofile": "baseProfile", + "calcmode": "calcMode", + "clippathunits": "clipPathUnits", + "contentscripttype": "contentScriptType", + "contentstyletype": "contentStyleType", + "diffuseconstant": "diffuseConstant", + "edgemode": "edgeMode", + "externalresourcesrequired": "externalResourcesRequired", + "filterres": "filterRes", + "filterunits": "filterUnits", + "glyphref": "glyphRef", + "gradienttransform": "gradientTransform", + "gradientunits": "gradientUnits", + "kernelmatrix": "kernelMatrix", + "kernelunitlength": "kernelUnitLength", + "keypoints": "keyPoints", + "keysplines": "keySplines", + "keytimes": "keyTimes", + "lengthadjust": "lengthAdjust", + "limitingconeangle": "limitingConeAngle", + "markerheight": "markerHeight", + "markerunits": "markerUnits", + "markerwidth": "markerWidth", + "maskcontentunits": "maskContentUnits", + "maskunits": "maskUnits", + "numoctaves": "numOctaves", + "pathlength": "pathLength", + "patterncontentunits": "patternContentUnits", + "patterntransform": "patternTransform", + "patternunits": "patternUnits", + "pointsatx": "pointsAtX", + "pointsaty": "pointsAtY", + "pointsatz": "pointsAtZ", + "preservealpha": "preserveAlpha", + "preserveaspectratio": "preserveAspectRatio", + "primitiveunits": "primitiveUnits", + "refx": "refX", + "refy": "refY", + "repeatcount": "repeatCount", + "repeatdur": "repeatDur", + "requiredextensions": "requiredExtensions", + "requiredfeatures": "requiredFeatures", + "specularconstant": "specularConstant", + "specularexponent": "specularExponent", + "spreadmethod": "spreadMethod", + "startoffset": "startOffset", + "stddeviation": "stdDeviation", + "stitchtiles": "stitchTiles", + "surfacescale": "surfaceScale", + "systemlanguage": "systemLanguage", + "tablevalues": "tableValues", + "targetx": "targetX", + "targety": "targetY", + "textlength": "textLength", + "viewbox": "viewBox", + "viewtarget": "viewTarget", + "xchannelselector": "xChannelSelector", + "ychannelselector": "yChannelSelector", + "zoomandpan": "zoomAndPan" +} + +adjustMathMLAttributes = {"definitionurl": "definitionURL"} + +adjustForeignAttributes = { + "xlink:actuate": ("xlink", "actuate", namespaces["xlink"]), + "xlink:arcrole": ("xlink", "arcrole", namespaces["xlink"]), + "xlink:href": ("xlink", "href", namespaces["xlink"]), + "xlink:role": ("xlink", "role", namespaces["xlink"]), + "xlink:show": ("xlink", "show", namespaces["xlink"]), + "xlink:title": ("xlink", "title", namespaces["xlink"]), + "xlink:type": ("xlink", "type", namespaces["xlink"]), + "xml:base": ("xml", "base", namespaces["xml"]), + "xml:lang": ("xml", "lang", namespaces["xml"]), + "xml:space": ("xml", "space", namespaces["xml"]), + "xmlns": (None, "xmlns", namespaces["xmlns"]), + "xmlns:xlink": ("xmlns", "xlink", namespaces["xmlns"]) +} + +unadjustForeignAttributes = {(ns, local): qname for qname, (prefix, local, ns) in + adjustForeignAttributes.items()} + +spaceCharacters = frozenset([ + "\t", + "\n", + "\u000C", + " ", + "\r" +]) + +tableInsertModeElements = frozenset([ + "table", + "tbody", + "tfoot", + "thead", + "tr" +]) + +asciiLowercase = frozenset(string.ascii_lowercase) +asciiUppercase = frozenset(string.ascii_uppercase) +asciiLetters = frozenset(string.ascii_letters) +digits = frozenset(string.digits) +hexDigits = frozenset(string.hexdigits) + +asciiUpper2Lower = {ord(c): ord(c.lower()) for c in string.ascii_uppercase} + +# Heading elements need to be ordered +headingElements = ( + "h1", + "h2", + "h3", + "h4", + "h5", + "h6" +) + +voidElements = frozenset([ + "base", + "command", + "event-source", + "link", + "meta", + "hr", + "br", + "img", + "embed", + "param", + "area", + "col", + "input", + "source", + "track" +]) + +cdataElements = frozenset(['title', 'textarea']) + +rcdataElements = frozenset([ + 'style', + 'script', + 'xmp', + 'iframe', + 'noembed', + 'noframes', + 'noscript' +]) + +booleanAttributes = { + "": frozenset(["irrelevant", "itemscope"]), + "style": frozenset(["scoped"]), + "img": frozenset(["ismap"]), + "audio": frozenset(["autoplay", "controls"]), + "video": frozenset(["autoplay", "controls"]), + "script": frozenset(["defer", "async"]), + "details": frozenset(["open"]), + "datagrid": frozenset(["multiple", "disabled"]), + "command": frozenset(["hidden", "disabled", "checked", "default"]), + "hr": frozenset(["noshade"]), + "menu": frozenset(["autosubmit"]), + "fieldset": frozenset(["disabled", "readonly"]), + "option": frozenset(["disabled", "readonly", "selected"]), + "optgroup": frozenset(["disabled", "readonly"]), + "button": frozenset(["disabled", "autofocus"]), + "input": frozenset(["disabled", "readonly", "required", "autofocus", "checked", "ismap"]), + "select": frozenset(["disabled", "readonly", "autofocus", "multiple"]), + "output": frozenset(["disabled", "readonly"]), + "iframe": frozenset(["seamless"]), +} + +# entitiesWindows1252 has to be _ordered_ and needs to have an index. It +# therefore can't be a frozenset. +entitiesWindows1252 = ( + 8364, # 0x80 0x20AC EURO SIGN + 65533, # 0x81 UNDEFINED + 8218, # 0x82 0x201A SINGLE LOW-9 QUOTATION MARK + 402, # 0x83 0x0192 LATIN SMALL LETTER F WITH HOOK + 8222, # 0x84 0x201E DOUBLE LOW-9 QUOTATION MARK + 8230, # 0x85 0x2026 HORIZONTAL ELLIPSIS + 8224, # 0x86 0x2020 DAGGER + 8225, # 0x87 0x2021 DOUBLE DAGGER + 710, # 0x88 0x02C6 MODIFIER LETTER CIRCUMFLEX ACCENT + 8240, # 0x89 0x2030 PER MILLE SIGN + 352, # 0x8A 0x0160 LATIN CAPITAL LETTER S WITH CARON + 8249, # 0x8B 0x2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 338, # 0x8C 0x0152 LATIN CAPITAL LIGATURE OE + 65533, # 0x8D UNDEFINED + 381, # 0x8E 0x017D LATIN CAPITAL LETTER Z WITH CARON + 65533, # 0x8F UNDEFINED + 65533, # 0x90 UNDEFINED + 8216, # 0x91 0x2018 LEFT SINGLE QUOTATION MARK + 8217, # 0x92 0x2019 RIGHT SINGLE QUOTATION MARK + 8220, # 0x93 0x201C LEFT DOUBLE QUOTATION MARK + 8221, # 0x94 0x201D RIGHT DOUBLE QUOTATION MARK + 8226, # 0x95 0x2022 BULLET + 8211, # 0x96 0x2013 EN DASH + 8212, # 0x97 0x2014 EM DASH + 732, # 0x98 0x02DC SMALL TILDE + 8482, # 0x99 0x2122 TRADE MARK SIGN + 353, # 0x9A 0x0161 LATIN SMALL LETTER S WITH CARON + 8250, # 0x9B 0x203A SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 339, # 0x9C 0x0153 LATIN SMALL LIGATURE OE + 65533, # 0x9D UNDEFINED + 382, # 0x9E 0x017E LATIN SMALL LETTER Z WITH CARON + 376 # 0x9F 0x0178 LATIN CAPITAL LETTER Y WITH DIAERESIS +) + +xmlEntities = frozenset(['lt;', 'gt;', 'amp;', 'apos;', 'quot;']) + +entities = { + "AElig": "\xc6", + "AElig;": "\xc6", + "AMP": "&", + "AMP;": "&", + "Aacute": "\xc1", + "Aacute;": "\xc1", + "Abreve;": "\u0102", + "Acirc": "\xc2", + "Acirc;": "\xc2", + "Acy;": "\u0410", + "Afr;": "\U0001d504", + "Agrave": "\xc0", + "Agrave;": "\xc0", + "Alpha;": "\u0391", + "Amacr;": "\u0100", + "And;": "\u2a53", + "Aogon;": "\u0104", + "Aopf;": "\U0001d538", + "ApplyFunction;": "\u2061", + "Aring": "\xc5", + "Aring;": "\xc5", + "Ascr;": "\U0001d49c", + "Assign;": "\u2254", + "Atilde": "\xc3", + "Atilde;": "\xc3", + "Auml": "\xc4", + "Auml;": "\xc4", + "Backslash;": "\u2216", + "Barv;": "\u2ae7", + "Barwed;": "\u2306", + "Bcy;": "\u0411", + "Because;": "\u2235", + "Bernoullis;": "\u212c", + "Beta;": "\u0392", + "Bfr;": "\U0001d505", + "Bopf;": "\U0001d539", + "Breve;": "\u02d8", + "Bscr;": "\u212c", + "Bumpeq;": "\u224e", + "CHcy;": "\u0427", + "COPY": "\xa9", + "COPY;": "\xa9", + "Cacute;": "\u0106", + "Cap;": "\u22d2", + "CapitalDifferentialD;": "\u2145", + "Cayleys;": "\u212d", + "Ccaron;": "\u010c", + "Ccedil": "\xc7", + "Ccedil;": "\xc7", + "Ccirc;": "\u0108", + "Cconint;": "\u2230", + "Cdot;": "\u010a", + "Cedilla;": "\xb8", + "CenterDot;": "\xb7", + "Cfr;": "\u212d", + "Chi;": "\u03a7", + "CircleDot;": "\u2299", + "CircleMinus;": "\u2296", + "CirclePlus;": "\u2295", + "CircleTimes;": "\u2297", + "ClockwiseContourIntegral;": "\u2232", + "CloseCurlyDoubleQuote;": "\u201d", + "CloseCurlyQuote;": "\u2019", + "Colon;": "\u2237", + "Colone;": "\u2a74", + "Congruent;": "\u2261", + "Conint;": "\u222f", + "ContourIntegral;": "\u222e", + "Copf;": "\u2102", + "Coproduct;": "\u2210", + "CounterClockwiseContourIntegral;": "\u2233", + "Cross;": "\u2a2f", + "Cscr;": "\U0001d49e", + "Cup;": "\u22d3", + "CupCap;": "\u224d", + "DD;": "\u2145", + "DDotrahd;": "\u2911", + "DJcy;": "\u0402", + "DScy;": "\u0405", + "DZcy;": "\u040f", + "Dagger;": "\u2021", + "Darr;": "\u21a1", + "Dashv;": "\u2ae4", + "Dcaron;": "\u010e", + "Dcy;": "\u0414", + "Del;": "\u2207", + "Delta;": "\u0394", + "Dfr;": "\U0001d507", + "DiacriticalAcute;": "\xb4", + "DiacriticalDot;": "\u02d9", + "DiacriticalDoubleAcute;": "\u02dd", + "DiacriticalGrave;": "`", + "DiacriticalTilde;": "\u02dc", + "Diamond;": "\u22c4", + "DifferentialD;": "\u2146", + "Dopf;": "\U0001d53b", + "Dot;": "\xa8", + "DotDot;": "\u20dc", + "DotEqual;": "\u2250", + "DoubleContourIntegral;": "\u222f", + "DoubleDot;": "\xa8", + "DoubleDownArrow;": "\u21d3", + "DoubleLeftArrow;": "\u21d0", + "DoubleLeftRightArrow;": "\u21d4", + "DoubleLeftTee;": "\u2ae4", + "DoubleLongLeftArrow;": "\u27f8", + "DoubleLongLeftRightArrow;": "\u27fa", + "DoubleLongRightArrow;": "\u27f9", + "DoubleRightArrow;": "\u21d2", + "DoubleRightTee;": "\u22a8", + "DoubleUpArrow;": "\u21d1", + "DoubleUpDownArrow;": "\u21d5", + "DoubleVerticalBar;": "\u2225", + "DownArrow;": "\u2193", + "DownArrowBar;": "\u2913", + "DownArrowUpArrow;": "\u21f5", + "DownBreve;": "\u0311", + "DownLeftRightVector;": "\u2950", + "DownLeftTeeVector;": "\u295e", + "DownLeftVector;": "\u21bd", + "DownLeftVectorBar;": "\u2956", + "DownRightTeeVector;": "\u295f", + "DownRightVector;": "\u21c1", + "DownRightVectorBar;": "\u2957", + "DownTee;": "\u22a4", + "DownTeeArrow;": "\u21a7", + "Downarrow;": "\u21d3", + "Dscr;": "\U0001d49f", + "Dstrok;": "\u0110", + "ENG;": "\u014a", + "ETH": "\xd0", + "ETH;": "\xd0", + "Eacute": "\xc9", + "Eacute;": "\xc9", + "Ecaron;": "\u011a", + "Ecirc": "\xca", + "Ecirc;": "\xca", + "Ecy;": "\u042d", + "Edot;": "\u0116", + "Efr;": "\U0001d508", + "Egrave": "\xc8", + "Egrave;": "\xc8", + "Element;": "\u2208", + "Emacr;": "\u0112", + "EmptySmallSquare;": "\u25fb", + "EmptyVerySmallSquare;": "\u25ab", + "Eogon;": "\u0118", + "Eopf;": "\U0001d53c", + "Epsilon;": "\u0395", + "Equal;": "\u2a75", + "EqualTilde;": "\u2242", + "Equilibrium;": "\u21cc", + "Escr;": "\u2130", + "Esim;": "\u2a73", + "Eta;": "\u0397", + "Euml": "\xcb", + "Euml;": "\xcb", + "Exists;": "\u2203", + "ExponentialE;": "\u2147", + "Fcy;": "\u0424", + "Ffr;": "\U0001d509", + "FilledSmallSquare;": "\u25fc", + "FilledVerySmallSquare;": "\u25aa", + "Fopf;": "\U0001d53d", + "ForAll;": "\u2200", + "Fouriertrf;": "\u2131", + "Fscr;": "\u2131", + "GJcy;": "\u0403", + "GT": ">", + "GT;": ">", + "Gamma;": "\u0393", + "Gammad;": "\u03dc", + "Gbreve;": "\u011e", + "Gcedil;": "\u0122", + "Gcirc;": "\u011c", + "Gcy;": "\u0413", + "Gdot;": "\u0120", + "Gfr;": "\U0001d50a", + "Gg;": "\u22d9", + "Gopf;": "\U0001d53e", + "GreaterEqual;": "\u2265", + "GreaterEqualLess;": "\u22db", + "GreaterFullEqual;": "\u2267", + "GreaterGreater;": "\u2aa2", + "GreaterLess;": "\u2277", + "GreaterSlantEqual;": "\u2a7e", + "GreaterTilde;": "\u2273", + "Gscr;": "\U0001d4a2", + "Gt;": "\u226b", + "HARDcy;": "\u042a", + "Hacek;": "\u02c7", + "Hat;": "^", + "Hcirc;": "\u0124", + "Hfr;": "\u210c", + "HilbertSpace;": "\u210b", + "Hopf;": "\u210d", + "HorizontalLine;": "\u2500", + "Hscr;": "\u210b", + "Hstrok;": "\u0126", + "HumpDownHump;": "\u224e", + "HumpEqual;": "\u224f", + "IEcy;": "\u0415", + "IJlig;": "\u0132", + "IOcy;": "\u0401", + "Iacute": "\xcd", + "Iacute;": "\xcd", + "Icirc": "\xce", + "Icirc;": "\xce", + "Icy;": "\u0418", + "Idot;": "\u0130", + "Ifr;": "\u2111", + "Igrave": "\xcc", + "Igrave;": "\xcc", + "Im;": "\u2111", + "Imacr;": "\u012a", + "ImaginaryI;": "\u2148", + "Implies;": "\u21d2", + "Int;": "\u222c", + "Integral;": "\u222b", + "Intersection;": "\u22c2", + "InvisibleComma;": "\u2063", + "InvisibleTimes;": "\u2062", + "Iogon;": "\u012e", + "Iopf;": "\U0001d540", + "Iota;": "\u0399", + "Iscr;": "\u2110", + "Itilde;": "\u0128", + "Iukcy;": "\u0406", + "Iuml": "\xcf", + "Iuml;": "\xcf", + "Jcirc;": "\u0134", + "Jcy;": "\u0419", + "Jfr;": "\U0001d50d", + "Jopf;": "\U0001d541", + "Jscr;": "\U0001d4a5", + "Jsercy;": "\u0408", + "Jukcy;": "\u0404", + "KHcy;": "\u0425", + "KJcy;": "\u040c", + "Kappa;": "\u039a", + "Kcedil;": "\u0136", + "Kcy;": "\u041a", + "Kfr;": "\U0001d50e", + "Kopf;": "\U0001d542", + "Kscr;": "\U0001d4a6", + "LJcy;": "\u0409", + "LT": "<", + "LT;": "<", + "Lacute;": "\u0139", + "Lambda;": "\u039b", + "Lang;": "\u27ea", + "Laplacetrf;": "\u2112", + "Larr;": "\u219e", + "Lcaron;": "\u013d", + "Lcedil;": "\u013b", + "Lcy;": "\u041b", + "LeftAngleBracket;": "\u27e8", + "LeftArrow;": "\u2190", + "LeftArrowBar;": "\u21e4", + "LeftArrowRightArrow;": "\u21c6", + "LeftCeiling;": "\u2308", + "LeftDoubleBracket;": "\u27e6", + "LeftDownTeeVector;": "\u2961", + "LeftDownVector;": "\u21c3", + "LeftDownVectorBar;": "\u2959", + "LeftFloor;": "\u230a", + "LeftRightArrow;": "\u2194", + "LeftRightVector;": "\u294e", + "LeftTee;": "\u22a3", + "LeftTeeArrow;": "\u21a4", + "LeftTeeVector;": "\u295a", + "LeftTriangle;": "\u22b2", + "LeftTriangleBar;": "\u29cf", + "LeftTriangleEqual;": "\u22b4", + "LeftUpDownVector;": "\u2951", + "LeftUpTeeVector;": "\u2960", + "LeftUpVector;": "\u21bf", + "LeftUpVectorBar;": "\u2958", + "LeftVector;": "\u21bc", + "LeftVectorBar;": "\u2952", + "Leftarrow;": "\u21d0", + "Leftrightarrow;": "\u21d4", + "LessEqualGreater;": "\u22da", + "LessFullEqual;": "\u2266", + "LessGreater;": "\u2276", + "LessLess;": "\u2aa1", + "LessSlantEqual;": "\u2a7d", + "LessTilde;": "\u2272", + "Lfr;": "\U0001d50f", + "Ll;": "\u22d8", + "Lleftarrow;": "\u21da", + "Lmidot;": "\u013f", + "LongLeftArrow;": "\u27f5", + "LongLeftRightArrow;": "\u27f7", + "LongRightArrow;": "\u27f6", + "Longleftarrow;": "\u27f8", + "Longleftrightarrow;": "\u27fa", + "Longrightarrow;": "\u27f9", + "Lopf;": "\U0001d543", + "LowerLeftArrow;": "\u2199", + "LowerRightArrow;": "\u2198", + "Lscr;": "\u2112", + "Lsh;": "\u21b0", + "Lstrok;": "\u0141", + "Lt;": "\u226a", + "Map;": "\u2905", + "Mcy;": "\u041c", + "MediumSpace;": "\u205f", + "Mellintrf;": "\u2133", + "Mfr;": "\U0001d510", + "MinusPlus;": "\u2213", + "Mopf;": "\U0001d544", + "Mscr;": "\u2133", + "Mu;": "\u039c", + "NJcy;": "\u040a", + "Nacute;": "\u0143", + "Ncaron;": "\u0147", + "Ncedil;": "\u0145", + "Ncy;": "\u041d", + "NegativeMediumSpace;": "\u200b", + "NegativeThickSpace;": "\u200b", + "NegativeThinSpace;": "\u200b", + "NegativeVeryThinSpace;": "\u200b", + "NestedGreaterGreater;": "\u226b", + "NestedLessLess;": "\u226a", + "NewLine;": "\n", + "Nfr;": "\U0001d511", + "NoBreak;": "\u2060", + "NonBreakingSpace;": "\xa0", + "Nopf;": "\u2115", + "Not;": "\u2aec", + "NotCongruent;": "\u2262", + "NotCupCap;": "\u226d", + "NotDoubleVerticalBar;": "\u2226", + "NotElement;": "\u2209", + "NotEqual;": "\u2260", + "NotEqualTilde;": "\u2242\u0338", + "NotExists;": "\u2204", + "NotGreater;": "\u226f", + "NotGreaterEqual;": "\u2271", + "NotGreaterFullEqual;": "\u2267\u0338", + "NotGreaterGreater;": "\u226b\u0338", + "NotGreaterLess;": "\u2279", + "NotGreaterSlantEqual;": "\u2a7e\u0338", + "NotGreaterTilde;": "\u2275", + "NotHumpDownHump;": "\u224e\u0338", + "NotHumpEqual;": "\u224f\u0338", + "NotLeftTriangle;": "\u22ea", + "NotLeftTriangleBar;": "\u29cf\u0338", + "NotLeftTriangleEqual;": "\u22ec", + "NotLess;": "\u226e", + "NotLessEqual;": "\u2270", + "NotLessGreater;": "\u2278", + "NotLessLess;": "\u226a\u0338", + "NotLessSlantEqual;": "\u2a7d\u0338", + "NotLessTilde;": "\u2274", + "NotNestedGreaterGreater;": "\u2aa2\u0338", + "NotNestedLessLess;": "\u2aa1\u0338", + "NotPrecedes;": "\u2280", + "NotPrecedesEqual;": "\u2aaf\u0338", + "NotPrecedesSlantEqual;": "\u22e0", + "NotReverseElement;": "\u220c", + "NotRightTriangle;": "\u22eb", + "NotRightTriangleBar;": "\u29d0\u0338", + "NotRightTriangleEqual;": "\u22ed", + "NotSquareSubset;": "\u228f\u0338", + "NotSquareSubsetEqual;": "\u22e2", + "NotSquareSuperset;": "\u2290\u0338", + "NotSquareSupersetEqual;": "\u22e3", + "NotSubset;": "\u2282\u20d2", + "NotSubsetEqual;": "\u2288", + "NotSucceeds;": "\u2281", + "NotSucceedsEqual;": "\u2ab0\u0338", + "NotSucceedsSlantEqual;": "\u22e1", + "NotSucceedsTilde;": "\u227f\u0338", + "NotSuperset;": "\u2283\u20d2", + "NotSupersetEqual;": "\u2289", + "NotTilde;": "\u2241", + "NotTildeEqual;": "\u2244", + "NotTildeFullEqual;": "\u2247", + "NotTildeTilde;": "\u2249", + "NotVerticalBar;": "\u2224", + "Nscr;": "\U0001d4a9", + "Ntilde": "\xd1", + "Ntilde;": "\xd1", + "Nu;": "\u039d", + "OElig;": "\u0152", + "Oacute": "\xd3", + "Oacute;": "\xd3", + "Ocirc": "\xd4", + "Ocirc;": "\xd4", + "Ocy;": "\u041e", + "Odblac;": "\u0150", + "Ofr;": "\U0001d512", + "Ograve": "\xd2", + "Ograve;": "\xd2", + "Omacr;": "\u014c", + "Omega;": "\u03a9", + "Omicron;": "\u039f", + "Oopf;": "\U0001d546", + "OpenCurlyDoubleQuote;": "\u201c", + "OpenCurlyQuote;": "\u2018", + "Or;": "\u2a54", + "Oscr;": "\U0001d4aa", + "Oslash": "\xd8", + "Oslash;": "\xd8", + "Otilde": "\xd5", + "Otilde;": "\xd5", + "Otimes;": "\u2a37", + "Ouml": "\xd6", + "Ouml;": "\xd6", + "OverBar;": "\u203e", + "OverBrace;": "\u23de", + "OverBracket;": "\u23b4", + "OverParenthesis;": "\u23dc", + "PartialD;": "\u2202", + "Pcy;": "\u041f", + "Pfr;": "\U0001d513", + "Phi;": "\u03a6", + "Pi;": "\u03a0", + "PlusMinus;": "\xb1", + "Poincareplane;": "\u210c", + "Popf;": "\u2119", + "Pr;": "\u2abb", + "Precedes;": "\u227a", + "PrecedesEqual;": "\u2aaf", + "PrecedesSlantEqual;": "\u227c", + "PrecedesTilde;": "\u227e", + "Prime;": "\u2033", + "Product;": "\u220f", + "Proportion;": "\u2237", + "Proportional;": "\u221d", + "Pscr;": "\U0001d4ab", + "Psi;": "\u03a8", + "QUOT": "\"", + "QUOT;": "\"", + "Qfr;": "\U0001d514", + "Qopf;": "\u211a", + "Qscr;": "\U0001d4ac", + "RBarr;": "\u2910", + "REG": "\xae", + "REG;": "\xae", + "Racute;": "\u0154", + "Rang;": "\u27eb", + "Rarr;": "\u21a0", + "Rarrtl;": "\u2916", + "Rcaron;": "\u0158", + "Rcedil;": "\u0156", + "Rcy;": "\u0420", + "Re;": "\u211c", + "ReverseElement;": "\u220b", + "ReverseEquilibrium;": "\u21cb", + "ReverseUpEquilibrium;": "\u296f", + "Rfr;": "\u211c", + "Rho;": "\u03a1", + "RightAngleBracket;": "\u27e9", + "RightArrow;": "\u2192", + "RightArrowBar;": "\u21e5", + "RightArrowLeftArrow;": "\u21c4", + "RightCeiling;": "\u2309", + "RightDoubleBracket;": "\u27e7", + "RightDownTeeVector;": "\u295d", + "RightDownVector;": "\u21c2", + "RightDownVectorBar;": "\u2955", + "RightFloor;": "\u230b", + "RightTee;": "\u22a2", + "RightTeeArrow;": "\u21a6", + "RightTeeVector;": "\u295b", + "RightTriangle;": "\u22b3", + "RightTriangleBar;": "\u29d0", + "RightTriangleEqual;": "\u22b5", + "RightUpDownVector;": "\u294f", + "RightUpTeeVector;": "\u295c", + "RightUpVector;": "\u21be", + "RightUpVectorBar;": "\u2954", + "RightVector;": "\u21c0", + "RightVectorBar;": "\u2953", + "Rightarrow;": "\u21d2", + "Ropf;": "\u211d", + "RoundImplies;": "\u2970", + "Rrightarrow;": "\u21db", + "Rscr;": "\u211b", + "Rsh;": "\u21b1", + "RuleDelayed;": "\u29f4", + "SHCHcy;": "\u0429", + "SHcy;": "\u0428", + "SOFTcy;": "\u042c", + "Sacute;": "\u015a", + "Sc;": "\u2abc", + "Scaron;": "\u0160", + "Scedil;": "\u015e", + "Scirc;": "\u015c", + "Scy;": "\u0421", + "Sfr;": "\U0001d516", + "ShortDownArrow;": "\u2193", + "ShortLeftArrow;": "\u2190", + "ShortRightArrow;": "\u2192", + "ShortUpArrow;": "\u2191", + "Sigma;": "\u03a3", + "SmallCircle;": "\u2218", + "Sopf;": "\U0001d54a", + "Sqrt;": "\u221a", + "Square;": "\u25a1", + "SquareIntersection;": "\u2293", + "SquareSubset;": "\u228f", + "SquareSubsetEqual;": "\u2291", + "SquareSuperset;": "\u2290", + "SquareSupersetEqual;": "\u2292", + "SquareUnion;": "\u2294", + "Sscr;": "\U0001d4ae", + "Star;": "\u22c6", + "Sub;": "\u22d0", + "Subset;": "\u22d0", + "SubsetEqual;": "\u2286", + "Succeeds;": "\u227b", + "SucceedsEqual;": "\u2ab0", + "SucceedsSlantEqual;": "\u227d", + "SucceedsTilde;": "\u227f", + "SuchThat;": "\u220b", + "Sum;": "\u2211", + "Sup;": "\u22d1", + "Superset;": "\u2283", + "SupersetEqual;": "\u2287", + "Supset;": "\u22d1", + "THORN": "\xde", + "THORN;": "\xde", + "TRADE;": "\u2122", + "TSHcy;": "\u040b", + "TScy;": "\u0426", + "Tab;": "\t", + "Tau;": "\u03a4", + "Tcaron;": "\u0164", + "Tcedil;": "\u0162", + "Tcy;": "\u0422", + "Tfr;": "\U0001d517", + "Therefore;": "\u2234", + "Theta;": "\u0398", + "ThickSpace;": "\u205f\u200a", + "ThinSpace;": "\u2009", + "Tilde;": "\u223c", + "TildeEqual;": "\u2243", + "TildeFullEqual;": "\u2245", + "TildeTilde;": "\u2248", + "Topf;": "\U0001d54b", + "TripleDot;": "\u20db", + "Tscr;": "\U0001d4af", + "Tstrok;": "\u0166", + "Uacute": "\xda", + "Uacute;": "\xda", + "Uarr;": "\u219f", + "Uarrocir;": "\u2949", + "Ubrcy;": "\u040e", + "Ubreve;": "\u016c", + "Ucirc": "\xdb", + "Ucirc;": "\xdb", + "Ucy;": "\u0423", + "Udblac;": "\u0170", + "Ufr;": "\U0001d518", + "Ugrave": "\xd9", + "Ugrave;": "\xd9", + "Umacr;": "\u016a", + "UnderBar;": "_", + "UnderBrace;": "\u23df", + "UnderBracket;": "\u23b5", + "UnderParenthesis;": "\u23dd", + "Union;": "\u22c3", + "UnionPlus;": "\u228e", + "Uogon;": "\u0172", + "Uopf;": "\U0001d54c", + "UpArrow;": "\u2191", + "UpArrowBar;": "\u2912", + "UpArrowDownArrow;": "\u21c5", + "UpDownArrow;": "\u2195", + "UpEquilibrium;": "\u296e", + "UpTee;": "\u22a5", + "UpTeeArrow;": "\u21a5", + "Uparrow;": "\u21d1", + "Updownarrow;": "\u21d5", + "UpperLeftArrow;": "\u2196", + "UpperRightArrow;": "\u2197", + "Upsi;": "\u03d2", + "Upsilon;": "\u03a5", + "Uring;": "\u016e", + "Uscr;": "\U0001d4b0", + "Utilde;": "\u0168", + "Uuml": "\xdc", + "Uuml;": "\xdc", + "VDash;": "\u22ab", + "Vbar;": "\u2aeb", + "Vcy;": "\u0412", + "Vdash;": "\u22a9", + "Vdashl;": "\u2ae6", + "Vee;": "\u22c1", + "Verbar;": "\u2016", + "Vert;": "\u2016", + "VerticalBar;": "\u2223", + "VerticalLine;": "|", + "VerticalSeparator;": "\u2758", + "VerticalTilde;": "\u2240", + "VeryThinSpace;": "\u200a", + "Vfr;": "\U0001d519", + "Vopf;": "\U0001d54d", + "Vscr;": "\U0001d4b1", + "Vvdash;": "\u22aa", + "Wcirc;": "\u0174", + "Wedge;": "\u22c0", + "Wfr;": "\U0001d51a", + "Wopf;": "\U0001d54e", + "Wscr;": "\U0001d4b2", + "Xfr;": "\U0001d51b", + "Xi;": "\u039e", + "Xopf;": "\U0001d54f", + "Xscr;": "\U0001d4b3", + "YAcy;": "\u042f", + "YIcy;": "\u0407", + "YUcy;": "\u042e", + "Yacute": "\xdd", + "Yacute;": "\xdd", + "Ycirc;": "\u0176", + "Ycy;": "\u042b", + "Yfr;": "\U0001d51c", + "Yopf;": "\U0001d550", + "Yscr;": "\U0001d4b4", + "Yuml;": "\u0178", + "ZHcy;": "\u0416", + "Zacute;": "\u0179", + "Zcaron;": "\u017d", + "Zcy;": "\u0417", + "Zdot;": "\u017b", + "ZeroWidthSpace;": "\u200b", + "Zeta;": "\u0396", + "Zfr;": "\u2128", + "Zopf;": "\u2124", + "Zscr;": "\U0001d4b5", + "aacute": "\xe1", + "aacute;": "\xe1", + "abreve;": "\u0103", + "ac;": "\u223e", + "acE;": "\u223e\u0333", + "acd;": "\u223f", + "acirc": "\xe2", + "acirc;": "\xe2", + "acute": "\xb4", + "acute;": "\xb4", + "acy;": "\u0430", + "aelig": "\xe6", + "aelig;": "\xe6", + "af;": "\u2061", + "afr;": "\U0001d51e", + "agrave": "\xe0", + "agrave;": "\xe0", + "alefsym;": "\u2135", + "aleph;": "\u2135", + "alpha;": "\u03b1", + "amacr;": "\u0101", + "amalg;": "\u2a3f", + "amp": "&", + "amp;": "&", + "and;": "\u2227", + "andand;": "\u2a55", + "andd;": "\u2a5c", + "andslope;": "\u2a58", + "andv;": "\u2a5a", + "ang;": "\u2220", + "ange;": "\u29a4", + "angle;": "\u2220", + "angmsd;": "\u2221", + "angmsdaa;": "\u29a8", + "angmsdab;": "\u29a9", + "angmsdac;": "\u29aa", + "angmsdad;": "\u29ab", + "angmsdae;": "\u29ac", + "angmsdaf;": "\u29ad", + "angmsdag;": "\u29ae", + "angmsdah;": "\u29af", + "angrt;": "\u221f", + "angrtvb;": "\u22be", + "angrtvbd;": "\u299d", + "angsph;": "\u2222", + "angst;": "\xc5", + "angzarr;": "\u237c", + "aogon;": "\u0105", + "aopf;": "\U0001d552", + "ap;": "\u2248", + "apE;": "\u2a70", + "apacir;": "\u2a6f", + "ape;": "\u224a", + "apid;": "\u224b", + "apos;": "'", + "approx;": "\u2248", + "approxeq;": "\u224a", + "aring": "\xe5", + "aring;": "\xe5", + "ascr;": "\U0001d4b6", + "ast;": "*", + "asymp;": "\u2248", + "asympeq;": "\u224d", + "atilde": "\xe3", + "atilde;": "\xe3", + "auml": "\xe4", + "auml;": "\xe4", + "awconint;": "\u2233", + "awint;": "\u2a11", + "bNot;": "\u2aed", + "backcong;": "\u224c", + "backepsilon;": "\u03f6", + "backprime;": "\u2035", + "backsim;": "\u223d", + "backsimeq;": "\u22cd", + "barvee;": "\u22bd", + "barwed;": "\u2305", + "barwedge;": "\u2305", + "bbrk;": "\u23b5", + "bbrktbrk;": "\u23b6", + "bcong;": "\u224c", + "bcy;": "\u0431", + "bdquo;": "\u201e", + "becaus;": "\u2235", + "because;": "\u2235", + "bemptyv;": "\u29b0", + "bepsi;": "\u03f6", + "bernou;": "\u212c", + "beta;": "\u03b2", + "beth;": "\u2136", + "between;": "\u226c", + "bfr;": "\U0001d51f", + "bigcap;": "\u22c2", + "bigcirc;": "\u25ef", + "bigcup;": "\u22c3", + "bigodot;": "\u2a00", + "bigoplus;": "\u2a01", + "bigotimes;": "\u2a02", + "bigsqcup;": "\u2a06", + "bigstar;": "\u2605", + "bigtriangledown;": "\u25bd", + "bigtriangleup;": "\u25b3", + "biguplus;": "\u2a04", + "bigvee;": "\u22c1", + "bigwedge;": "\u22c0", + "bkarow;": "\u290d", + "blacklozenge;": "\u29eb", + "blacksquare;": "\u25aa", + "blacktriangle;": "\u25b4", + "blacktriangledown;": "\u25be", + "blacktriangleleft;": "\u25c2", + "blacktriangleright;": "\u25b8", + "blank;": "\u2423", + "blk12;": "\u2592", + "blk14;": "\u2591", + "blk34;": "\u2593", + "block;": "\u2588", + "bne;": "=\u20e5", + "bnequiv;": "\u2261\u20e5", + "bnot;": "\u2310", + "bopf;": "\U0001d553", + "bot;": "\u22a5", + "bottom;": "\u22a5", + "bowtie;": "\u22c8", + "boxDL;": "\u2557", + "boxDR;": "\u2554", + "boxDl;": "\u2556", + "boxDr;": "\u2553", + "boxH;": "\u2550", + "boxHD;": "\u2566", + "boxHU;": "\u2569", + "boxHd;": "\u2564", + "boxHu;": "\u2567", + "boxUL;": "\u255d", + "boxUR;": "\u255a", + "boxUl;": "\u255c", + "boxUr;": "\u2559", + "boxV;": "\u2551", + "boxVH;": "\u256c", + "boxVL;": "\u2563", + "boxVR;": "\u2560", + "boxVh;": "\u256b", + "boxVl;": "\u2562", + "boxVr;": "\u255f", + "boxbox;": "\u29c9", + "boxdL;": "\u2555", + "boxdR;": "\u2552", + "boxdl;": "\u2510", + "boxdr;": "\u250c", + "boxh;": "\u2500", + "boxhD;": "\u2565", + "boxhU;": "\u2568", + "boxhd;": "\u252c", + "boxhu;": "\u2534", + "boxminus;": "\u229f", + "boxplus;": "\u229e", + "boxtimes;": "\u22a0", + "boxuL;": "\u255b", + "boxuR;": "\u2558", + "boxul;": "\u2518", + "boxur;": "\u2514", + "boxv;": "\u2502", + "boxvH;": "\u256a", + "boxvL;": "\u2561", + "boxvR;": "\u255e", + "boxvh;": "\u253c", + "boxvl;": "\u2524", + "boxvr;": "\u251c", + "bprime;": "\u2035", + "breve;": "\u02d8", + "brvbar": "\xa6", + "brvbar;": "\xa6", + "bscr;": "\U0001d4b7", + "bsemi;": "\u204f", + "bsim;": "\u223d", + "bsime;": "\u22cd", + "bsol;": "\\", + "bsolb;": "\u29c5", + "bsolhsub;": "\u27c8", + "bull;": "\u2022", + "bullet;": "\u2022", + "bump;": "\u224e", + "bumpE;": "\u2aae", + "bumpe;": "\u224f", + "bumpeq;": "\u224f", + "cacute;": "\u0107", + "cap;": "\u2229", + "capand;": "\u2a44", + "capbrcup;": "\u2a49", + "capcap;": "\u2a4b", + "capcup;": "\u2a47", + "capdot;": "\u2a40", + "caps;": "\u2229\ufe00", + "caret;": "\u2041", + "caron;": "\u02c7", + "ccaps;": "\u2a4d", + "ccaron;": "\u010d", + "ccedil": "\xe7", + "ccedil;": "\xe7", + "ccirc;": "\u0109", + "ccups;": "\u2a4c", + "ccupssm;": "\u2a50", + "cdot;": "\u010b", + "cedil": "\xb8", + "cedil;": "\xb8", + "cemptyv;": "\u29b2", + "cent": "\xa2", + "cent;": "\xa2", + "centerdot;": "\xb7", + "cfr;": "\U0001d520", + "chcy;": "\u0447", + "check;": "\u2713", + "checkmark;": "\u2713", + "chi;": "\u03c7", + "cir;": "\u25cb", + "cirE;": "\u29c3", + "circ;": "\u02c6", + "circeq;": "\u2257", + "circlearrowleft;": "\u21ba", + "circlearrowright;": "\u21bb", + "circledR;": "\xae", + "circledS;": "\u24c8", + "circledast;": "\u229b", + "circledcirc;": "\u229a", + "circleddash;": "\u229d", + "cire;": "\u2257", + "cirfnint;": "\u2a10", + "cirmid;": "\u2aef", + "cirscir;": "\u29c2", + "clubs;": "\u2663", + "clubsuit;": "\u2663", + "colon;": ":", + "colone;": "\u2254", + "coloneq;": "\u2254", + "comma;": ",", + "commat;": "@", + "comp;": "\u2201", + "compfn;": "\u2218", + "complement;": "\u2201", + "complexes;": "\u2102", + "cong;": "\u2245", + "congdot;": "\u2a6d", + "conint;": "\u222e", + "copf;": "\U0001d554", + "coprod;": "\u2210", + "copy": "\xa9", + "copy;": "\xa9", + "copysr;": "\u2117", + "crarr;": "\u21b5", + "cross;": "\u2717", + "cscr;": "\U0001d4b8", + "csub;": "\u2acf", + "csube;": "\u2ad1", + "csup;": "\u2ad0", + "csupe;": "\u2ad2", + "ctdot;": "\u22ef", + "cudarrl;": "\u2938", + "cudarrr;": "\u2935", + "cuepr;": "\u22de", + "cuesc;": "\u22df", + "cularr;": "\u21b6", + "cularrp;": "\u293d", + "cup;": "\u222a", + "cupbrcap;": "\u2a48", + "cupcap;": "\u2a46", + "cupcup;": "\u2a4a", + "cupdot;": "\u228d", + "cupor;": "\u2a45", + "cups;": "\u222a\ufe00", + "curarr;": "\u21b7", + "curarrm;": "\u293c", + "curlyeqprec;": "\u22de", + "curlyeqsucc;": "\u22df", + "curlyvee;": "\u22ce", + "curlywedge;": "\u22cf", + "curren": "\xa4", + "curren;": "\xa4", + "curvearrowleft;": "\u21b6", + "curvearrowright;": "\u21b7", + "cuvee;": "\u22ce", + "cuwed;": "\u22cf", + "cwconint;": "\u2232", + "cwint;": "\u2231", + "cylcty;": "\u232d", + "dArr;": "\u21d3", + "dHar;": "\u2965", + "dagger;": "\u2020", + "daleth;": "\u2138", + "darr;": "\u2193", + "dash;": "\u2010", + "dashv;": "\u22a3", + "dbkarow;": "\u290f", + "dblac;": "\u02dd", + "dcaron;": "\u010f", + "dcy;": "\u0434", + "dd;": "\u2146", + "ddagger;": "\u2021", + "ddarr;": "\u21ca", + "ddotseq;": "\u2a77", + "deg": "\xb0", + "deg;": "\xb0", + "delta;": "\u03b4", + "demptyv;": "\u29b1", + "dfisht;": "\u297f", + "dfr;": "\U0001d521", + "dharl;": "\u21c3", + "dharr;": "\u21c2", + "diam;": "\u22c4", + "diamond;": "\u22c4", + "diamondsuit;": "\u2666", + "diams;": "\u2666", + "die;": "\xa8", + "digamma;": "\u03dd", + "disin;": "\u22f2", + "div;": "\xf7", + "divide": "\xf7", + "divide;": "\xf7", + "divideontimes;": "\u22c7", + "divonx;": "\u22c7", + "djcy;": "\u0452", + "dlcorn;": "\u231e", + "dlcrop;": "\u230d", + "dollar;": "$", + "dopf;": "\U0001d555", + "dot;": "\u02d9", + "doteq;": "\u2250", + "doteqdot;": "\u2251", + "dotminus;": "\u2238", + "dotplus;": "\u2214", + "dotsquare;": "\u22a1", + "doublebarwedge;": "\u2306", + "downarrow;": "\u2193", + "downdownarrows;": "\u21ca", + "downharpoonleft;": "\u21c3", + "downharpoonright;": "\u21c2", + "drbkarow;": "\u2910", + "drcorn;": "\u231f", + "drcrop;": "\u230c", + "dscr;": "\U0001d4b9", + "dscy;": "\u0455", + "dsol;": "\u29f6", + "dstrok;": "\u0111", + "dtdot;": "\u22f1", + "dtri;": "\u25bf", + "dtrif;": "\u25be", + "duarr;": "\u21f5", + "duhar;": "\u296f", + "dwangle;": "\u29a6", + "dzcy;": "\u045f", + "dzigrarr;": "\u27ff", + "eDDot;": "\u2a77", + "eDot;": "\u2251", + "eacute": "\xe9", + "eacute;": "\xe9", + "easter;": "\u2a6e", + "ecaron;": "\u011b", + "ecir;": "\u2256", + "ecirc": "\xea", + "ecirc;": "\xea", + "ecolon;": "\u2255", + "ecy;": "\u044d", + "edot;": "\u0117", + "ee;": "\u2147", + "efDot;": "\u2252", + "efr;": "\U0001d522", + "eg;": "\u2a9a", + "egrave": "\xe8", + "egrave;": "\xe8", + "egs;": "\u2a96", + "egsdot;": "\u2a98", + "el;": "\u2a99", + "elinters;": "\u23e7", + "ell;": "\u2113", + "els;": "\u2a95", + "elsdot;": "\u2a97", + "emacr;": "\u0113", + "empty;": "\u2205", + "emptyset;": "\u2205", + "emptyv;": "\u2205", + "emsp13;": "\u2004", + "emsp14;": "\u2005", + "emsp;": "\u2003", + "eng;": "\u014b", + "ensp;": "\u2002", + "eogon;": "\u0119", + "eopf;": "\U0001d556", + "epar;": "\u22d5", + "eparsl;": "\u29e3", + "eplus;": "\u2a71", + "epsi;": "\u03b5", + "epsilon;": "\u03b5", + "epsiv;": "\u03f5", + "eqcirc;": "\u2256", + "eqcolon;": "\u2255", + "eqsim;": "\u2242", + "eqslantgtr;": "\u2a96", + "eqslantless;": "\u2a95", + "equals;": "=", + "equest;": "\u225f", + "equiv;": "\u2261", + "equivDD;": "\u2a78", + "eqvparsl;": "\u29e5", + "erDot;": "\u2253", + "erarr;": "\u2971", + "escr;": "\u212f", + "esdot;": "\u2250", + "esim;": "\u2242", + "eta;": "\u03b7", + "eth": "\xf0", + "eth;": "\xf0", + "euml": "\xeb", + "euml;": "\xeb", + "euro;": "\u20ac", + "excl;": "!", + "exist;": "\u2203", + "expectation;": "\u2130", + "exponentiale;": "\u2147", + "fallingdotseq;": "\u2252", + "fcy;": "\u0444", + "female;": "\u2640", + "ffilig;": "\ufb03", + "fflig;": "\ufb00", + "ffllig;": "\ufb04", + "ffr;": "\U0001d523", + "filig;": "\ufb01", + "fjlig;": "fj", + "flat;": "\u266d", + "fllig;": "\ufb02", + "fltns;": "\u25b1", + "fnof;": "\u0192", + "fopf;": "\U0001d557", + "forall;": "\u2200", + "fork;": "\u22d4", + "forkv;": "\u2ad9", + "fpartint;": "\u2a0d", + "frac12": "\xbd", + "frac12;": "\xbd", + "frac13;": "\u2153", + "frac14": "\xbc", + "frac14;": "\xbc", + "frac15;": "\u2155", + "frac16;": "\u2159", + "frac18;": "\u215b", + "frac23;": "\u2154", + "frac25;": "\u2156", + "frac34": "\xbe", + "frac34;": "\xbe", + "frac35;": "\u2157", + "frac38;": "\u215c", + "frac45;": "\u2158", + "frac56;": "\u215a", + "frac58;": "\u215d", + "frac78;": "\u215e", + "frasl;": "\u2044", + "frown;": "\u2322", + "fscr;": "\U0001d4bb", + "gE;": "\u2267", + "gEl;": "\u2a8c", + "gacute;": "\u01f5", + "gamma;": "\u03b3", + "gammad;": "\u03dd", + "gap;": "\u2a86", + "gbreve;": "\u011f", + "gcirc;": "\u011d", + "gcy;": "\u0433", + "gdot;": "\u0121", + "ge;": "\u2265", + "gel;": "\u22db", + "geq;": "\u2265", + "geqq;": "\u2267", + "geqslant;": "\u2a7e", + "ges;": "\u2a7e", + "gescc;": "\u2aa9", + "gesdot;": "\u2a80", + "gesdoto;": "\u2a82", + "gesdotol;": "\u2a84", + "gesl;": "\u22db\ufe00", + "gesles;": "\u2a94", + "gfr;": "\U0001d524", + "gg;": "\u226b", + "ggg;": "\u22d9", + "gimel;": "\u2137", + "gjcy;": "\u0453", + "gl;": "\u2277", + "glE;": "\u2a92", + "gla;": "\u2aa5", + "glj;": "\u2aa4", + "gnE;": "\u2269", + "gnap;": "\u2a8a", + "gnapprox;": "\u2a8a", + "gne;": "\u2a88", + "gneq;": "\u2a88", + "gneqq;": "\u2269", + "gnsim;": "\u22e7", + "gopf;": "\U0001d558", + "grave;": "`", + "gscr;": "\u210a", + "gsim;": "\u2273", + "gsime;": "\u2a8e", + "gsiml;": "\u2a90", + "gt": ">", + "gt;": ">", + "gtcc;": "\u2aa7", + "gtcir;": "\u2a7a", + "gtdot;": "\u22d7", + "gtlPar;": "\u2995", + "gtquest;": "\u2a7c", + "gtrapprox;": "\u2a86", + "gtrarr;": "\u2978", + "gtrdot;": "\u22d7", + "gtreqless;": "\u22db", + "gtreqqless;": "\u2a8c", + "gtrless;": "\u2277", + "gtrsim;": "\u2273", + "gvertneqq;": "\u2269\ufe00", + "gvnE;": "\u2269\ufe00", + "hArr;": "\u21d4", + "hairsp;": "\u200a", + "half;": "\xbd", + "hamilt;": "\u210b", + "hardcy;": "\u044a", + "harr;": "\u2194", + "harrcir;": "\u2948", + "harrw;": "\u21ad", + "hbar;": "\u210f", + "hcirc;": "\u0125", + "hearts;": "\u2665", + "heartsuit;": "\u2665", + "hellip;": "\u2026", + "hercon;": "\u22b9", + "hfr;": "\U0001d525", + "hksearow;": "\u2925", + "hkswarow;": "\u2926", + "hoarr;": "\u21ff", + "homtht;": "\u223b", + "hookleftarrow;": "\u21a9", + "hookrightarrow;": "\u21aa", + "hopf;": "\U0001d559", + "horbar;": "\u2015", + "hscr;": "\U0001d4bd", + "hslash;": "\u210f", + "hstrok;": "\u0127", + "hybull;": "\u2043", + "hyphen;": "\u2010", + "iacute": "\xed", + "iacute;": "\xed", + "ic;": "\u2063", + "icirc": "\xee", + "icirc;": "\xee", + "icy;": "\u0438", + "iecy;": "\u0435", + "iexcl": "\xa1", + "iexcl;": "\xa1", + "iff;": "\u21d4", + "ifr;": "\U0001d526", + "igrave": "\xec", + "igrave;": "\xec", + "ii;": "\u2148", + "iiiint;": "\u2a0c", + "iiint;": "\u222d", + "iinfin;": "\u29dc", + "iiota;": "\u2129", + "ijlig;": "\u0133", + "imacr;": "\u012b", + "image;": "\u2111", + "imagline;": "\u2110", + "imagpart;": "\u2111", + "imath;": "\u0131", + "imof;": "\u22b7", + "imped;": "\u01b5", + "in;": "\u2208", + "incare;": "\u2105", + "infin;": "\u221e", + "infintie;": "\u29dd", + "inodot;": "\u0131", + "int;": "\u222b", + "intcal;": "\u22ba", + "integers;": "\u2124", + "intercal;": "\u22ba", + "intlarhk;": "\u2a17", + "intprod;": "\u2a3c", + "iocy;": "\u0451", + "iogon;": "\u012f", + "iopf;": "\U0001d55a", + "iota;": "\u03b9", + "iprod;": "\u2a3c", + "iquest": "\xbf", + "iquest;": "\xbf", + "iscr;": "\U0001d4be", + "isin;": "\u2208", + "isinE;": "\u22f9", + "isindot;": "\u22f5", + "isins;": "\u22f4", + "isinsv;": "\u22f3", + "isinv;": "\u2208", + "it;": "\u2062", + "itilde;": "\u0129", + "iukcy;": "\u0456", + "iuml": "\xef", + "iuml;": "\xef", + "jcirc;": "\u0135", + "jcy;": "\u0439", + "jfr;": "\U0001d527", + "jmath;": "\u0237", + "jopf;": "\U0001d55b", + "jscr;": "\U0001d4bf", + "jsercy;": "\u0458", + "jukcy;": "\u0454", + "kappa;": "\u03ba", + "kappav;": "\u03f0", + "kcedil;": "\u0137", + "kcy;": "\u043a", + "kfr;": "\U0001d528", + "kgreen;": "\u0138", + "khcy;": "\u0445", + "kjcy;": "\u045c", + "kopf;": "\U0001d55c", + "kscr;": "\U0001d4c0", + "lAarr;": "\u21da", + "lArr;": "\u21d0", + "lAtail;": "\u291b", + "lBarr;": "\u290e", + "lE;": "\u2266", + "lEg;": "\u2a8b", + "lHar;": "\u2962", + "lacute;": "\u013a", + "laemptyv;": "\u29b4", + "lagran;": "\u2112", + "lambda;": "\u03bb", + "lang;": "\u27e8", + "langd;": "\u2991", + "langle;": "\u27e8", + "lap;": "\u2a85", + "laquo": "\xab", + "laquo;": "\xab", + "larr;": "\u2190", + "larrb;": "\u21e4", + "larrbfs;": "\u291f", + "larrfs;": "\u291d", + "larrhk;": "\u21a9", + "larrlp;": "\u21ab", + "larrpl;": "\u2939", + "larrsim;": "\u2973", + "larrtl;": "\u21a2", + "lat;": "\u2aab", + "latail;": "\u2919", + "late;": "\u2aad", + "lates;": "\u2aad\ufe00", + "lbarr;": "\u290c", + "lbbrk;": "\u2772", + "lbrace;": "{", + "lbrack;": "[", + "lbrke;": "\u298b", + "lbrksld;": "\u298f", + "lbrkslu;": "\u298d", + "lcaron;": "\u013e", + "lcedil;": "\u013c", + "lceil;": "\u2308", + "lcub;": "{", + "lcy;": "\u043b", + "ldca;": "\u2936", + "ldquo;": "\u201c", + "ldquor;": "\u201e", + "ldrdhar;": "\u2967", + "ldrushar;": "\u294b", + "ldsh;": "\u21b2", + "le;": "\u2264", + "leftarrow;": "\u2190", + "leftarrowtail;": "\u21a2", + "leftharpoondown;": "\u21bd", + "leftharpoonup;": "\u21bc", + "leftleftarrows;": "\u21c7", + "leftrightarrow;": "\u2194", + "leftrightarrows;": "\u21c6", + "leftrightharpoons;": "\u21cb", + "leftrightsquigarrow;": "\u21ad", + "leftthreetimes;": "\u22cb", + "leg;": "\u22da", + "leq;": "\u2264", + "leqq;": "\u2266", + "leqslant;": "\u2a7d", + "les;": "\u2a7d", + "lescc;": "\u2aa8", + "lesdot;": "\u2a7f", + "lesdoto;": "\u2a81", + "lesdotor;": "\u2a83", + "lesg;": "\u22da\ufe00", + "lesges;": "\u2a93", + "lessapprox;": "\u2a85", + "lessdot;": "\u22d6", + "lesseqgtr;": "\u22da", + "lesseqqgtr;": "\u2a8b", + "lessgtr;": "\u2276", + "lesssim;": "\u2272", + "lfisht;": "\u297c", + "lfloor;": "\u230a", + "lfr;": "\U0001d529", + "lg;": "\u2276", + "lgE;": "\u2a91", + "lhard;": "\u21bd", + "lharu;": "\u21bc", + "lharul;": "\u296a", + "lhblk;": "\u2584", + "ljcy;": "\u0459", + "ll;": "\u226a", + "llarr;": "\u21c7", + "llcorner;": "\u231e", + "llhard;": "\u296b", + "lltri;": "\u25fa", + "lmidot;": "\u0140", + "lmoust;": "\u23b0", + "lmoustache;": "\u23b0", + "lnE;": "\u2268", + "lnap;": "\u2a89", + "lnapprox;": "\u2a89", + "lne;": "\u2a87", + "lneq;": "\u2a87", + "lneqq;": "\u2268", + "lnsim;": "\u22e6", + "loang;": "\u27ec", + "loarr;": "\u21fd", + "lobrk;": "\u27e6", + "longleftarrow;": "\u27f5", + "longleftrightarrow;": "\u27f7", + "longmapsto;": "\u27fc", + "longrightarrow;": "\u27f6", + "looparrowleft;": "\u21ab", + "looparrowright;": "\u21ac", + "lopar;": "\u2985", + "lopf;": "\U0001d55d", + "loplus;": "\u2a2d", + "lotimes;": "\u2a34", + "lowast;": "\u2217", + "lowbar;": "_", + "loz;": "\u25ca", + "lozenge;": "\u25ca", + "lozf;": "\u29eb", + "lpar;": "(", + "lparlt;": "\u2993", + "lrarr;": "\u21c6", + "lrcorner;": "\u231f", + "lrhar;": "\u21cb", + "lrhard;": "\u296d", + "lrm;": "\u200e", + "lrtri;": "\u22bf", + "lsaquo;": "\u2039", + "lscr;": "\U0001d4c1", + "lsh;": "\u21b0", + "lsim;": "\u2272", + "lsime;": "\u2a8d", + "lsimg;": "\u2a8f", + "lsqb;": "[", + "lsquo;": "\u2018", + "lsquor;": "\u201a", + "lstrok;": "\u0142", + "lt": "<", + "lt;": "<", + "ltcc;": "\u2aa6", + "ltcir;": "\u2a79", + "ltdot;": "\u22d6", + "lthree;": "\u22cb", + "ltimes;": "\u22c9", + "ltlarr;": "\u2976", + "ltquest;": "\u2a7b", + "ltrPar;": "\u2996", + "ltri;": "\u25c3", + "ltrie;": "\u22b4", + "ltrif;": "\u25c2", + "lurdshar;": "\u294a", + "luruhar;": "\u2966", + "lvertneqq;": "\u2268\ufe00", + "lvnE;": "\u2268\ufe00", + "mDDot;": "\u223a", + "macr": "\xaf", + "macr;": "\xaf", + "male;": "\u2642", + "malt;": "\u2720", + "maltese;": "\u2720", + "map;": "\u21a6", + "mapsto;": "\u21a6", + "mapstodown;": "\u21a7", + "mapstoleft;": "\u21a4", + "mapstoup;": "\u21a5", + "marker;": "\u25ae", + "mcomma;": "\u2a29", + "mcy;": "\u043c", + "mdash;": "\u2014", + "measuredangle;": "\u2221", + "mfr;": "\U0001d52a", + "mho;": "\u2127", + "micro": "\xb5", + "micro;": "\xb5", + "mid;": "\u2223", + "midast;": "*", + "midcir;": "\u2af0", + "middot": "\xb7", + "middot;": "\xb7", + "minus;": "\u2212", + "minusb;": "\u229f", + "minusd;": "\u2238", + "minusdu;": "\u2a2a", + "mlcp;": "\u2adb", + "mldr;": "\u2026", + "mnplus;": "\u2213", + "models;": "\u22a7", + "mopf;": "\U0001d55e", + "mp;": "\u2213", + "mscr;": "\U0001d4c2", + "mstpos;": "\u223e", + "mu;": "\u03bc", + "multimap;": "\u22b8", + "mumap;": "\u22b8", + "nGg;": "\u22d9\u0338", + "nGt;": "\u226b\u20d2", + "nGtv;": "\u226b\u0338", + "nLeftarrow;": "\u21cd", + "nLeftrightarrow;": "\u21ce", + "nLl;": "\u22d8\u0338", + "nLt;": "\u226a\u20d2", + "nLtv;": "\u226a\u0338", + "nRightarrow;": "\u21cf", + "nVDash;": "\u22af", + "nVdash;": "\u22ae", + "nabla;": "\u2207", + "nacute;": "\u0144", + "nang;": "\u2220\u20d2", + "nap;": "\u2249", + "napE;": "\u2a70\u0338", + "napid;": "\u224b\u0338", + "napos;": "\u0149", + "napprox;": "\u2249", + "natur;": "\u266e", + "natural;": "\u266e", + "naturals;": "\u2115", + "nbsp": "\xa0", + "nbsp;": "\xa0", + "nbump;": "\u224e\u0338", + "nbumpe;": "\u224f\u0338", + "ncap;": "\u2a43", + "ncaron;": "\u0148", + "ncedil;": "\u0146", + "ncong;": "\u2247", + "ncongdot;": "\u2a6d\u0338", + "ncup;": "\u2a42", + "ncy;": "\u043d", + "ndash;": "\u2013", + "ne;": "\u2260", + "neArr;": "\u21d7", + "nearhk;": "\u2924", + "nearr;": "\u2197", + "nearrow;": "\u2197", + "nedot;": "\u2250\u0338", + "nequiv;": "\u2262", + "nesear;": "\u2928", + "nesim;": "\u2242\u0338", + "nexist;": "\u2204", + "nexists;": "\u2204", + "nfr;": "\U0001d52b", + "ngE;": "\u2267\u0338", + "nge;": "\u2271", + "ngeq;": "\u2271", + "ngeqq;": "\u2267\u0338", + "ngeqslant;": "\u2a7e\u0338", + "nges;": "\u2a7e\u0338", + "ngsim;": "\u2275", + "ngt;": "\u226f", + "ngtr;": "\u226f", + "nhArr;": "\u21ce", + "nharr;": "\u21ae", + "nhpar;": "\u2af2", + "ni;": "\u220b", + "nis;": "\u22fc", + "nisd;": "\u22fa", + "niv;": "\u220b", + "njcy;": "\u045a", + "nlArr;": "\u21cd", + "nlE;": "\u2266\u0338", + "nlarr;": "\u219a", + "nldr;": "\u2025", + "nle;": "\u2270", + "nleftarrow;": "\u219a", + "nleftrightarrow;": "\u21ae", + "nleq;": "\u2270", + "nleqq;": "\u2266\u0338", + "nleqslant;": "\u2a7d\u0338", + "nles;": "\u2a7d\u0338", + "nless;": "\u226e", + "nlsim;": "\u2274", + "nlt;": "\u226e", + "nltri;": "\u22ea", + "nltrie;": "\u22ec", + "nmid;": "\u2224", + "nopf;": "\U0001d55f", + "not": "\xac", + "not;": "\xac", + "notin;": "\u2209", + "notinE;": "\u22f9\u0338", + "notindot;": "\u22f5\u0338", + "notinva;": "\u2209", + "notinvb;": "\u22f7", + "notinvc;": "\u22f6", + "notni;": "\u220c", + "notniva;": "\u220c", + "notnivb;": "\u22fe", + "notnivc;": "\u22fd", + "npar;": "\u2226", + "nparallel;": "\u2226", + "nparsl;": "\u2afd\u20e5", + "npart;": "\u2202\u0338", + "npolint;": "\u2a14", + "npr;": "\u2280", + "nprcue;": "\u22e0", + "npre;": "\u2aaf\u0338", + "nprec;": "\u2280", + "npreceq;": "\u2aaf\u0338", + "nrArr;": "\u21cf", + "nrarr;": "\u219b", + "nrarrc;": "\u2933\u0338", + "nrarrw;": "\u219d\u0338", + "nrightarrow;": "\u219b", + "nrtri;": "\u22eb", + "nrtrie;": "\u22ed", + "nsc;": "\u2281", + "nsccue;": "\u22e1", + "nsce;": "\u2ab0\u0338", + "nscr;": "\U0001d4c3", + "nshortmid;": "\u2224", + "nshortparallel;": "\u2226", + "nsim;": "\u2241", + "nsime;": "\u2244", + "nsimeq;": "\u2244", + "nsmid;": "\u2224", + "nspar;": "\u2226", + "nsqsube;": "\u22e2", + "nsqsupe;": "\u22e3", + "nsub;": "\u2284", + "nsubE;": "\u2ac5\u0338", + "nsube;": "\u2288", + "nsubset;": "\u2282\u20d2", + "nsubseteq;": "\u2288", + "nsubseteqq;": "\u2ac5\u0338", + "nsucc;": "\u2281", + "nsucceq;": "\u2ab0\u0338", + "nsup;": "\u2285", + "nsupE;": "\u2ac6\u0338", + "nsupe;": "\u2289", + "nsupset;": "\u2283\u20d2", + "nsupseteq;": "\u2289", + "nsupseteqq;": "\u2ac6\u0338", + "ntgl;": "\u2279", + "ntilde": "\xf1", + "ntilde;": "\xf1", + "ntlg;": "\u2278", + "ntriangleleft;": "\u22ea", + "ntrianglelefteq;": "\u22ec", + "ntriangleright;": "\u22eb", + "ntrianglerighteq;": "\u22ed", + "nu;": "\u03bd", + "num;": "#", + "numero;": "\u2116", + "numsp;": "\u2007", + "nvDash;": "\u22ad", + "nvHarr;": "\u2904", + "nvap;": "\u224d\u20d2", + "nvdash;": "\u22ac", + "nvge;": "\u2265\u20d2", + "nvgt;": ">\u20d2", + "nvinfin;": "\u29de", + "nvlArr;": "\u2902", + "nvle;": "\u2264\u20d2", + "nvlt;": "<\u20d2", + "nvltrie;": "\u22b4\u20d2", + "nvrArr;": "\u2903", + "nvrtrie;": "\u22b5\u20d2", + "nvsim;": "\u223c\u20d2", + "nwArr;": "\u21d6", + "nwarhk;": "\u2923", + "nwarr;": "\u2196", + "nwarrow;": "\u2196", + "nwnear;": "\u2927", + "oS;": "\u24c8", + "oacute": "\xf3", + "oacute;": "\xf3", + "oast;": "\u229b", + "ocir;": "\u229a", + "ocirc": "\xf4", + "ocirc;": "\xf4", + "ocy;": "\u043e", + "odash;": "\u229d", + "odblac;": "\u0151", + "odiv;": "\u2a38", + "odot;": "\u2299", + "odsold;": "\u29bc", + "oelig;": "\u0153", + "ofcir;": "\u29bf", + "ofr;": "\U0001d52c", + "ogon;": "\u02db", + "ograve": "\xf2", + "ograve;": "\xf2", + "ogt;": "\u29c1", + "ohbar;": "\u29b5", + "ohm;": "\u03a9", + "oint;": "\u222e", + "olarr;": "\u21ba", + "olcir;": "\u29be", + "olcross;": "\u29bb", + "oline;": "\u203e", + "olt;": "\u29c0", + "omacr;": "\u014d", + "omega;": "\u03c9", + "omicron;": "\u03bf", + "omid;": "\u29b6", + "ominus;": "\u2296", + "oopf;": "\U0001d560", + "opar;": "\u29b7", + "operp;": "\u29b9", + "oplus;": "\u2295", + "or;": "\u2228", + "orarr;": "\u21bb", + "ord;": "\u2a5d", + "order;": "\u2134", + "orderof;": "\u2134", + "ordf": "\xaa", + "ordf;": "\xaa", + "ordm": "\xba", + "ordm;": "\xba", + "origof;": "\u22b6", + "oror;": "\u2a56", + "orslope;": "\u2a57", + "orv;": "\u2a5b", + "oscr;": "\u2134", + "oslash": "\xf8", + "oslash;": "\xf8", + "osol;": "\u2298", + "otilde": "\xf5", + "otilde;": "\xf5", + "otimes;": "\u2297", + "otimesas;": "\u2a36", + "ouml": "\xf6", + "ouml;": "\xf6", + "ovbar;": "\u233d", + "par;": "\u2225", + "para": "\xb6", + "para;": "\xb6", + "parallel;": "\u2225", + "parsim;": "\u2af3", + "parsl;": "\u2afd", + "part;": "\u2202", + "pcy;": "\u043f", + "percnt;": "%", + "period;": ".", + "permil;": "\u2030", + "perp;": "\u22a5", + "pertenk;": "\u2031", + "pfr;": "\U0001d52d", + "phi;": "\u03c6", + "phiv;": "\u03d5", + "phmmat;": "\u2133", + "phone;": "\u260e", + "pi;": "\u03c0", + "pitchfork;": "\u22d4", + "piv;": "\u03d6", + "planck;": "\u210f", + "planckh;": "\u210e", + "plankv;": "\u210f", + "plus;": "+", + "plusacir;": "\u2a23", + "plusb;": "\u229e", + "pluscir;": "\u2a22", + "plusdo;": "\u2214", + "plusdu;": "\u2a25", + "pluse;": "\u2a72", + "plusmn": "\xb1", + "plusmn;": "\xb1", + "plussim;": "\u2a26", + "plustwo;": "\u2a27", + "pm;": "\xb1", + "pointint;": "\u2a15", + "popf;": "\U0001d561", + "pound": "\xa3", + "pound;": "\xa3", + "pr;": "\u227a", + "prE;": "\u2ab3", + "prap;": "\u2ab7", + "prcue;": "\u227c", + "pre;": "\u2aaf", + "prec;": "\u227a", + "precapprox;": "\u2ab7", + "preccurlyeq;": "\u227c", + "preceq;": "\u2aaf", + "precnapprox;": "\u2ab9", + "precneqq;": "\u2ab5", + "precnsim;": "\u22e8", + "precsim;": "\u227e", + "prime;": "\u2032", + "primes;": "\u2119", + "prnE;": "\u2ab5", + "prnap;": "\u2ab9", + "prnsim;": "\u22e8", + "prod;": "\u220f", + "profalar;": "\u232e", + "profline;": "\u2312", + "profsurf;": "\u2313", + "prop;": "\u221d", + "propto;": "\u221d", + "prsim;": "\u227e", + "prurel;": "\u22b0", + "pscr;": "\U0001d4c5", + "psi;": "\u03c8", + "puncsp;": "\u2008", + "qfr;": "\U0001d52e", + "qint;": "\u2a0c", + "qopf;": "\U0001d562", + "qprime;": "\u2057", + "qscr;": "\U0001d4c6", + "quaternions;": "\u210d", + "quatint;": "\u2a16", + "quest;": "?", + "questeq;": "\u225f", + "quot": "\"", + "quot;": "\"", + "rAarr;": "\u21db", + "rArr;": "\u21d2", + "rAtail;": "\u291c", + "rBarr;": "\u290f", + "rHar;": "\u2964", + "race;": "\u223d\u0331", + "racute;": "\u0155", + "radic;": "\u221a", + "raemptyv;": "\u29b3", + "rang;": "\u27e9", + "rangd;": "\u2992", + "range;": "\u29a5", + "rangle;": "\u27e9", + "raquo": "\xbb", + "raquo;": "\xbb", + "rarr;": "\u2192", + "rarrap;": "\u2975", + "rarrb;": "\u21e5", + "rarrbfs;": "\u2920", + "rarrc;": "\u2933", + "rarrfs;": "\u291e", + "rarrhk;": "\u21aa", + "rarrlp;": "\u21ac", + "rarrpl;": "\u2945", + "rarrsim;": "\u2974", + "rarrtl;": "\u21a3", + "rarrw;": "\u219d", + "ratail;": "\u291a", + "ratio;": "\u2236", + "rationals;": "\u211a", + "rbarr;": "\u290d", + "rbbrk;": "\u2773", + "rbrace;": "}", + "rbrack;": "]", + "rbrke;": "\u298c", + "rbrksld;": "\u298e", + "rbrkslu;": "\u2990", + "rcaron;": "\u0159", + "rcedil;": "\u0157", + "rceil;": "\u2309", + "rcub;": "}", + "rcy;": "\u0440", + "rdca;": "\u2937", + "rdldhar;": "\u2969", + "rdquo;": "\u201d", + "rdquor;": "\u201d", + "rdsh;": "\u21b3", + "real;": "\u211c", + "realine;": "\u211b", + "realpart;": "\u211c", + "reals;": "\u211d", + "rect;": "\u25ad", + "reg": "\xae", + "reg;": "\xae", + "rfisht;": "\u297d", + "rfloor;": "\u230b", + "rfr;": "\U0001d52f", + "rhard;": "\u21c1", + "rharu;": "\u21c0", + "rharul;": "\u296c", + "rho;": "\u03c1", + "rhov;": "\u03f1", + "rightarrow;": "\u2192", + "rightarrowtail;": "\u21a3", + "rightharpoondown;": "\u21c1", + "rightharpoonup;": "\u21c0", + "rightleftarrows;": "\u21c4", + "rightleftharpoons;": "\u21cc", + "rightrightarrows;": "\u21c9", + "rightsquigarrow;": "\u219d", + "rightthreetimes;": "\u22cc", + "ring;": "\u02da", + "risingdotseq;": "\u2253", + "rlarr;": "\u21c4", + "rlhar;": "\u21cc", + "rlm;": "\u200f", + "rmoust;": "\u23b1", + "rmoustache;": "\u23b1", + "rnmid;": "\u2aee", + "roang;": "\u27ed", + "roarr;": "\u21fe", + "robrk;": "\u27e7", + "ropar;": "\u2986", + "ropf;": "\U0001d563", + "roplus;": "\u2a2e", + "rotimes;": "\u2a35", + "rpar;": ")", + "rpargt;": "\u2994", + "rppolint;": "\u2a12", + "rrarr;": "\u21c9", + "rsaquo;": "\u203a", + "rscr;": "\U0001d4c7", + "rsh;": "\u21b1", + "rsqb;": "]", + "rsquo;": "\u2019", + "rsquor;": "\u2019", + "rthree;": "\u22cc", + "rtimes;": "\u22ca", + "rtri;": "\u25b9", + "rtrie;": "\u22b5", + "rtrif;": "\u25b8", + "rtriltri;": "\u29ce", + "ruluhar;": "\u2968", + "rx;": "\u211e", + "sacute;": "\u015b", + "sbquo;": "\u201a", + "sc;": "\u227b", + "scE;": "\u2ab4", + "scap;": "\u2ab8", + "scaron;": "\u0161", + "sccue;": "\u227d", + "sce;": "\u2ab0", + "scedil;": "\u015f", + "scirc;": "\u015d", + "scnE;": "\u2ab6", + "scnap;": "\u2aba", + "scnsim;": "\u22e9", + "scpolint;": "\u2a13", + "scsim;": "\u227f", + "scy;": "\u0441", + "sdot;": "\u22c5", + "sdotb;": "\u22a1", + "sdote;": "\u2a66", + "seArr;": "\u21d8", + "searhk;": "\u2925", + "searr;": "\u2198", + "searrow;": "\u2198", + "sect": "\xa7", + "sect;": "\xa7", + "semi;": ";", + "seswar;": "\u2929", + "setminus;": "\u2216", + "setmn;": "\u2216", + "sext;": "\u2736", + "sfr;": "\U0001d530", + "sfrown;": "\u2322", + "sharp;": "\u266f", + "shchcy;": "\u0449", + "shcy;": "\u0448", + "shortmid;": "\u2223", + "shortparallel;": "\u2225", + "shy": "\xad", + "shy;": "\xad", + "sigma;": "\u03c3", + "sigmaf;": "\u03c2", + "sigmav;": "\u03c2", + "sim;": "\u223c", + "simdot;": "\u2a6a", + "sime;": "\u2243", + "simeq;": "\u2243", + "simg;": "\u2a9e", + "simgE;": "\u2aa0", + "siml;": "\u2a9d", + "simlE;": "\u2a9f", + "simne;": "\u2246", + "simplus;": "\u2a24", + "simrarr;": "\u2972", + "slarr;": "\u2190", + "smallsetminus;": "\u2216", + "smashp;": "\u2a33", + "smeparsl;": "\u29e4", + "smid;": "\u2223", + "smile;": "\u2323", + "smt;": "\u2aaa", + "smte;": "\u2aac", + "smtes;": "\u2aac\ufe00", + "softcy;": "\u044c", + "sol;": "/", + "solb;": "\u29c4", + "solbar;": "\u233f", + "sopf;": "\U0001d564", + "spades;": "\u2660", + "spadesuit;": "\u2660", + "spar;": "\u2225", + "sqcap;": "\u2293", + "sqcaps;": "\u2293\ufe00", + "sqcup;": "\u2294", + "sqcups;": "\u2294\ufe00", + "sqsub;": "\u228f", + "sqsube;": "\u2291", + "sqsubset;": "\u228f", + "sqsubseteq;": "\u2291", + "sqsup;": "\u2290", + "sqsupe;": "\u2292", + "sqsupset;": "\u2290", + "sqsupseteq;": "\u2292", + "squ;": "\u25a1", + "square;": "\u25a1", + "squarf;": "\u25aa", + "squf;": "\u25aa", + "srarr;": "\u2192", + "sscr;": "\U0001d4c8", + "ssetmn;": "\u2216", + "ssmile;": "\u2323", + "sstarf;": "\u22c6", + "star;": "\u2606", + "starf;": "\u2605", + "straightepsilon;": "\u03f5", + "straightphi;": "\u03d5", + "strns;": "\xaf", + "sub;": "\u2282", + "subE;": "\u2ac5", + "subdot;": "\u2abd", + "sube;": "\u2286", + "subedot;": "\u2ac3", + "submult;": "\u2ac1", + "subnE;": "\u2acb", + "subne;": "\u228a", + "subplus;": "\u2abf", + "subrarr;": "\u2979", + "subset;": "\u2282", + "subseteq;": "\u2286", + "subseteqq;": "\u2ac5", + "subsetneq;": "\u228a", + "subsetneqq;": "\u2acb", + "subsim;": "\u2ac7", + "subsub;": "\u2ad5", + "subsup;": "\u2ad3", + "succ;": "\u227b", + "succapprox;": "\u2ab8", + "succcurlyeq;": "\u227d", + "succeq;": "\u2ab0", + "succnapprox;": "\u2aba", + "succneqq;": "\u2ab6", + "succnsim;": "\u22e9", + "succsim;": "\u227f", + "sum;": "\u2211", + "sung;": "\u266a", + "sup1": "\xb9", + "sup1;": "\xb9", + "sup2": "\xb2", + "sup2;": "\xb2", + "sup3": "\xb3", + "sup3;": "\xb3", + "sup;": "\u2283", + "supE;": "\u2ac6", + "supdot;": "\u2abe", + "supdsub;": "\u2ad8", + "supe;": "\u2287", + "supedot;": "\u2ac4", + "suphsol;": "\u27c9", + "suphsub;": "\u2ad7", + "suplarr;": "\u297b", + "supmult;": "\u2ac2", + "supnE;": "\u2acc", + "supne;": "\u228b", + "supplus;": "\u2ac0", + "supset;": "\u2283", + "supseteq;": "\u2287", + "supseteqq;": "\u2ac6", + "supsetneq;": "\u228b", + "supsetneqq;": "\u2acc", + "supsim;": "\u2ac8", + "supsub;": "\u2ad4", + "supsup;": "\u2ad6", + "swArr;": "\u21d9", + "swarhk;": "\u2926", + "swarr;": "\u2199", + "swarrow;": "\u2199", + "swnwar;": "\u292a", + "szlig": "\xdf", + "szlig;": "\xdf", + "target;": "\u2316", + "tau;": "\u03c4", + "tbrk;": "\u23b4", + "tcaron;": "\u0165", + "tcedil;": "\u0163", + "tcy;": "\u0442", + "tdot;": "\u20db", + "telrec;": "\u2315", + "tfr;": "\U0001d531", + "there4;": "\u2234", + "therefore;": "\u2234", + "theta;": "\u03b8", + "thetasym;": "\u03d1", + "thetav;": "\u03d1", + "thickapprox;": "\u2248", + "thicksim;": "\u223c", + "thinsp;": "\u2009", + "thkap;": "\u2248", + "thksim;": "\u223c", + "thorn": "\xfe", + "thorn;": "\xfe", + "tilde;": "\u02dc", + "times": "\xd7", + "times;": "\xd7", + "timesb;": "\u22a0", + "timesbar;": "\u2a31", + "timesd;": "\u2a30", + "tint;": "\u222d", + "toea;": "\u2928", + "top;": "\u22a4", + "topbot;": "\u2336", + "topcir;": "\u2af1", + "topf;": "\U0001d565", + "topfork;": "\u2ada", + "tosa;": "\u2929", + "tprime;": "\u2034", + "trade;": "\u2122", + "triangle;": "\u25b5", + "triangledown;": "\u25bf", + "triangleleft;": "\u25c3", + "trianglelefteq;": "\u22b4", + "triangleq;": "\u225c", + "triangleright;": "\u25b9", + "trianglerighteq;": "\u22b5", + "tridot;": "\u25ec", + "trie;": "\u225c", + "triminus;": "\u2a3a", + "triplus;": "\u2a39", + "trisb;": "\u29cd", + "tritime;": "\u2a3b", + "trpezium;": "\u23e2", + "tscr;": "\U0001d4c9", + "tscy;": "\u0446", + "tshcy;": "\u045b", + "tstrok;": "\u0167", + "twixt;": "\u226c", + "twoheadleftarrow;": "\u219e", + "twoheadrightarrow;": "\u21a0", + "uArr;": "\u21d1", + "uHar;": "\u2963", + "uacute": "\xfa", + "uacute;": "\xfa", + "uarr;": "\u2191", + "ubrcy;": "\u045e", + "ubreve;": "\u016d", + "ucirc": "\xfb", + "ucirc;": "\xfb", + "ucy;": "\u0443", + "udarr;": "\u21c5", + "udblac;": "\u0171", + "udhar;": "\u296e", + "ufisht;": "\u297e", + "ufr;": "\U0001d532", + "ugrave": "\xf9", + "ugrave;": "\xf9", + "uharl;": "\u21bf", + "uharr;": "\u21be", + "uhblk;": "\u2580", + "ulcorn;": "\u231c", + "ulcorner;": "\u231c", + "ulcrop;": "\u230f", + "ultri;": "\u25f8", + "umacr;": "\u016b", + "uml": "\xa8", + "uml;": "\xa8", + "uogon;": "\u0173", + "uopf;": "\U0001d566", + "uparrow;": "\u2191", + "updownarrow;": "\u2195", + "upharpoonleft;": "\u21bf", + "upharpoonright;": "\u21be", + "uplus;": "\u228e", + "upsi;": "\u03c5", + "upsih;": "\u03d2", + "upsilon;": "\u03c5", + "upuparrows;": "\u21c8", + "urcorn;": "\u231d", + "urcorner;": "\u231d", + "urcrop;": "\u230e", + "uring;": "\u016f", + "urtri;": "\u25f9", + "uscr;": "\U0001d4ca", + "utdot;": "\u22f0", + "utilde;": "\u0169", + "utri;": "\u25b5", + "utrif;": "\u25b4", + "uuarr;": "\u21c8", + "uuml": "\xfc", + "uuml;": "\xfc", + "uwangle;": "\u29a7", + "vArr;": "\u21d5", + "vBar;": "\u2ae8", + "vBarv;": "\u2ae9", + "vDash;": "\u22a8", + "vangrt;": "\u299c", + "varepsilon;": "\u03f5", + "varkappa;": "\u03f0", + "varnothing;": "\u2205", + "varphi;": "\u03d5", + "varpi;": "\u03d6", + "varpropto;": "\u221d", + "varr;": "\u2195", + "varrho;": "\u03f1", + "varsigma;": "\u03c2", + "varsubsetneq;": "\u228a\ufe00", + "varsubsetneqq;": "\u2acb\ufe00", + "varsupsetneq;": "\u228b\ufe00", + "varsupsetneqq;": "\u2acc\ufe00", + "vartheta;": "\u03d1", + "vartriangleleft;": "\u22b2", + "vartriangleright;": "\u22b3", + "vcy;": "\u0432", + "vdash;": "\u22a2", + "vee;": "\u2228", + "veebar;": "\u22bb", + "veeeq;": "\u225a", + "vellip;": "\u22ee", + "verbar;": "|", + "vert;": "|", + "vfr;": "\U0001d533", + "vltri;": "\u22b2", + "vnsub;": "\u2282\u20d2", + "vnsup;": "\u2283\u20d2", + "vopf;": "\U0001d567", + "vprop;": "\u221d", + "vrtri;": "\u22b3", + "vscr;": "\U0001d4cb", + "vsubnE;": "\u2acb\ufe00", + "vsubne;": "\u228a\ufe00", + "vsupnE;": "\u2acc\ufe00", + "vsupne;": "\u228b\ufe00", + "vzigzag;": "\u299a", + "wcirc;": "\u0175", + "wedbar;": "\u2a5f", + "wedge;": "\u2227", + "wedgeq;": "\u2259", + "weierp;": "\u2118", + "wfr;": "\U0001d534", + "wopf;": "\U0001d568", + "wp;": "\u2118", + "wr;": "\u2240", + "wreath;": "\u2240", + "wscr;": "\U0001d4cc", + "xcap;": "\u22c2", + "xcirc;": "\u25ef", + "xcup;": "\u22c3", + "xdtri;": "\u25bd", + "xfr;": "\U0001d535", + "xhArr;": "\u27fa", + "xharr;": "\u27f7", + "xi;": "\u03be", + "xlArr;": "\u27f8", + "xlarr;": "\u27f5", + "xmap;": "\u27fc", + "xnis;": "\u22fb", + "xodot;": "\u2a00", + "xopf;": "\U0001d569", + "xoplus;": "\u2a01", + "xotime;": "\u2a02", + "xrArr;": "\u27f9", + "xrarr;": "\u27f6", + "xscr;": "\U0001d4cd", + "xsqcup;": "\u2a06", + "xuplus;": "\u2a04", + "xutri;": "\u25b3", + "xvee;": "\u22c1", + "xwedge;": "\u22c0", + "yacute": "\xfd", + "yacute;": "\xfd", + "yacy;": "\u044f", + "ycirc;": "\u0177", + "ycy;": "\u044b", + "yen": "\xa5", + "yen;": "\xa5", + "yfr;": "\U0001d536", + "yicy;": "\u0457", + "yopf;": "\U0001d56a", + "yscr;": "\U0001d4ce", + "yucy;": "\u044e", + "yuml": "\xff", + "yuml;": "\xff", + "zacute;": "\u017a", + "zcaron;": "\u017e", + "zcy;": "\u0437", + "zdot;": "\u017c", + "zeetrf;": "\u2128", + "zeta;": "\u03b6", + "zfr;": "\U0001d537", + "zhcy;": "\u0436", + "zigrarr;": "\u21dd", + "zopf;": "\U0001d56b", + "zscr;": "\U0001d4cf", + "zwj;": "\u200d", + "zwnj;": "\u200c", +} + +replacementCharacters = { + 0x0: "\uFFFD", + 0x0d: "\u000D", + 0x80: "\u20AC", + 0x81: "\u0081", + 0x82: "\u201A", + 0x83: "\u0192", + 0x84: "\u201E", + 0x85: "\u2026", + 0x86: "\u2020", + 0x87: "\u2021", + 0x88: "\u02C6", + 0x89: "\u2030", + 0x8A: "\u0160", + 0x8B: "\u2039", + 0x8C: "\u0152", + 0x8D: "\u008D", + 0x8E: "\u017D", + 0x8F: "\u008F", + 0x90: "\u0090", + 0x91: "\u2018", + 0x92: "\u2019", + 0x93: "\u201C", + 0x94: "\u201D", + 0x95: "\u2022", + 0x96: "\u2013", + 0x97: "\u2014", + 0x98: "\u02DC", + 0x99: "\u2122", + 0x9A: "\u0161", + 0x9B: "\u203A", + 0x9C: "\u0153", + 0x9D: "\u009D", + 0x9E: "\u017E", + 0x9F: "\u0178", +} + +tokenTypes = { + "Doctype": 0, + "Characters": 1, + "SpaceCharacters": 2, + "StartTag": 3, + "EndTag": 4, + "EmptyTag": 5, + "Comment": 6, + "ParseError": 7 +} + +tagTokenTypes = frozenset([tokenTypes["StartTag"], tokenTypes["EndTag"], + tokenTypes["EmptyTag"]]) + + +prefixes = {v: k for k, v in namespaces.items()} +prefixes["http://www.w3.org/1998/Math/MathML"] = "math" + + +class DataLossWarning(UserWarning): + """Raised when the current tree is unable to represent the input data""" + pass + + +class _ReparseException(Exception): + pass diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2489183259bfddd56b4461de81d723be7b2b3c3b GIT binary patch literal 192 zcmYe~<>g{vU|^WXFgqPYKL!!Vn2~{j!GVE+p_qk%fgyzg{vU|^WXFgtw)pq%fs0=dk3mMzJ!2Sq1_n*WTP#V5#i^Q%x48X_Qc{ajQ(Q8WOOioyATvQ2#Aaq-U~mSxT!w*x zp@t!aQ4)*`_)?glJZ4FTG^St%O_r*kL8&FBMR^K|c?yXI1x5J~Q6VoeH?_DRF*#MCBqOmz zAvrNmAt_ZMHM1lmwMZc$!7o2AH6cL(WUxYUNl|8Ax}HLKD%h;##60y9h2;F)g2W<_ z?o@@6@_dD))a1m{Vlcl_y(m>7B{MB8wJ0^OM4_azAhlRWp*UZmJXIk%Kd&scs03^f z+?JAjkn>Y>3rZ@XmMNrV78RH1K^$KM3aVQSMXU@A3@gE5n^;m(RK&@^zyKzG73*i@ z=cekXmuHrg7(%I_)Pj6{-^`T6Vh>+m{hZ7s{esGpjQl)fJxl%K%#u{yg2d$P#Prl+ z{esK_{rIxfyp;SR{fv^_98-|uw9K56)S_bj#GHbR#H7@c%;dxzkgeeGE!Hcjyu}$0 z;>TyFR&s!1kO>s097Q|~3=GL2CNc)effJ|%0|P@ULlk2QLljdAV-zzeVYVf#s%28I%bEXD;) zH4FU72TyTDV4FdH0!bEw3Lp+f7RDlwh@U1G$kepblG38o`1m4F za(+%uYH~?teqJ#+K)@jYHUpb=w>WGdF0}(?hhmU9B1}9? IJj@*207GC@y8r+H literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00a79f1351ec55c15bdd586b9de47d3ca964d4dd GIT binary patch literal 862 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1f6d9f3406e32e979da76335e7d340073a6aa14 GIT binary patch literal 2755 zcmYe~<>g{vU|^WXFgsmai-F-Wh=Yt-7#J8F7#J9e%@`OMQW#Pga~N_NqZo6UqL^}- zqnH^PQkYVhb69d&qgWXk+!<0>QdnCUQdm=2v)G!Mqu5f|f*CZ~UxG~3WWL3pm{gpf zQ(BT5pP5^bUsQ67BPFvevp6$9@0LJmUS@KBN@{#gW=U#MVovc(Mg|53O~zX+Nr}a& z$shxeF%!&L1`G@gsSHt!DGX6eDU4CfAm_9&M6o~|62+Rrmcrh`5XF|lk;2)+5XGLt z70jT?eT&U4Gp8iAs7gC1H8;O3wOAp)pd>RtFEK}$RiPw5J2g+C zxTGjGF*h0HBA6pU;R3=Smlb<}!-j>Sma&$ph9Qf=g&|g>&JjQreG{q*w8k`hBG6_i?#ukV|gl348F>#LuW znWSG(S(1^TXRK$bUz}Nzs#}nloSm4STC87?S)d0lkco`TNZV6@<$HV*|UkuW4iyv7i zH7`YzwTKg>lmiw^MW9S|izP3$qNIqAfdLXh;8-f+0V|A;2PO0Pcp*>-ih)B=h>-&f z1^zQJfmi~J986XG&~SvQPX?tqka7?Pg(N5=ID-ti2MS5%BAyy%P}mjlrGUbZF@>p& zp-7>IC55?+F_@u-F@+_YsmKcyT4fAHCZOC|!;-?D%~W)&hB<{pk^v+i%#b&shB1XR zo2jS*tdpTA4wP+bSW>vNnTm>_DtSOAf=tLus$opw&1Nc^1vPgHR0Ur)Q!oQaXP!e1 zV+udm7KjnL1GzfJBSUkU7(Di=oCl?)C5782_P{|AwO_n-eLiz&y`HK*q!rp zb5rw5Zt({fBqpaiXCxLSCYPiZ72jgXNKH&x$yCG-4s6%lf|AOR#PpCNP;eIsf&^KT z@>43^zzQ^(Zm|_77iAWd++r;*smw{e#gUw!lU|fxT5yXwIX~wXYY9lPCUcPrNGEFv z$naaNC29HjCAXMLioo#-O9JdAiRqwJR3r+Dc2LZM-3(R(AwUVBNSJ|vK^_!spkkGQ zQGk(ynS+sog@ciWk%N(sk%JA)V&P$8W8`4vfYHnXj9mYjm{=Hjm{=IAB%o;nIWdCM zXEHM=bwDvF!N3y<0}}&74O0;hB!-1lr zh8YxH1zt7GDGa3y!3+}^^VZZbrf`%o6!k#W=Rnkh#J~v-l#E)S`kG++K+!pYF|VM8 z5uBv<)G(*;lra>ofa>KfV+dw|>e&Xm;vMJSjdZ$%AbiZIxoX>e5~P*oyew=t%Og3X)&@zn&zf(?d-(t$iyv31UPy)^YMd~1FP(A|Z8*mQNWV*$aQgVwaC8bD*fq}v8 z7Gpt?EJ&}+E%wBel%mw);#=&AMJ1WZIjOf;6N@ubQg3l3<>V)47nbIiq~78H6}IU` znJKr}QZf^B^3!iIr(_m^h_YKuDLJ<|(lS$XQi@YcZn1&#SZdKNmbCn$+*?c;hPRk9 zjBYVy7~f*bFuBE)VS0-x!|WCtC_|M{J?aJsi@=@Q&B;Y5(5K6h$d5! zDo75L^);EmB|woHOaRORg+@urEvAwTaQ@b00oMgZ8X!eD^S=lK149HT|Hpu`DJ=hU zaWL{QiGXuI4Pyi7Y8qgWf4f+Pm>*FRa$9D xX;Er?d=aQzDgqT&MW9mZ7DExJT>w^zWGbj_1Fbb}Ada*HHN=WRT11$5m;q;3mMH)L literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52b1fb1fcf0a40212935406418f41ad1841fa746 GIT binary patch literal 16878 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 tag into head of document""" + def __init__(self, source, encoding): + """Creates a Filter + + :arg source: the source token stream + + :arg encoding: the encoding to set + + """ + base.Filter.__init__(self, source) + self.encoding = encoding + + def __iter__(self): + state = "pre_head" + meta_found = (self.encoding is None) + pending = [] + + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag": + if token["name"].lower() == "head": + state = "in_head" + + elif type == "EmptyTag": + if token["name"].lower() == "meta": + # replace charset with actual encoding + has_http_equiv_content_type = False + for (namespace, name), value in token["data"].items(): + if namespace is not None: + continue + elif name.lower() == 'charset': + token["data"][(namespace, name)] = self.encoding + meta_found = True + break + elif name == 'http-equiv' and value.lower() == 'content-type': + has_http_equiv_content_type = True + else: + if has_http_equiv_content_type and (None, "content") in token["data"]: + token["data"][(None, "content")] = 'text/html; charset=%s' % self.encoding + meta_found = True + + elif token["name"].lower() == "head" and not meta_found: + # insert meta into empty head + yield {"type": "StartTag", "name": "head", + "data": token["data"]} + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + yield {"type": "EndTag", "name": "head"} + meta_found = True + continue + + elif type == "EndTag": + if token["name"].lower() == "head" and pending: + # insert meta into head (if necessary) and flush pending queue + yield pending.pop(0) + if not meta_found: + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + while pending: + yield pending.pop(0) + meta_found = True + state = "post_head" + + if state == "in_head": + pending.append(token) + else: + yield token diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/lint.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/lint.py new file mode 100644 index 0000000..b5bbd97 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/lint.py @@ -0,0 +1,93 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type + +from . import base +from ..constants import namespaces, voidElements + +from ..constants import spaceCharacters +spaceCharacters = "".join(spaceCharacters) + + +class Filter(base.Filter): + """Lints the token stream for errors + + If it finds any errors, it'll raise an ``AssertionError``. + + """ + def __init__(self, source, require_matching_tags=True): + """Creates a Filter + + :arg source: the source token stream + + :arg require_matching_tags: whether or not to require matching tags + + """ + super(Filter, self).__init__(source) + self.require_matching_tags = require_matching_tags + + def __iter__(self): + open_elements = [] + for token in base.Filter.__iter__(self): + type = token["type"] + if type in ("StartTag", "EmptyTag"): + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(token["data"], dict) + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert type == "EmptyTag" + else: + assert type == "StartTag" + if type == "StartTag" and self.require_matching_tags: + open_elements.append((namespace, name)) + for (namespace, name), value in token["data"].items(): + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(value, text_type) + + elif type == "EndTag": + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert False, "Void element reported as EndTag token: %(tag)s" % {"tag": name} + elif self.require_matching_tags: + start = open_elements.pop() + assert start == (namespace, name) + + elif type == "Comment": + data = token["data"] + assert isinstance(data, text_type) + + elif type in ("Characters", "SpaceCharacters"): + data = token["data"] + assert isinstance(data, text_type) + assert data != "" + if type == "SpaceCharacters": + assert data.strip(spaceCharacters) == "" + + elif type == "Doctype": + name = token["name"] + assert name is None or isinstance(name, text_type) + assert token["publicId"] is None or isinstance(name, text_type) + assert token["systemId"] is None or isinstance(name, text_type) + + elif type == "Entity": + assert isinstance(token["name"], text_type) + + elif type == "SerializerError": + assert isinstance(token["data"], text_type) + + else: + assert False, "Unknown token type: %(type)s" % {"type": type} + + yield token diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/optionaltags.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/optionaltags.py new file mode 100644 index 0000000..c8d5e54 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/optionaltags.py @@ -0,0 +1,207 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Removes optional tags from the token stream""" + def slider(self): + previous1 = previous2 = None + for token in self.source: + if previous1 is not None: + yield previous2, previous1, token + previous2 = previous1 + previous1 = token + if previous1 is not None: + yield previous2, previous1, None + + def __iter__(self): + for previous, token, next in self.slider(): + type = token["type"] + if type == "StartTag": + if (token["data"] or + not self.is_optional_start(token["name"], previous, next)): + yield token + elif type == "EndTag": + if not self.is_optional_end(token["name"], next): + yield token + else: + yield token + + def is_optional_start(self, tagname, previous, next): + type = next and next["type"] or None + if tagname in 'html': + # An html element's start tag may be omitted if the first thing + # inside the html element is not a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname == 'head': + # A head element's start tag may be omitted if the first thing + # inside the head element is an element. + # XXX: we also omit the start tag if the head element is empty + if type in ("StartTag", "EmptyTag"): + return True + elif type == "EndTag": + return next["name"] == "head" + elif tagname == 'body': + # A body element's start tag may be omitted if the first thing + # inside the body element is not a space character or a comment, + # except if the first thing inside the body element is a script + # or style element and the node immediately preceding the body + # element is a head element whose end tag has been omitted. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we do not look at the preceding event, so we never omit + # the body element's start tag if it's followed by a script or + # a style element. + return next["name"] not in ('script', 'style') + else: + return True + elif tagname == 'colgroup': + # A colgroup element's start tag may be omitted if the first thing + # inside the colgroup element is a col element, and if the element + # is not immediately preceded by another colgroup element whose + # end tag has been omitted. + if type in ("StartTag", "EmptyTag"): + # XXX: we do not look at the preceding event, so instead we never + # omit the colgroup element's end tag when it is immediately + # followed by another colgroup element. See is_optional_end. + return next["name"] == "col" + else: + return False + elif tagname == 'tbody': + # A tbody element's start tag may be omitted if the first thing + # inside the tbody element is a tr element, and if the element is + # not immediately preceded by a tbody, thead, or tfoot element + # whose end tag has been omitted. + if type == "StartTag": + # omit the thead and tfoot elements' end tag when they are + # immediately followed by a tbody element. See is_optional_end. + if previous and previous['type'] == 'EndTag' and \ + previous['name'] in ('tbody', 'thead', 'tfoot'): + return False + return next["name"] == 'tr' + else: + return False + return False + + def is_optional_end(self, tagname, next): + type = next and next["type"] or None + if tagname in ('html', 'head', 'body'): + # An html element's end tag may be omitted if the html element + # is not immediately followed by a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname in ('li', 'optgroup', 'tr'): + # A li element's end tag may be omitted if the li element is + # immediately followed by another li element or if there is + # no more content in the parent element. + # An optgroup element's end tag may be omitted if the optgroup + # element is immediately followed by another optgroup element, + # or if there is no more content in the parent element. + # A tr element's end tag may be omitted if the tr element is + # immediately followed by another tr element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] == tagname + else: + return type == "EndTag" or type is None + elif tagname in ('dt', 'dd'): + # A dt element's end tag may be omitted if the dt element is + # immediately followed by another dt element or a dd element. + # A dd element's end tag may be omitted if the dd element is + # immediately followed by another dd element or a dt element, + # or if there is no more content in the parent element. + if type == "StartTag": + return next["name"] in ('dt', 'dd') + elif tagname == 'dd': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'p': + # A p element's end tag may be omitted if the p element is + # immediately followed by an address, article, aside, + # blockquote, datagrid, dialog, dir, div, dl, fieldset, + # footer, form, h1, h2, h3, h4, h5, h6, header, hr, menu, + # nav, ol, p, pre, section, table, or ul, element, or if + # there is no more content in the parent element. + if type in ("StartTag", "EmptyTag"): + return next["name"] in ('address', 'article', 'aside', + 'blockquote', 'datagrid', 'dialog', + 'dir', 'div', 'dl', 'fieldset', 'footer', + 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', + 'header', 'hr', 'menu', 'nav', 'ol', + 'p', 'pre', 'section', 'table', 'ul') + else: + return type == "EndTag" or type is None + elif tagname == 'option': + # An option element's end tag may be omitted if the option + # element is immediately followed by another option element, + # or if it is immediately followed by an optgroup + # element, or if there is no more content in the parent + # element. + if type == "StartTag": + return next["name"] in ('option', 'optgroup') + else: + return type == "EndTag" or type is None + elif tagname in ('rt', 'rp'): + # An rt element's end tag may be omitted if the rt element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + # An rp element's end tag may be omitted if the rp element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('rt', 'rp') + else: + return type == "EndTag" or type is None + elif tagname == 'colgroup': + # A colgroup element's end tag may be omitted if the colgroup + # element is not immediately followed by a space character or + # a comment. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we also look for an immediately following colgroup + # element. See is_optional_start. + return next["name"] != 'colgroup' + else: + return True + elif tagname in ('thead', 'tbody'): + # A thead element's end tag may be omitted if the thead element + # is immediately followed by a tbody or tfoot element. + # A tbody element's end tag may be omitted if the tbody element + # is immediately followed by a tbody or tfoot element, or if + # there is no more content in the parent element. + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] in ['tbody', 'tfoot'] + elif tagname == 'tbody': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'tfoot': + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] == 'tbody' + else: + return type == "EndTag" or type is None + elif tagname in ('td', 'th'): + # A td element's end tag may be omitted if the td element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + # A th element's end tag may be omitted if the th element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('td', 'th') + else: + return type == "EndTag" or type is None + return False diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/sanitizer.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/sanitizer.py new file mode 100644 index 0000000..3c243dd --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/sanitizer.py @@ -0,0 +1,916 @@ +"""Deprecated from html5lib 1.1. + +See `here `_ for +information about its deprecation; `Bleach `_ +is recommended as a replacement. Please let us know in the aforementioned issue +if Bleach is unsuitable for your needs. + +""" +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings +from xml.sax.saxutils import escape, unescape + +from pip._vendor.six.moves import urllib_parse as urlparse + +from . import base +from ..constants import namespaces, prefixes + +__all__ = ["Filter"] + + +_deprecation_msg = ( + "html5lib's sanitizer is deprecated; see " + + "https://github.com/html5lib/html5lib-python/issues/443 and please let " + + "us know if Bleach is unsuitable for your needs" +) + +warnings.warn(_deprecation_msg, DeprecationWarning) + +allowed_elements = frozenset(( + (namespaces['html'], 'a'), + (namespaces['html'], 'abbr'), + (namespaces['html'], 'acronym'), + (namespaces['html'], 'address'), + (namespaces['html'], 'area'), + (namespaces['html'], 'article'), + (namespaces['html'], 'aside'), + (namespaces['html'], 'audio'), + (namespaces['html'], 'b'), + (namespaces['html'], 'big'), + (namespaces['html'], 'blockquote'), + (namespaces['html'], 'br'), + (namespaces['html'], 'button'), + (namespaces['html'], 'canvas'), + (namespaces['html'], 'caption'), + (namespaces['html'], 'center'), + (namespaces['html'], 'cite'), + (namespaces['html'], 'code'), + (namespaces['html'], 'col'), + (namespaces['html'], 'colgroup'), + (namespaces['html'], 'command'), + (namespaces['html'], 'datagrid'), + (namespaces['html'], 'datalist'), + (namespaces['html'], 'dd'), + (namespaces['html'], 'del'), + (namespaces['html'], 'details'), + (namespaces['html'], 'dfn'), + (namespaces['html'], 'dialog'), + (namespaces['html'], 'dir'), + (namespaces['html'], 'div'), + (namespaces['html'], 'dl'), + (namespaces['html'], 'dt'), + (namespaces['html'], 'em'), + (namespaces['html'], 'event-source'), + (namespaces['html'], 'fieldset'), + (namespaces['html'], 'figcaption'), + (namespaces['html'], 'figure'), + (namespaces['html'], 'footer'), + (namespaces['html'], 'font'), + (namespaces['html'], 'form'), + (namespaces['html'], 'header'), + (namespaces['html'], 'h1'), + (namespaces['html'], 'h2'), + (namespaces['html'], 'h3'), + (namespaces['html'], 'h4'), + (namespaces['html'], 'h5'), + (namespaces['html'], 'h6'), + (namespaces['html'], 'hr'), + (namespaces['html'], 'i'), + (namespaces['html'], 'img'), + (namespaces['html'], 'input'), + (namespaces['html'], 'ins'), + (namespaces['html'], 'keygen'), + (namespaces['html'], 'kbd'), + (namespaces['html'], 'label'), + (namespaces['html'], 'legend'), + (namespaces['html'], 'li'), + (namespaces['html'], 'm'), + (namespaces['html'], 'map'), + (namespaces['html'], 'menu'), + (namespaces['html'], 'meter'), + (namespaces['html'], 'multicol'), + (namespaces['html'], 'nav'), + (namespaces['html'], 'nextid'), + (namespaces['html'], 'ol'), + (namespaces['html'], 'output'), + (namespaces['html'], 'optgroup'), + (namespaces['html'], 'option'), + (namespaces['html'], 'p'), + (namespaces['html'], 'pre'), + (namespaces['html'], 'progress'), + (namespaces['html'], 'q'), + (namespaces['html'], 's'), + (namespaces['html'], 'samp'), + (namespaces['html'], 'section'), + (namespaces['html'], 'select'), + (namespaces['html'], 'small'), + (namespaces['html'], 'sound'), + (namespaces['html'], 'source'), + (namespaces['html'], 'spacer'), + (namespaces['html'], 'span'), + (namespaces['html'], 'strike'), + (namespaces['html'], 'strong'), + (namespaces['html'], 'sub'), + (namespaces['html'], 'sup'), + (namespaces['html'], 'table'), + (namespaces['html'], 'tbody'), + (namespaces['html'], 'td'), + (namespaces['html'], 'textarea'), + (namespaces['html'], 'time'), + (namespaces['html'], 'tfoot'), + (namespaces['html'], 'th'), + (namespaces['html'], 'thead'), + (namespaces['html'], 'tr'), + (namespaces['html'], 'tt'), + (namespaces['html'], 'u'), + (namespaces['html'], 'ul'), + (namespaces['html'], 'var'), + (namespaces['html'], 'video'), + (namespaces['mathml'], 'maction'), + (namespaces['mathml'], 'math'), + (namespaces['mathml'], 'merror'), + (namespaces['mathml'], 'mfrac'), + (namespaces['mathml'], 'mi'), + (namespaces['mathml'], 'mmultiscripts'), + (namespaces['mathml'], 'mn'), + (namespaces['mathml'], 'mo'), + (namespaces['mathml'], 'mover'), + (namespaces['mathml'], 'mpadded'), + (namespaces['mathml'], 'mphantom'), + (namespaces['mathml'], 'mprescripts'), + (namespaces['mathml'], 'mroot'), + (namespaces['mathml'], 'mrow'), + (namespaces['mathml'], 'mspace'), + (namespaces['mathml'], 'msqrt'), + (namespaces['mathml'], 'mstyle'), + (namespaces['mathml'], 'msub'), + (namespaces['mathml'], 'msubsup'), + (namespaces['mathml'], 'msup'), + (namespaces['mathml'], 'mtable'), + (namespaces['mathml'], 'mtd'), + (namespaces['mathml'], 'mtext'), + (namespaces['mathml'], 'mtr'), + (namespaces['mathml'], 'munder'), + (namespaces['mathml'], 'munderover'), + (namespaces['mathml'], 'none'), + (namespaces['svg'], 'a'), + (namespaces['svg'], 'animate'), + (namespaces['svg'], 'animateColor'), + (namespaces['svg'], 'animateMotion'), + (namespaces['svg'], 'animateTransform'), + (namespaces['svg'], 'clipPath'), + (namespaces['svg'], 'circle'), + (namespaces['svg'], 'defs'), + (namespaces['svg'], 'desc'), + (namespaces['svg'], 'ellipse'), + (namespaces['svg'], 'font-face'), + (namespaces['svg'], 'font-face-name'), + (namespaces['svg'], 'font-face-src'), + (namespaces['svg'], 'g'), + (namespaces['svg'], 'glyph'), + (namespaces['svg'], 'hkern'), + (namespaces['svg'], 'linearGradient'), + (namespaces['svg'], 'line'), + (namespaces['svg'], 'marker'), + (namespaces['svg'], 'metadata'), + (namespaces['svg'], 'missing-glyph'), + (namespaces['svg'], 'mpath'), + (namespaces['svg'], 'path'), + (namespaces['svg'], 'polygon'), + (namespaces['svg'], 'polyline'), + (namespaces['svg'], 'radialGradient'), + (namespaces['svg'], 'rect'), + (namespaces['svg'], 'set'), + (namespaces['svg'], 'stop'), + (namespaces['svg'], 'svg'), + (namespaces['svg'], 'switch'), + (namespaces['svg'], 'text'), + (namespaces['svg'], 'title'), + (namespaces['svg'], 'tspan'), + (namespaces['svg'], 'use'), +)) + +allowed_attributes = frozenset(( + # HTML attributes + (None, 'abbr'), + (None, 'accept'), + (None, 'accept-charset'), + (None, 'accesskey'), + (None, 'action'), + (None, 'align'), + (None, 'alt'), + (None, 'autocomplete'), + (None, 'autofocus'), + (None, 'axis'), + (None, 'background'), + (None, 'balance'), + (None, 'bgcolor'), + (None, 'bgproperties'), + (None, 'border'), + (None, 'bordercolor'), + (None, 'bordercolordark'), + (None, 'bordercolorlight'), + (None, 'bottompadding'), + (None, 'cellpadding'), + (None, 'cellspacing'), + (None, 'ch'), + (None, 'challenge'), + (None, 'char'), + (None, 'charoff'), + (None, 'choff'), + (None, 'charset'), + (None, 'checked'), + (None, 'cite'), + (None, 'class'), + (None, 'clear'), + (None, 'color'), + (None, 'cols'), + (None, 'colspan'), + (None, 'compact'), + (None, 'contenteditable'), + (None, 'controls'), + (None, 'coords'), + (None, 'data'), + (None, 'datafld'), + (None, 'datapagesize'), + (None, 'datasrc'), + (None, 'datetime'), + (None, 'default'), + (None, 'delay'), + (None, 'dir'), + (None, 'disabled'), + (None, 'draggable'), + (None, 'dynsrc'), + (None, 'enctype'), + (None, 'end'), + (None, 'face'), + (None, 'for'), + (None, 'form'), + (None, 'frame'), + (None, 'galleryimg'), + (None, 'gutter'), + (None, 'headers'), + (None, 'height'), + (None, 'hidefocus'), + (None, 'hidden'), + (None, 'high'), + (None, 'href'), + (None, 'hreflang'), + (None, 'hspace'), + (None, 'icon'), + (None, 'id'), + (None, 'inputmode'), + (None, 'ismap'), + (None, 'keytype'), + (None, 'label'), + (None, 'leftspacing'), + (None, 'lang'), + (None, 'list'), + (None, 'longdesc'), + (None, 'loop'), + (None, 'loopcount'), + (None, 'loopend'), + (None, 'loopstart'), + (None, 'low'), + (None, 'lowsrc'), + (None, 'max'), + (None, 'maxlength'), + (None, 'media'), + (None, 'method'), + (None, 'min'), + (None, 'multiple'), + (None, 'name'), + (None, 'nohref'), + (None, 'noshade'), + (None, 'nowrap'), + (None, 'open'), + (None, 'optimum'), + (None, 'pattern'), + (None, 'ping'), + (None, 'point-size'), + (None, 'poster'), + (None, 'pqg'), + (None, 'preload'), + (None, 'prompt'), + (None, 'radiogroup'), + (None, 'readonly'), + (None, 'rel'), + (None, 'repeat-max'), + (None, 'repeat-min'), + (None, 'replace'), + (None, 'required'), + (None, 'rev'), + (None, 'rightspacing'), + (None, 'rows'), + (None, 'rowspan'), + (None, 'rules'), + (None, 'scope'), + (None, 'selected'), + (None, 'shape'), + (None, 'size'), + (None, 'span'), + (None, 'src'), + (None, 'start'), + (None, 'step'), + (None, 'style'), + (None, 'summary'), + (None, 'suppress'), + (None, 'tabindex'), + (None, 'target'), + (None, 'template'), + (None, 'title'), + (None, 'toppadding'), + (None, 'type'), + (None, 'unselectable'), + (None, 'usemap'), + (None, 'urn'), + (None, 'valign'), + (None, 'value'), + (None, 'variable'), + (None, 'volume'), + (None, 'vspace'), + (None, 'vrml'), + (None, 'width'), + (None, 'wrap'), + (namespaces['xml'], 'lang'), + # MathML attributes + (None, 'actiontype'), + (None, 'align'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnlines'), + (None, 'columnspacing'), + (None, 'columnspan'), + (None, 'depth'), + (None, 'display'), + (None, 'displaystyle'), + (None, 'equalcolumns'), + (None, 'equalrows'), + (None, 'fence'), + (None, 'fontstyle'), + (None, 'fontweight'), + (None, 'frame'), + (None, 'height'), + (None, 'linethickness'), + (None, 'lspace'), + (None, 'mathbackground'), + (None, 'mathcolor'), + (None, 'mathvariant'), + (None, 'mathvariant'), + (None, 'maxsize'), + (None, 'minsize'), + (None, 'other'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowlines'), + (None, 'rowspacing'), + (None, 'rowspan'), + (None, 'rspace'), + (None, 'scriptlevel'), + (None, 'selection'), + (None, 'separator'), + (None, 'stretchy'), + (None, 'width'), + (None, 'width'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'type'), + # SVG attributes + (None, 'accent-height'), + (None, 'accumulate'), + (None, 'additive'), + (None, 'alphabetic'), + (None, 'arabic-form'), + (None, 'ascent'), + (None, 'attributeName'), + (None, 'attributeType'), + (None, 'baseProfile'), + (None, 'bbox'), + (None, 'begin'), + (None, 'by'), + (None, 'calcMode'), + (None, 'cap-height'), + (None, 'class'), + (None, 'clip-path'), + (None, 'color'), + (None, 'color-rendering'), + (None, 'content'), + (None, 'cx'), + (None, 'cy'), + (None, 'd'), + (None, 'dx'), + (None, 'dy'), + (None, 'descent'), + (None, 'display'), + (None, 'dur'), + (None, 'end'), + (None, 'fill'), + (None, 'fill-opacity'), + (None, 'fill-rule'), + (None, 'font-family'), + (None, 'font-size'), + (None, 'font-stretch'), + (None, 'font-style'), + (None, 'font-variant'), + (None, 'font-weight'), + (None, 'from'), + (None, 'fx'), + (None, 'fy'), + (None, 'g1'), + (None, 'g2'), + (None, 'glyph-name'), + (None, 'gradientUnits'), + (None, 'hanging'), + (None, 'height'), + (None, 'horiz-adv-x'), + (None, 'horiz-origin-x'), + (None, 'id'), + (None, 'ideographic'), + (None, 'k'), + (None, 'keyPoints'), + (None, 'keySplines'), + (None, 'keyTimes'), + (None, 'lang'), + (None, 'marker-end'), + (None, 'marker-mid'), + (None, 'marker-start'), + (None, 'markerHeight'), + (None, 'markerUnits'), + (None, 'markerWidth'), + (None, 'mathematical'), + (None, 'max'), + (None, 'min'), + (None, 'name'), + (None, 'offset'), + (None, 'opacity'), + (None, 'orient'), + (None, 'origin'), + (None, 'overline-position'), + (None, 'overline-thickness'), + (None, 'panose-1'), + (None, 'path'), + (None, 'pathLength'), + (None, 'points'), + (None, 'preserveAspectRatio'), + (None, 'r'), + (None, 'refX'), + (None, 'refY'), + (None, 'repeatCount'), + (None, 'repeatDur'), + (None, 'requiredExtensions'), + (None, 'requiredFeatures'), + (None, 'restart'), + (None, 'rotate'), + (None, 'rx'), + (None, 'ry'), + (None, 'slope'), + (None, 'stemh'), + (None, 'stemv'), + (None, 'stop-color'), + (None, 'stop-opacity'), + (None, 'strikethrough-position'), + (None, 'strikethrough-thickness'), + (None, 'stroke'), + (None, 'stroke-dasharray'), + (None, 'stroke-dashoffset'), + (None, 'stroke-linecap'), + (None, 'stroke-linejoin'), + (None, 'stroke-miterlimit'), + (None, 'stroke-opacity'), + (None, 'stroke-width'), + (None, 'systemLanguage'), + (None, 'target'), + (None, 'text-anchor'), + (None, 'to'), + (None, 'transform'), + (None, 'type'), + (None, 'u1'), + (None, 'u2'), + (None, 'underline-position'), + (None, 'underline-thickness'), + (None, 'unicode'), + (None, 'unicode-range'), + (None, 'units-per-em'), + (None, 'values'), + (None, 'version'), + (None, 'viewBox'), + (None, 'visibility'), + (None, 'width'), + (None, 'widths'), + (None, 'x'), + (None, 'x-height'), + (None, 'x1'), + (None, 'x2'), + (namespaces['xlink'], 'actuate'), + (namespaces['xlink'], 'arcrole'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'role'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'title'), + (namespaces['xlink'], 'type'), + (namespaces['xml'], 'base'), + (namespaces['xml'], 'lang'), + (namespaces['xml'], 'space'), + (None, 'y'), + (None, 'y1'), + (None, 'y2'), + (None, 'zoomAndPan'), +)) + +attr_val_is_uri = frozenset(( + (None, 'href'), + (None, 'src'), + (None, 'cite'), + (None, 'action'), + (None, 'longdesc'), + (None, 'poster'), + (None, 'background'), + (None, 'datasrc'), + (None, 'dynsrc'), + (None, 'lowsrc'), + (None, 'ping'), + (namespaces['xlink'], 'href'), + (namespaces['xml'], 'base'), +)) + +svg_attr_val_allows_ref = frozenset(( + (None, 'clip-path'), + (None, 'color-profile'), + (None, 'cursor'), + (None, 'fill'), + (None, 'filter'), + (None, 'marker'), + (None, 'marker-start'), + (None, 'marker-mid'), + (None, 'marker-end'), + (None, 'mask'), + (None, 'stroke'), +)) + +svg_allow_local_href = frozenset(( + (None, 'altGlyph'), + (None, 'animate'), + (None, 'animateColor'), + (None, 'animateMotion'), + (None, 'animateTransform'), + (None, 'cursor'), + (None, 'feImage'), + (None, 'filter'), + (None, 'linearGradient'), + (None, 'pattern'), + (None, 'radialGradient'), + (None, 'textpath'), + (None, 'tref'), + (None, 'set'), + (None, 'use') +)) + +allowed_css_properties = frozenset(( + 'azimuth', + 'background-color', + 'border-bottom-color', + 'border-collapse', + 'border-color', + 'border-left-color', + 'border-right-color', + 'border-top-color', + 'clear', + 'color', + 'cursor', + 'direction', + 'display', + 'elevation', + 'float', + 'font', + 'font-family', + 'font-size', + 'font-style', + 'font-variant', + 'font-weight', + 'height', + 'letter-spacing', + 'line-height', + 'overflow', + 'pause', + 'pause-after', + 'pause-before', + 'pitch', + 'pitch-range', + 'richness', + 'speak', + 'speak-header', + 'speak-numeral', + 'speak-punctuation', + 'speech-rate', + 'stress', + 'text-align', + 'text-decoration', + 'text-indent', + 'unicode-bidi', + 'vertical-align', + 'voice-family', + 'volume', + 'white-space', + 'width', +)) + +allowed_css_keywords = frozenset(( + 'auto', + 'aqua', + 'black', + 'block', + 'blue', + 'bold', + 'both', + 'bottom', + 'brown', + 'center', + 'collapse', + 'dashed', + 'dotted', + 'fuchsia', + 'gray', + 'green', + '!important', + 'italic', + 'left', + 'lime', + 'maroon', + 'medium', + 'none', + 'navy', + 'normal', + 'nowrap', + 'olive', + 'pointer', + 'purple', + 'red', + 'right', + 'solid', + 'silver', + 'teal', + 'top', + 'transparent', + 'underline', + 'white', + 'yellow', +)) + +allowed_svg_properties = frozenset(( + 'fill', + 'fill-opacity', + 'fill-rule', + 'stroke', + 'stroke-width', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-opacity', +)) + +allowed_protocols = frozenset(( + 'ed2k', + 'ftp', + 'http', + 'https', + 'irc', + 'mailto', + 'news', + 'gopher', + 'nntp', + 'telnet', + 'webcal', + 'xmpp', + 'callto', + 'feed', + 'urn', + 'aim', + 'rsync', + 'tag', + 'ssh', + 'sftp', + 'rtsp', + 'afs', + 'data', +)) + +allowed_content_types = frozenset(( + 'image/png', + 'image/jpeg', + 'image/gif', + 'image/webp', + 'image/bmp', + 'text/plain', +)) + + +data_content_type = re.compile(r''' + ^ + # Match a content type / + (?P[-a-zA-Z0-9.]+/[-a-zA-Z0-9.]+) + # Match any character set and encoding + (?:(?:;charset=(?:[-a-zA-Z0-9]+)(?:;(?:base64))?) + |(?:;(?:base64))?(?:;charset=(?:[-a-zA-Z0-9]+))?) + # Assume the rest is data + ,.* + $ + ''', + re.VERBOSE) + + +class Filter(base.Filter): + """Sanitizes token stream of XHTML+MathML+SVG and of inline style attributes""" + def __init__(self, + source, + allowed_elements=allowed_elements, + allowed_attributes=allowed_attributes, + allowed_css_properties=allowed_css_properties, + allowed_css_keywords=allowed_css_keywords, + allowed_svg_properties=allowed_svg_properties, + allowed_protocols=allowed_protocols, + allowed_content_types=allowed_content_types, + attr_val_is_uri=attr_val_is_uri, + svg_attr_val_allows_ref=svg_attr_val_allows_ref, + svg_allow_local_href=svg_allow_local_href): + """Creates a Filter + + :arg allowed_elements: set of elements to allow--everything else will + be escaped + + :arg allowed_attributes: set of attributes to allow in + elements--everything else will be stripped + + :arg allowed_css_properties: set of CSS properties to allow--everything + else will be stripped + + :arg allowed_css_keywords: set of CSS keywords to allow--everything + else will be stripped + + :arg allowed_svg_properties: set of SVG properties to allow--everything + else will be removed + + :arg allowed_protocols: set of allowed protocols for URIs + + :arg allowed_content_types: set of allowed content types for ``data`` URIs. + + :arg attr_val_is_uri: set of attributes that have URI values--values + that have a scheme not listed in ``allowed_protocols`` are removed + + :arg svg_attr_val_allows_ref: set of SVG attributes that can have + references + + :arg svg_allow_local_href: set of SVG elements that can have local + hrefs--these are removed + + """ + super(Filter, self).__init__(source) + + warnings.warn(_deprecation_msg, DeprecationWarning) + + self.allowed_elements = allowed_elements + self.allowed_attributes = allowed_attributes + self.allowed_css_properties = allowed_css_properties + self.allowed_css_keywords = allowed_css_keywords + self.allowed_svg_properties = allowed_svg_properties + self.allowed_protocols = allowed_protocols + self.allowed_content_types = allowed_content_types + self.attr_val_is_uri = attr_val_is_uri + self.svg_attr_val_allows_ref = svg_attr_val_allows_ref + self.svg_allow_local_href = svg_allow_local_href + + def __iter__(self): + for token in base.Filter.__iter__(self): + token = self.sanitize_token(token) + if token: + yield token + + # Sanitize the +html+, escaping all elements not in ALLOWED_ELEMENTS, and + # stripping out all attributes not in ALLOWED_ATTRIBUTES. Style attributes + # are parsed, and a restricted set, specified by ALLOWED_CSS_PROPERTIES and + # ALLOWED_CSS_KEYWORDS, are allowed through. attributes in ATTR_VAL_IS_URI + # are scanned, and only URI schemes specified in ALLOWED_PROTOCOLS are + # allowed. + # + # sanitize_html('') + # => <script> do_nasty_stuff() </script> + # sanitize_html('Click here for $100') + # => Click here for $100 + def sanitize_token(self, token): + + # accommodate filters which use token_type differently + token_type = token["type"] + if token_type in ("StartTag", "EndTag", "EmptyTag"): + name = token["name"] + namespace = token["namespace"] + if ((namespace, name) in self.allowed_elements or + (namespace is None and + (namespaces["html"], name) in self.allowed_elements)): + return self.allowed_token(token) + else: + return self.disallowed_token(token) + elif token_type == "Comment": + pass + else: + return token + + def allowed_token(self, token): + if "data" in token: + attrs = token["data"] + attr_names = set(attrs.keys()) + + # Remove forbidden attributes + for to_remove in (attr_names - self.allowed_attributes): + del token["data"][to_remove] + attr_names.remove(to_remove) + + # Remove attributes with disallowed URL values + for attr in (attr_names & self.attr_val_is_uri): + assert attr in attrs + # I don't have a clue where this regexp comes from or why it matches those + # characters, nor why we call unescape. I just know it's always been here. + # Should you be worried by this comment in a sanitizer? Yes. On the other hand, all + # this will do is remove *more* than it otherwise would. + val_unescaped = re.sub("[`\x00-\x20\x7f-\xa0\\s]+", '', + unescape(attrs[attr])).lower() + # remove replacement characters from unescaped characters + val_unescaped = val_unescaped.replace("\ufffd", "") + try: + uri = urlparse.urlparse(val_unescaped) + except ValueError: + uri = None + del attrs[attr] + if uri and uri.scheme: + if uri.scheme not in self.allowed_protocols: + del attrs[attr] + if uri.scheme == 'data': + m = data_content_type.match(uri.path) + if not m: + del attrs[attr] + elif m.group('content_type') not in self.allowed_content_types: + del attrs[attr] + + for attr in self.svg_attr_val_allows_ref: + if attr in attrs: + attrs[attr] = re.sub(r'url\s*\(\s*[^#\s][^)]+?\)', + ' ', + unescape(attrs[attr])) + if (token["name"] in self.svg_allow_local_href and + (namespaces['xlink'], 'href') in attrs and re.search(r'^\s*[^#\s].*', + attrs[(namespaces['xlink'], 'href')])): + del attrs[(namespaces['xlink'], 'href')] + if (None, 'style') in attrs: + attrs[(None, 'style')] = self.sanitize_css(attrs[(None, 'style')]) + token["data"] = attrs + return token + + def disallowed_token(self, token): + token_type = token["type"] + if token_type == "EndTag": + token["data"] = "" % token["name"] + elif token["data"]: + assert token_type in ("StartTag", "EmptyTag") + attrs = [] + for (ns, name), v in token["data"].items(): + attrs.append(' %s="%s"' % (name if ns is None else "%s:%s" % (prefixes[ns], name), escape(v))) + token["data"] = "<%s%s>" % (token["name"], ''.join(attrs)) + else: + token["data"] = "<%s>" % token["name"] + if token.get("selfClosing"): + token["data"] = token["data"][:-1] + "/>" + + token["type"] = "Characters" + + del token["name"] + return token + + def sanitize_css(self, style): + # disallow urls + style = re.compile(r'url\s*\(\s*[^\s)]+?\s*\)\s*').sub(' ', style) + + # gauntlet + if not re.match(r"""^([:,;#%.\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'|"[\s\w]+"|\([\d,\s]+\))*$""", style): + return '' + if not re.match(r"^\s*([-\w]+\s*:[^:;]*(;\s*|$))*$", style): + return '' + + clean = [] + for prop, value in re.findall(r"([-\w]+)\s*:\s*([^:;]*)", style): + if not value: + continue + if prop.lower() in self.allowed_css_properties: + clean.append(prop + ': ' + value + ';') + elif prop.split('-')[0].lower() in ['background', 'border', 'margin', + 'padding']: + for keyword in value.split(): + if keyword not in self.allowed_css_keywords and \ + not re.match(r"^(#[0-9a-fA-F]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$", keyword): # noqa + break + else: + clean.append(prop + ': ' + value + ';') + elif prop.lower() in self.allowed_svg_properties: + clean.append(prop + ': ' + value + ';') + + return ' '.join(clean) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/whitespace.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/whitespace.py new file mode 100644 index 0000000..24bb0de --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/whitespace.py @@ -0,0 +1,38 @@ +from __future__ import absolute_import, division, unicode_literals + +import re + +from . import base +from ..constants import rcdataElements, spaceCharacters +spaceCharacters = "".join(spaceCharacters) + +SPACES_REGEX = re.compile("[%s]+" % spaceCharacters) + + +class Filter(base.Filter): + """Collapses whitespace except in pre, textarea, and script elements""" + spacePreserveElements = frozenset(["pre", "textarea"] + list(rcdataElements)) + + def __iter__(self): + preserve = 0 + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag" \ + and (preserve or token["name"] in self.spacePreserveElements): + preserve += 1 + + elif type == "EndTag" and preserve: + preserve -= 1 + + elif not preserve and type == "SpaceCharacters" and token["data"]: + # Test on token["data"] above to not introduce spaces where there were not + token["data"] = " " + + elif not preserve and type == "Characters": + token["data"] = collapse_spaces(token["data"]) + + yield token + + +def collapse_spaces(text): + return SPACES_REGEX.sub(' ', text) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.py new file mode 100644 index 0000000..3321164 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.py @@ -0,0 +1,2795 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import with_metaclass, viewkeys + +import types + +from . import _inputstream +from . import _tokenizer + +from . import treebuilders +from .treebuilders.base import Marker + +from . import _utils +from .constants import ( + spaceCharacters, asciiUpper2Lower, + specialElements, headingElements, cdataElements, rcdataElements, + tokenTypes, tagTokenTypes, + namespaces, + htmlIntegrationPointElements, mathmlTextIntegrationPointElements, + adjustForeignAttributes as adjustForeignAttributesMap, + adjustMathMLAttributes, adjustSVGAttributes, + E, + _ReparseException +) + + +def parse(doc, treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML document as a string or file-like object into a tree + + :arg doc: the document to parse as a string or file-like object + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import parse + >>> parse('

    This is a doc

    ') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parse(doc, **kwargs) + + +def parseFragment(doc, container="div", treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML fragment as a string or file-like object into a tree + + :arg doc: the fragment to parse as a string or file-like object + + :arg container: the container context to parse the fragment in + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import parseFragment + >>> parseFragment('this is a fragment') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parseFragment(doc, container=container, **kwargs) + + +def method_decorator_metaclass(function): + class Decorated(type): + def __new__(meta, classname, bases, classDict): + for attributeName, attribute in classDict.items(): + if isinstance(attribute, types.FunctionType): + attribute = function(attribute) + + classDict[attributeName] = attribute + return type.__new__(meta, classname, bases, classDict) + return Decorated + + +class HTMLParser(object): + """HTML parser + + Generates a tree structure from a stream of (possibly malformed) HTML. + + """ + + def __init__(self, tree=None, strict=False, namespaceHTMLElements=True, debug=False): + """ + :arg tree: a treebuilder class controlling the type of tree that will be + returned. Built in treebuilders can be accessed through + html5lib.treebuilders.getTreeBuilder(treeType) + + :arg strict: raise an exception when a parse error is encountered + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :arg debug: whether or not to enable debug mode which logs things + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() # generates parser with etree builder + >>> parser = HTMLParser('lxml', strict=True) # generates parser with lxml builder which is strict + + """ + + # Raise an exception on the first error encountered + self.strict = strict + + if tree is None: + tree = treebuilders.getTreeBuilder("etree") + self.tree = tree(namespaceHTMLElements) + self.errors = [] + + self.phases = {name: cls(self, self.tree) for name, cls in + getPhases(debug).items()} + + def _parse(self, stream, innerHTML=False, container="div", scripting=False, **kwargs): + + self.innerHTMLMode = innerHTML + self.container = container + self.scripting = scripting + self.tokenizer = _tokenizer.HTMLTokenizer(stream, parser=self, **kwargs) + self.reset() + + try: + self.mainLoop() + except _ReparseException: + self.reset() + self.mainLoop() + + def reset(self): + self.tree.reset() + self.firstStartTag = False + self.errors = [] + self.log = [] # only used with debug mode + # "quirks" / "limited quirks" / "no quirks" + self.compatMode = "no quirks" + + if self.innerHTMLMode: + self.innerHTML = self.container.lower() + + if self.innerHTML in cdataElements: + self.tokenizer.state = self.tokenizer.rcdataState + elif self.innerHTML in rcdataElements: + self.tokenizer.state = self.tokenizer.rawtextState + elif self.innerHTML == 'plaintext': + self.tokenizer.state = self.tokenizer.plaintextState + else: + # state already is data state + # self.tokenizer.state = self.tokenizer.dataState + pass + self.phase = self.phases["beforeHtml"] + self.phase.insertHtmlElement() + self.resetInsertionMode() + else: + self.innerHTML = False # pylint:disable=redefined-variable-type + self.phase = self.phases["initial"] + + self.lastPhase = None + + self.beforeRCDataPhase = None + + self.framesetOK = True + + @property + def documentEncoding(self): + """Name of the character encoding that was used to decode the input stream, or + :obj:`None` if that is not determined yet + + """ + if not hasattr(self, 'tokenizer'): + return None + return self.tokenizer.stream.charEncoding[0].name + + def isHTMLIntegrationPoint(self, element): + if (element.name == "annotation-xml" and + element.namespace == namespaces["mathml"]): + return ("encoding" in element.attributes and + element.attributes["encoding"].translate( + asciiUpper2Lower) in + ("text/html", "application/xhtml+xml")) + else: + return (element.namespace, element.name) in htmlIntegrationPointElements + + def isMathMLTextIntegrationPoint(self, element): + return (element.namespace, element.name) in mathmlTextIntegrationPointElements + + def mainLoop(self): + CharactersToken = tokenTypes["Characters"] + SpaceCharactersToken = tokenTypes["SpaceCharacters"] + StartTagToken = tokenTypes["StartTag"] + EndTagToken = tokenTypes["EndTag"] + CommentToken = tokenTypes["Comment"] + DoctypeToken = tokenTypes["Doctype"] + ParseErrorToken = tokenTypes["ParseError"] + + for token in self.tokenizer: + prev_token = None + new_token = token + while new_token is not None: + prev_token = new_token + currentNode = self.tree.openElements[-1] if self.tree.openElements else None + currentNodeNamespace = currentNode.namespace if currentNode else None + currentNodeName = currentNode.name if currentNode else None + + type = new_token["type"] + + if type == ParseErrorToken: + self.parseError(new_token["data"], new_token.get("datavars", {})) + new_token = None + else: + if (len(self.tree.openElements) == 0 or + currentNodeNamespace == self.tree.defaultNamespace or + (self.isMathMLTextIntegrationPoint(currentNode) and + ((type == StartTagToken and + token["name"] not in frozenset(["mglyph", "malignmark"])) or + type in (CharactersToken, SpaceCharactersToken))) or + (currentNodeNamespace == namespaces["mathml"] and + currentNodeName == "annotation-xml" and + type == StartTagToken and + token["name"] == "svg") or + (self.isHTMLIntegrationPoint(currentNode) and + type in (StartTagToken, CharactersToken, SpaceCharactersToken))): + phase = self.phase + else: + phase = self.phases["inForeignContent"] + + if type == CharactersToken: + new_token = phase.processCharacters(new_token) + elif type == SpaceCharactersToken: + new_token = phase.processSpaceCharacters(new_token) + elif type == StartTagToken: + new_token = phase.processStartTag(new_token) + elif type == EndTagToken: + new_token = phase.processEndTag(new_token) + elif type == CommentToken: + new_token = phase.processComment(new_token) + elif type == DoctypeToken: + new_token = phase.processDoctype(new_token) + + if (type == StartTagToken and prev_token["selfClosing"] and + not prev_token["selfClosingAcknowledged"]): + self.parseError("non-void-element-with-trailing-solidus", + {"name": prev_token["name"]}) + + # When the loop finishes it's EOF + reprocess = True + phases = [] + while reprocess: + phases.append(self.phase) + reprocess = self.phase.processEOF() + if reprocess: + assert self.phase not in phases + + def parse(self, stream, *args, **kwargs): + """Parse a HTML document into a well-formed tree + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element). + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parse('

    This is a doc

    ') + + + """ + self._parse(stream, False, None, *args, **kwargs) + return self.tree.getDocument() + + def parseFragment(self, stream, *args, **kwargs): + """Parse a HTML fragment into a well-formed tree fragment + + :arg container: name of the element we're setting the innerHTML + property if set to None, default to 'div' + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parseFragment('this is a fragment') + + + """ + self._parse(stream, True, *args, **kwargs) + return self.tree.getFragment() + + def parseError(self, errorcode="XXX-undefined-error", datavars=None): + # XXX The idea is to make errorcode mandatory. + if datavars is None: + datavars = {} + self.errors.append((self.tokenizer.stream.position(), errorcode, datavars)) + if self.strict: + raise ParseError(E[errorcode] % datavars) + + def adjustMathMLAttributes(self, token): + adjust_attributes(token, adjustMathMLAttributes) + + def adjustSVGAttributes(self, token): + adjust_attributes(token, adjustSVGAttributes) + + def adjustForeignAttributes(self, token): + adjust_attributes(token, adjustForeignAttributesMap) + + def reparseTokenNormal(self, token): + # pylint:disable=unused-argument + self.parser.phase() + + def resetInsertionMode(self): + # The name of this method is mostly historical. (It's also used in the + # specification.) + last = False + newModes = { + "select": "inSelect", + "td": "inCell", + "th": "inCell", + "tr": "inRow", + "tbody": "inTableBody", + "thead": "inTableBody", + "tfoot": "inTableBody", + "caption": "inCaption", + "colgroup": "inColumnGroup", + "table": "inTable", + "head": "inBody", + "body": "inBody", + "frameset": "inFrameset", + "html": "beforeHead" + } + for node in self.tree.openElements[::-1]: + nodeName = node.name + new_phase = None + if node == self.tree.openElements[0]: + assert self.innerHTML + last = True + nodeName = self.innerHTML + # Check for conditions that should only happen in the innerHTML + # case + if nodeName in ("select", "colgroup", "head", "html"): + assert self.innerHTML + + if not last and node.namespace != self.tree.defaultNamespace: + continue + + if nodeName in newModes: + new_phase = self.phases[newModes[nodeName]] + break + elif last: + new_phase = self.phases["inBody"] + break + + self.phase = new_phase + + def parseRCDataRawtext(self, token, contentType): + # Generic RCDATA/RAWTEXT Parsing algorithm + assert contentType in ("RAWTEXT", "RCDATA") + + self.tree.insertElement(token) + + if contentType == "RAWTEXT": + self.tokenizer.state = self.tokenizer.rawtextState + else: + self.tokenizer.state = self.tokenizer.rcdataState + + self.originalPhase = self.phase + + self.phase = self.phases["text"] + + +@_utils.memoize +def getPhases(debug): + def log(function): + """Logger that records which phase processes each token""" + type_names = {value: key for key, value in tokenTypes.items()} + + def wrapped(self, *args, **kwargs): + if function.__name__.startswith("process") and len(args) > 0: + token = args[0] + info = {"type": type_names[token['type']]} + if token['type'] in tagTokenTypes: + info["name"] = token['name'] + + self.parser.log.append((self.parser.tokenizer.state.__name__, + self.parser.phase.__class__.__name__, + self.__class__.__name__, + function.__name__, + info)) + return function(self, *args, **kwargs) + else: + return function(self, *args, **kwargs) + return wrapped + + def getMetaclass(use_metaclass, metaclass_func): + if use_metaclass: + return method_decorator_metaclass(metaclass_func) + else: + return type + + # pylint:disable=unused-argument + class Phase(with_metaclass(getMetaclass(debug, log))): + """Base class for helper object that implements each phase of processing + """ + __slots__ = ("parser", "tree", "__startTagCache", "__endTagCache") + + def __init__(self, parser, tree): + self.parser = parser + self.tree = tree + self.__startTagCache = {} + self.__endTagCache = {} + + def processEOF(self): + raise NotImplementedError + + def processComment(self, token): + # For most phases the following is correct. Where it's not it will be + # overridden. + self.tree.insertComment(token, self.tree.openElements[-1]) + + def processDoctype(self, token): + self.parser.parseError("unexpected-doctype") + + def processCharacters(self, token): + self.tree.insertText(token["data"]) + + def processSpaceCharacters(self, token): + self.tree.insertText(token["data"]) + + def processStartTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__startTagCache: + func = self.__startTagCache[name] + else: + func = self.__startTagCache[name] = self.startTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__startTagCache) > len(self.startTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__startTagCache.pop(next(iter(self.__startTagCache))) + return func(token) + + def startTagHtml(self, token): + if not self.parser.firstStartTag and token["name"] == "html": + self.parser.parseError("non-html-root") + # XXX Need a check here to see if the first start tag token emitted is + # this token... If it's not, invoke self.parser.parseError(). + for attr, value in token["data"].items(): + if attr not in self.tree.openElements[0].attributes: + self.tree.openElements[0].attributes[attr] = value + self.parser.firstStartTag = False + + def processEndTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__endTagCache: + func = self.__endTagCache[name] + else: + func = self.__endTagCache[name] = self.endTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__endTagCache) > len(self.endTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__endTagCache.pop(next(iter(self.__endTagCache))) + return func(token) + + class InitialPhase(Phase): + __slots__ = tuple() + + def processSpaceCharacters(self, token): + pass + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processDoctype(self, token): + name = token["name"] + publicId = token["publicId"] + systemId = token["systemId"] + correct = token["correct"] + + if (name != "html" or publicId is not None or + systemId is not None and systemId != "about:legacy-compat"): + self.parser.parseError("unknown-doctype") + + if publicId is None: + publicId = "" + + self.tree.insertDoctype(token) + + if publicId != "": + publicId = publicId.translate(asciiUpper2Lower) + + if (not correct or token["name"] != "html" or + publicId.startswith( + ("+//silmaril//dtd html pro v0r11 19970101//", + "-//advasoft ltd//dtd html 3.0 aswedit + extensions//", + "-//as//dtd html 3.0 aswedit + extensions//", + "-//ietf//dtd html 2.0 level 1//", + "-//ietf//dtd html 2.0 level 2//", + "-//ietf//dtd html 2.0 strict level 1//", + "-//ietf//dtd html 2.0 strict level 2//", + "-//ietf//dtd html 2.0 strict//", + "-//ietf//dtd html 2.0//", + "-//ietf//dtd html 2.1e//", + "-//ietf//dtd html 3.0//", + "-//ietf//dtd html 3.2 final//", + "-//ietf//dtd html 3.2//", + "-//ietf//dtd html 3//", + "-//ietf//dtd html level 0//", + "-//ietf//dtd html level 1//", + "-//ietf//dtd html level 2//", + "-//ietf//dtd html level 3//", + "-//ietf//dtd html strict level 0//", + "-//ietf//dtd html strict level 1//", + "-//ietf//dtd html strict level 2//", + "-//ietf//dtd html strict level 3//", + "-//ietf//dtd html strict//", + "-//ietf//dtd html//", + "-//metrius//dtd metrius presentational//", + "-//microsoft//dtd internet explorer 2.0 html strict//", + "-//microsoft//dtd internet explorer 2.0 html//", + "-//microsoft//dtd internet explorer 2.0 tables//", + "-//microsoft//dtd internet explorer 3.0 html strict//", + "-//microsoft//dtd internet explorer 3.0 html//", + "-//microsoft//dtd internet explorer 3.0 tables//", + "-//netscape comm. corp.//dtd html//", + "-//netscape comm. corp.//dtd strict html//", + "-//o'reilly and associates//dtd html 2.0//", + "-//o'reilly and associates//dtd html extended 1.0//", + "-//o'reilly and associates//dtd html extended relaxed 1.0//", + "-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", + "-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", + "-//spyglass//dtd html 2.0 extended//", + "-//sq//dtd html 2.0 hotmetal + extensions//", + "-//sun microsystems corp.//dtd hotjava html//", + "-//sun microsystems corp.//dtd hotjava strict html//", + "-//w3c//dtd html 3 1995-03-24//", + "-//w3c//dtd html 3.2 draft//", + "-//w3c//dtd html 3.2 final//", + "-//w3c//dtd html 3.2//", + "-//w3c//dtd html 3.2s draft//", + "-//w3c//dtd html 4.0 frameset//", + "-//w3c//dtd html 4.0 transitional//", + "-//w3c//dtd html experimental 19960712//", + "-//w3c//dtd html experimental 970421//", + "-//w3c//dtd w3 html//", + "-//w3o//dtd w3 html 3.0//", + "-//webtechs//dtd mozilla html 2.0//", + "-//webtechs//dtd mozilla html//")) or + publicId in ("-//w3o//dtd w3 html strict 3.0//en//", + "-/w3c/dtd html 4.0 transitional/en", + "html") or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is None or + systemId and systemId.lower() == "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"): + self.parser.compatMode = "quirks" + elif (publicId.startswith( + ("-//w3c//dtd xhtml 1.0 frameset//", + "-//w3c//dtd xhtml 1.0 transitional//")) or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is not None): + self.parser.compatMode = "limited quirks" + + self.parser.phase = self.parser.phases["beforeHtml"] + + def anythingElse(self): + self.parser.compatMode = "quirks" + self.parser.phase = self.parser.phases["beforeHtml"] + + def processCharacters(self, token): + self.parser.parseError("expected-doctype-but-got-chars") + self.anythingElse() + return token + + def processStartTag(self, token): + self.parser.parseError("expected-doctype-but-got-start-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEndTag(self, token): + self.parser.parseError("expected-doctype-but-got-end-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEOF(self): + self.parser.parseError("expected-doctype-but-got-eof") + self.anythingElse() + return True + + class BeforeHtmlPhase(Phase): + __slots__ = tuple() + + # helper methods + def insertHtmlElement(self): + self.tree.insertRoot(impliedTagToken("html", "StartTag")) + self.parser.phase = self.parser.phases["beforeHead"] + + # other + def processEOF(self): + self.insertHtmlElement() + return True + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.insertHtmlElement() + return token + + def processStartTag(self, token): + if token["name"] == "html": + self.parser.firstStartTag = True + self.insertHtmlElement() + return token + + def processEndTag(self, token): + if token["name"] not in ("head", "body", "html", "br"): + self.parser.parseError("unexpected-end-tag-before-html", + {"name": token["name"]}) + else: + self.insertHtmlElement() + return token + + class BeforeHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.startTagHead(impliedTagToken("head", "StartTag")) + return True + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.tree.insertElement(token) + self.tree.headPointer = self.tree.openElements[-1] + self.parser.phase = self.parser.phases["inHead"] + + def startTagOther(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagImplyHead(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagOther(self, token): + self.parser.parseError("end-tag-after-implied-root", + {"name": token["name"]}) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + (("head", "body", "html", "br"), endTagImplyHead) + ]) + endTagHandler.default = endTagOther + + class InHeadPhase(Phase): + __slots__ = tuple() + + # the real thing + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.parser.parseError("two-heads-are-not-better-than-one") + + def startTagBaseLinkCommand(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + def startTagMeta(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + attributes = token["data"] + if self.parser.tokenizer.stream.charEncoding[1] == "tentative": + if "charset" in attributes: + self.parser.tokenizer.stream.changeEncoding(attributes["charset"]) + elif ("content" in attributes and + "http-equiv" in attributes and + attributes["http-equiv"].lower() == "content-type"): + # Encoding it as UTF-8 here is a hack, as really we should pass + # the abstract Unicode string, and just use the + # ContentAttrParser on that, but using UTF-8 allows all chars + # to be encoded and as a ASCII-superset works. + data = _inputstream.EncodingBytes(attributes["content"].encode("utf-8")) + parser = _inputstream.ContentAttrParser(data) + codec = parser.parse() + self.parser.tokenizer.stream.changeEncoding(codec) + + def startTagTitle(self, token): + self.parser.parseRCDataRawtext(token, "RCDATA") + + def startTagNoFramesStyle(self, token): + # Need to decide whether to implement the scripting-disabled case + self.parser.parseRCDataRawtext(token, "RAWTEXT") + + def startTagNoscript(self, token): + if self.parser.scripting: + self.parser.parseRCDataRawtext(token, "RAWTEXT") + else: + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inHeadNoscript"] + + def startTagScript(self, token): + self.tree.insertElement(token) + self.parser.tokenizer.state = self.parser.tokenizer.scriptDataState + self.parser.originalPhase = self.parser.phase + self.parser.phase = self.parser.phases["text"] + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHead(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "head", "Expected head got %s" % node.name + self.parser.phase = self.parser.phases["afterHead"] + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.endTagHead(impliedTagToken("head")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("title", startTagTitle), + (("noframes", "style"), startTagNoFramesStyle), + ("noscript", startTagNoscript), + ("script", startTagScript), + (("base", "basefont", "bgsound", "command", "link"), + startTagBaseLinkCommand), + ("meta", startTagMeta), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("head", endTagHead), + (("br", "html", "body"), endTagHtmlBodyBr) + ]) + endTagHandler.default = endTagOther + + class InHeadNoscriptPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.parser.parseError("eof-in-head-noscript") + self.anythingElse() + return True + + def processComment(self, token): + return self.parser.phases["inHead"].processComment(token) + + def processCharacters(self, token): + self.parser.parseError("char-in-head-noscript") + self.anythingElse() + return token + + def processSpaceCharacters(self, token): + return self.parser.phases["inHead"].processSpaceCharacters(token) + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBaseLinkCommand(self, token): + return self.parser.phases["inHead"].processStartTag(token) + + def startTagHeadNoscript(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagNoscript(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "noscript", "Expected noscript got %s" % node.name + self.parser.phase = self.parser.phases["inHead"] + + def endTagBr(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + # Caller must raise parse error first! + self.endTagNoscript(impliedTagToken("noscript")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + (("basefont", "bgsound", "link", "meta", "noframes", "style"), startTagBaseLinkCommand), + (("head", "noscript"), startTagHeadNoscript), + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("noscript", endTagNoscript), + ("br", endTagBr), + ]) + endTagHandler.default = endTagOther + + class AfterHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBody(self, token): + self.parser.framesetOK = False + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inBody"] + + def startTagFrameset(self, token): + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inFrameset"] + + def startTagFromHead(self, token): + self.parser.parseError("unexpected-start-tag-out-of-my-head", + {"name": token["name"]}) + self.tree.openElements.append(self.tree.headPointer) + self.parser.phases["inHead"].processStartTag(token) + for node in self.tree.openElements[::-1]: + if node.name == "head": + self.tree.openElements.remove(node) + break + + def startTagHead(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.tree.insertElement(impliedTagToken("body", "StartTag")) + self.parser.phase = self.parser.phases["inBody"] + self.parser.framesetOK = True + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("body", startTagBody), + ("frameset", startTagFrameset), + (("base", "basefont", "bgsound", "link", "meta", "noframes", "script", + "style", "title"), + startTagFromHead), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + endTagHandler = _utils.MethodDispatcher([(("body", "html", "br"), + endTagHtmlBodyBr)]) + endTagHandler.default = endTagOther + + class InBodyPhase(Phase): + # http://www.whatwg.org/specs/web-apps/current-work/#parsing-main-inbody + # the really-really-really-very crazy mode + __slots__ = ("processSpaceCharacters",) + + def __init__(self, *args, **kwargs): + super(InBodyPhase, self).__init__(*args, **kwargs) + # Set this to the default handler + self.processSpaceCharacters = self.processSpaceCharactersNonPre + + def isMatchingFormattingElement(self, node1, node2): + return (node1.name == node2.name and + node1.namespace == node2.namespace and + node1.attributes == node2.attributes) + + # helper + def addFormattingElement(self, token): + self.tree.insertElement(token) + element = self.tree.openElements[-1] + + matchingElements = [] + for node in self.tree.activeFormattingElements[::-1]: + if node is Marker: + break + elif self.isMatchingFormattingElement(node, element): + matchingElements.append(node) + + assert len(matchingElements) <= 3 + if len(matchingElements) == 3: + self.tree.activeFormattingElements.remove(matchingElements[-1]) + self.tree.activeFormattingElements.append(element) + + # the real deal + def processEOF(self): + allowed_elements = frozenset(("dd", "dt", "li", "p", "tbody", "td", + "tfoot", "th", "thead", "tr", "body", + "html")) + for node in self.tree.openElements[::-1]: + if node.name not in allowed_elements: + self.parser.parseError("expected-closing-tag-but-got-eof") + break + # Stop parsing + + def processSpaceCharactersDropNewline(self, token): + # Sometimes (start of
    , , and 

    v5@6-9Q>OIbr-BrN>%Lp!sM4@y2F2i0uORDFKuc3@fzH-KT6_pP zd8HUMepirKQUprBMT(%3O%ByGh^jL9>1E)>FGZmBF1Og@;}dgo;^S{|rl*$pfY%rl zfg7n0Kz=X;8OH0BSey#q;D3wVwIUgGmKf)|1IT^E72X!3)Z3Ao?a>f&B=hL2*5-4;L#Px*av(Bpa|SI1@+az zonl0j7ukaSmY)Rt{DUZVnC(Ha=MnRt`1}X%03nUJhOk9so@mm2m(7 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/models.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..179d7bfcebbdd194700edc3e828f3c7500702206 GIT binary patch literal 1887 zcmYe~<>g{vU|^WXFgrbgm4V?gh=Yuo85kHG7#J9ejTjghQW&BbQW#U1au}l+Qy5d2 zbC`0OqnLA9qF8cSqgWXk+!<0>QdnCUQdparqS#WHf*CZ~s^mgTGIKIZGE<8c((;QG zQc}}0^D^_&6>{@aQge#AUV?1%(`3HI?3h=1i^DlFCnqr}C-oLfNM%84GDs2`Gr^n_ z!N9dVnJdO%!efzi6sh|#R^Fvy$bnx3W*BY zsg<{Q;vpJR<3T+Bcvv9BC+8#<7bk-P8Rkn68{|u81_p*=0R{$!8paxic!nCL8ishr z6oz1im5hFxOhs%A3=Bo=3=9mK%(qyIQ*+X8F@uceLp6CNLlF-H1H-Q<{fzwFRQ>ew z%#spAC>4}ikgxBXnUYxS;p?lPlbNJnP+5|ZpJ%LRsb8E~lB!#fn4F!Mo?5J5kXfJ~ zpP5&ZT9lWVqhDH*nNzF}i9Nl7%3B=q@tJvg1g-kGaFyG>UMdU4x{DRb? z#FG4?TWs<1IVJJ&E1AF!yTzJcl95^jaT?f>AompsGcYiSAvsMNNAQ45BEw-tf}k(~ z`5o+>)cE)!5s(Pj0bl~`3Xlt=h;c<~d_2XjNH4+R3ULMo200>J0WyGcSKtZ@2?hoR zC1PAbjj%{9#1R&f3=9lvM7RQE07f|hDl5PV78IH#;F2PXv6-n@poA$HTw-J~*Dz)= zH^UP!%Pp?V;>^6_lEl2^RB-Wei_b5=#51=bCp9-UuOu}ElE;|ANx4Xrfq~%`TW)Ge zMt%x4v5VYA75CS zm;;qzkB?8uPmYhj#Tg%8oReQt93Ni<%8^B&(h!`Hia_bO2$YP9K(SZ^3PeZ_04H?> z0Z#O+3=9mQVx$<9BRCjYm^hd?SUFe_un43=lf6g*lw%-ysHCzWGcUaeR4NpKLb(W3 hHh|S3g#*|gkQKK$Y#@HI0~KY(pb%kU=3o?I1^}@Km`DHs literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..361851b54fd87c6be6d63490d74a51676b0dd5a3 GIT binary patch literal 2511 zcmYe~<>g{vU|^WXFgtxMHv_|C5C<7EGcYhXFfcF_&tqUoskv*vK*az=52*=#vnx!h6Qxja!kU_N^eZ!TXH zADGRN!=Eb-k~<_P8rMF}x7q%tfJP8C_m7$us*mBQV^5G9tvlfv7=5G9_%m%`t| z5G9c!kRsT^5G9$y7|ft4^b+K9KTXD4?7peR#fj;unvA!&+)`6h0uqagQ;Rg2ZgKb* zlw{`TCFa~>4Jj?i0V&`u$WD(hN-fSWElN%;)?~WHRa}sooSBxHT2y?Cy)3n;I5R&_ zlkpahOJ;FNQD#yp$N){oTY`T1d8xjsC5b7CC5f&@MfpV_MJbuZ1v!b8@db$`8Ocl_ z_dqcV0|Ns)0|SFIC@@VJ7#M08QW#4aig;3(f*DE}7BJQ@EM%-@Dq&i{oWi_-rG&MF zt%k9gX(8i6##-hY<{G9lhF}Iwmc$v13=CWf3JMC&8L7$H3YlpNB^jv->6vAzc?toQ zB^mj73Q#vIe!2PJl1vbs9Ah9Sh7p65nGcPUQ zO2JXVShoZeObYpF3YmE&#R^5K1x2aFsd*)tdFcv?Pz%8ZfSi<@n3Z3oo12*jCXdZ?`ms2% zB(pdzGqo5T3`G!c=BDPA=)qm(Uy_kpRGwL!s-plgSRuhJF{d~+0d8GlW^rnLnJfv()9`|Z;653tkm{=IOn8X;1Bp4VNk{O|S07QZE0V^yYG=K^f##+V_h8l(v#w@00rXsZ( zh6T(uj0+jTEEW)}mMPBwB$~pskg>=ig{hXYhG79rMy!N&0b2@l340Ag7DqGVLQs*! zQp;4sl)_rdP?S-^S;GLzM@@_+T+IxioV0+uhG`)qBSQ`I0-lASJjGVk2u>?jMUZrW zk*}>_DKG`81OR1){GyU#g@la6;`m%>IiR7L05%Jh8$gLyA*r-PAt61r1X%?%85S#m zY=WfITO7WwA&xGNA&ylX0p9Mqo_=orRpNg63NV8e((+65QWP@t6jY0EG5Bfn-r~wE z&de(=Nz6-5En)+uE)h@x<(Ze3529fO)h!-m=iTB#cFHZboc#3k)S_GL<%vaknR)3& z+#qu}a`KZCL4{lqC@zaYHNY*FwA9p;Tdc`B`NgT4EVo!dA#sZr=D7I0#N5B*(zOpax1PAO-^)3!?xd(|;Cb9!4%k7DgT>Ax0J^4n{5} zHfAnHuv(PF19A%pg9}lRDWHVY%vj4MFnP&2y;FtODiNQfV>C`MID9wB5-VhP037C$jdKLfR==i2(02qD`NdL znZfSA#hjj6QY6U0z@W)oqyh?GaD@XZVB=FVlS_((K%oN4w1_~uB@ButwA|$c3N%oR zFtC9Fh=ZAfsYnYwcY$ggcmNrJYncTMpnxgTt6_iykqbkt1USH$7BUox)G#h!TFAh} zz{n8HP$&Ybi!_=2ZgG101&28L__ziYNkLpL3v#&-$XT#piqFZ+OD(>|3aS(fG?^fN zV*v?5JOcI-D9Uf~g0z9tYEDjSQ83&eOk9k7j2w)7j79n&OQdeGgVJMWUivNG)ZE0( z9KBpfEnWoj)h!-~7&KLZJb8<)q_O~%Y(Zs85vWkP#a)nDpch}3nwOGa1kM#vqDUfo z@Ink+L_-Q?NfZUhZGj?Akf$ZU^03lSFSQ~$72Jj>24|03Xwu-qQZF~NI2n?eIMY*0 zd?2}uBOaVj;^T|tK~WAW8Nn$89E;!}KngfS=yBNO=BJeAq}qW>(PB_^a4_;P@-PZ8 X@h}Q7@-Xo*@-T5RbBJ-sa0mhbB1OV3 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f8fae1fd7d896514f4c6d21f08e4726cc09b725 GIT binary patch literal 3028 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..255f07006c458371602466cc091358a89c5287e0 GIT binary patch literal 2953 zcmYe~<>g{vU|^WXFgra(gn{8Ph=Yuo85kHG7#J9e!x$JCQW#Pga~PsPG*b>^E>jd! zE^`!fE=v>(BSQ*v6l;oL3Tp~m3u6>p3VRAi3qurp3TFye3quq~3U>-m3qurV3U3Nu z3qurF3V(_~3qurl3S%&XrqD}}jeeTUw^)2Ki%V{C_!pF9=I15m+~NpMEi6sVOHNHx zXJlZ=%q_?-DpAPH*HOqX)=?;~1QDqvr3EGV`8mZp3MKj3sd<@Isn#GVy~LvQvS@=? z1zUw`1I40RYlZmuw9K5;_;_0gKTW|_Aw9Juv81F(1Ey0)K|Q}9HBVhf0YqtPz_e&8 zWTq+P7wZ)ymSpIqR%8~J6eG!{<`kzYWajGymlS2@rF;5osHYX>=PDG#ou&YFIatIR zBB7zFu4$c|pOUIztB|Hwl$w~Lp{ZAtT9A{NoT{N7QxpSog?db$x~6rSUUE);ajJ%< zb!tUwvPN=#Zb4>Fss>224%}Bd3hE$PbxlpTWEN0(LNO}?0|N*^U^ZY ztrR@d6hewhQ*{(lGK&+Fa#D*G3Q~)TK}k~qq)q{%uCxg1d{AIOU0<4)RGOBST9ld+ zpI=&1P+EdySYk>_u|i2ksscihLUDO!Npc3rLnRrhV2{AVPa!9>xCG+NDkk01Dkk0J zDqdaPynJ1d8+4P?(luFbF&9@B-{JzLfYK6>OK%Cp2fK!Z288(g`vk`adwBZZVoS>} z%1tcMWWB`;PKdCuy~PI!5m;c|;zJFFTY?C8LOpYfC9x>IcqKy-9|Hr!uN3`^{M=Oi z^zzJ-5<@5zlv zpdX)^SCU$kmzbkpT9TPltPge{I5ov5m1gFo=oM7nlFUuaPK`&B0VSw-kUK;{Nm~e% z-UT=qSs1w(g&0{FA*><+1_lP)`9TAmA8HtC7*iNin0lGP`G7fvrG`138Jq`LY9M)m zC73~z)h}cvQxT}REaG8cV7SGdl#*Fo5?`K?nwnF^q?@vm5p0_#YY`^{0|Qv$Encwm z;UUYPl3HAnnFmfT@hO=_MZ6%Dpg;tNWD!5eTm^KGBH07>uK~!vASWGZv)8bLik>`<=Un1)PvVYPeI_poxncnz%A*xKr4niHp029jvaV zhC79$29m(IYdDH}YPdlyAaH`?uHh=0Q^TFY4KX>7tA;y;2g0slE814Wox)qg235%o zPS)Ht+`$Z*e10LC%;3@l9Nv(!haH-(syK9Yi&B&Gi&CnTb#;p~^U`xtb<0wViZk=` zbW6~$pfH#z{mp4 z3y}1~!BhlF^_t9nZf=@9MWC|s7F$VWL1tch5vU+70%evWP!1^ql~v%<9bC+U%P(+# zDgq@zuqj1|QXI?z7v&r_x%nxjIjMGxAUA?aJq|_@PNx4%ybO#Cj0}Icq&b8+csLX} F1OTrJ{Qdv{ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..178a7438caa00ac12ec53743487900dc4ed4b187 GIT binary patch literal 5690 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/urls.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0790910f7ab2e549e6e96dd39e6c7feb637431e7 GIT binary patch literal 1527 zcmYe~<>g{vU|^WXFgx9yoq^#oh=Yuo7#J8F7#J9eLl_tsQW#Pga~Pr^G-DJan9mf& z45nGYG*b?1E?X2EBSQ*v3QG=qE=LpxBSQ*n3R??96lV&13P%e=6juso3Req56n6?^ zFoP!dOOSnjnvAzN{0mAl^YapOUNSN;FlaK~Vh{K9bMX%kP6qKosz4aTW?^7pa0a;SDNGBQQkW$f7BDVk2xib^@%zPSRm9A|z)%FztjTnX zwYVTBv*Z?QPJVf6ktX9U=F*~^l?+9k3=9mvBJ?xzb5r%x%QH(#453s|YC*ofZ)Qqj zv4^j(eokhRenDkPMt+{Lo~3?qW=X1UL1J=tVtQ(^enDn|etc$LNorAEVvc@kNoG#5 zerZuov0g#tExz>BlK9f1ocQA8jMUszP{0?nfxN`T!N|f`#Ld9KfZ|h7*n{N3KGkDj zU?^e8VqCxkCYfs(7BVhmtYs)+$zol=mcm%VlEuD&11!o^%UA;nS*EHCE(HYz1?T*{ zvecpyg+zsd#F7k!l6-|kg|y6^R4awhARj#ig^-L?h)j8APL4uSszPpJN~%I)QgMDx zX-TR=VqS_uMq*hi*sQ|R{F2lZi1LEOqLN}gu<$Qduz{MKx0v#aZ?S;vxy6x}Uz7`G zu_q=KgBfh4ML9W{Nw-)F5{rscZ?Tsa3W=dh6%iPS^#8|?Z#k2q%xG}7?jI~U)%(aZQj5SO}HZ@EsEZIy& zPAROlOnEXTEJXn+Y&A^c47E&od?l>yL-GC|E?Tfkn!RKqOJu#mBqxrC)?M-5Z) zjuMU<=4Qqej%?PV9W~4;oRSPFT-i)uHn${031=2p83UNdlfv7|B*~D%2jz38@PqiZ z%r(rx44MK}8sIQTL@PM#L6HfGTTswIqNRw3fq|jQFfzYXAvrNmAwMstQlX@@C=VL_ zpoFQAnOBkz=7WO0SV1E%zeM2|qvkEnoc!d(oQ(Y9l3NT_OffN47J2!3x?n-Da)r3D0`J81=#V@Fgf|zXU~# zCQ}h8W~!L1^!+rsZ*diufD%=CW=Td7C|Zkz7#J9Caey2O%CSWtEw{MB5_3vZU5kqH zi;6@*@;s$QIYuB~gS>EyIVUym7F%&iQD$EHE#Ac9N(%v^t&Sh)T$vGV+8V&nV8#KFT~c#3#IsaP52+?>oLJ#Z!f zd-E0_BxC5o@&Q{(WkF_MdJ!m`Zm}ijgYpsB^WahfoWjB8LUII}^EqsC^HWN5Qtd#c WU9kWI0|N&m1oANPFmteTa038v$%R7z literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..350549ba486fc447dcd456ad513ae438e4b4bcb0 GIT binary patch literal 3206 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 None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..c28ec42 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,35 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +from typing import List + +from pip._vendor import appdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + path = _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + if _appdirs.system == "darwin" and not os.path.isdir(path): + path = os.path.expanduser("~/.config/") + if appname: + path = os.path.join(path, appname) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if _appdirs.system not in ["win32", "darwin"]: + # always look in /etc directly as well + return dirval.split(os.pathsep) + ["/etc"] + return [dirval] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compat.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..12854d6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,63 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..745c672 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,168 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import TYPE_CHECKING, List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +if TYPE_CHECKING: + from pip._vendor.packaging.tags import PythonVersion + + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> "PythonVersion": + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional["PythonVersion"] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/datetime.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..264de47 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..7f525ff --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,104 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises errors if pip's current version is greater than or equal to + this. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + + Always pass replacement, gone_in and issue as keyword arguments for clarity + at the call site. + """ + + # Construct a nice message. + # This is eagerly formatted as we want it to get logged as if someone + # typed this entire message out. + sentences = [ + (reason, DEPRECATION_MSG_PREFIX + "{}"), + (gone_in, "pip {} will remove support for this functionality."), + (replacement, "A possible replacement is {}."), + ( + issue, + ( + "You can find discussion regarding this at " + "https://github.com/pypa/pip/issues/{}." + ), + ), + ] + message = " ".join( + template.format(val) for val, template in sentences if val is not None + ) + + # Raise as an error if it has to be removed. + if gone_in is not None and parse(current_version) >= parse(gone_in): + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..39da636 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,79 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/distutils_args.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 0000000..4abac87 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/distutils_args.py @@ -0,0 +1,42 @@ +from distutils.errors import DistutilsArgError +from distutils.fancy_getopt import FancyGetopt +from typing import Dict, List + +_options = [ + ("exec-prefix=", None, ""), + ("home=", None, ""), + ("install-base=", None, ""), + ("install-data=", None, ""), + ("install-headers=", None, ""), + ("install-lib=", None, ""), + ("install-platlib=", None, ""), + ("install-purelib=", None, ""), + ("install-scripts=", None, ""), + ("prefix=", None, ""), + ("root=", None, ""), + ("user", None, ""), +] + + +# typeshed doesn't permit Tuple[str, None, str], see python/typeshed#3469. +_distutils_getopt = FancyGetopt(_options) # type: ignore + + +def parse_distutils_args(args: List[str]) -> Dict[str, str]: + """Parse provided arguments, returning an object that has the + matched arguments. + + Any unknown arguments are ignored. + """ + result = {} + for arg in args: + try: + _, match = _distutils_getopt.getopt(args=[arg]) + except DistutilsArgError: + # We don't care about any other options, which here may be + # considered unrecognized since our option list is not + # exhaustive. + pass + else: + result.update(match.__dict__) + return result diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/encoding.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..5fb307c --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(br"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..a5f0e9c --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,27 @@ +import sys +from typing import List, Optional + +from pip._internal.cli.main import main + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..610b373 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,182 @@ +import fnmatch +import os +import os.path +import random +import shutil +import stat +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Iterator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +def copy2_fixed(src: str, dest: str) -> None: + """Wrap shutil.copy2() but map errors copying socket files to + SpecialFileError as expected. + + See also https://bugs.python.org/issue37700. + """ + try: + shutil.copy2(src, dest) + except OSError: + for f in [src, dest]: + try: + is_socket_file = is_socket(f) + except OSError: + # An error has already occurred. Another error here is not + # a problem and we can ignore it. + pass + else: + if is_socket_file: + raise shutil.SpecialFileError(f"`{f}` is a socket") + + raise + + +def is_socket(path: str) -> bool: + return stat.S_ISSOCK(os.lstat(path).st_mode) + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Iterator[BinaryIO]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..449f86f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,28 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS = (".tar.bz2", ".tbz") # type: Tuple[str, ...] +XZ_EXTENSIONS = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) # type: Tuple[str, ...] +ZIP_EXTENSIONS = (".zip", WHEEL_EXTENSION) # type: Tuple[str, ...] +TAR_EXTENSIONS = (".tar.gz", ".tgz", ".tar") # type: Tuple[str, ...] +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name): + # type: (str) -> bool + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/glibc.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..f10b47e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,92 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string(): + # type: () -> Optional[str] + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr(): + # type: () -> Optional[str] + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = os.confstr("CS_GNU_LIBC_VERSION").split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes(): + # type: () -> Optional[str] + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver(): + # type: () -> Tuple[str, str] + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/hashes.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..28bb301 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,165 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterator, List + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes=None): + # type: (Dict[str, List[str]]) -> None + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other): + # type: (Hashes) -> Hashes + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self): + # type: () -> int + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed( + self, + hash_name, # type: str + hex_digest, # type: str + ): + # type: (...) -> bool + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks): + # type: (Iterator[bytes]) -> None + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file): + # type: (BinaryIO) -> None + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path): + # type: (str) -> None + with open(path, "rb") as file: + return self.check_against_file(file) + + def __nonzero__(self): + # type: () -> bool + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + def __eq__(self, other): + # type: (object) -> bool + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self): + # type: () -> int + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self): + # type: () -> None + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 0000000..eda656f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,36 @@ +"""A helper module that injects SecureTransport, on import. + +The import should be done as early as possible, to ensure all requests and +sessions (or whatever) are created after injecting SecureTransport. + +Note that we only do the injection on macOS, when the linked OpenSSL is too +old to handle TLSv1.2. +""" + +import sys + + +def inject_securetransport(): + # type: () -> None + # Only relevant on macOS + if sys.platform != "darwin": + return + + try: + import ssl + except ImportError: + return + + # Checks for OpenSSL 1.0.1 + if ssl.OPENSSL_VERSION_NUMBER >= 0x1000100F: + return + + try: + from pip._vendor.urllib3.contrib import securetransport + except (ImportError, OSError): + return + + securetransport.inject_into_urllib3() + + +inject_securetransport() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/logging.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..8f2fd7a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,391 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +from logging import Filter +from typing import IO, Any, Callable, Iterator, Optional, TextIO, Type, cast + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +try: + import threading +except ImportError: + import dummy_threading as threading # type: ignore + + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + pass + + +# BrokenPipeError manifests differently in Windows and non-Windows. +if WINDOWS: + # In Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """See the docstring for non-Windows below.""" + return (exc_class is BrokenPipeError) or ( + isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + ) + + +else: + # Then we are in the non-Windows case. + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """ + Return whether an exception is a broken pipe error. + + Args: + exc_class: an exception class. + exc: an exception instance. + """ + return exc_class is BrokenPipeError + + +@contextlib.contextmanager +def indent_log(num=2): + # type: (int) -> Iterator[None] + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation(): + # type: () -> int + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args, # type: Any + add_timestamp=False, # type: bool + **kwargs, # type: Any + ): + # type: (...) -> None + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted, levelno): + # type: (str, int) -> str + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record): + # type: (logging.LogRecord) -> str + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +def _color_wrap(*colors): + # type: (*str) -> Callable[[str], str] + def wrapped(inp): + # type: (str) -> str + return "".join(list(colors) + [inp, colorama.Style.RESET_ALL]) + + return wrapped + + +class ColorizedStreamHandler(logging.StreamHandler): + + # Don't build up a list of colors if we don't have colorama + if colorama: + COLORS = [ + # This needs to be in order from highest logging level to lowest. + (logging.ERROR, _color_wrap(colorama.Fore.RED)), + (logging.WARNING, _color_wrap(colorama.Fore.YELLOW)), + ] + else: + COLORS = [] + + def __init__(self, stream=None, no_color=None): + # type: (Optional[TextIO], bool) -> None + super().__init__(stream) + self._no_color = no_color + + if WINDOWS and colorama: + self.stream = colorama.AnsiToWin32(self.stream) + + def _using_stdout(self): + # type: () -> bool + """ + Return whether the handler is using sys.stdout. + """ + if WINDOWS and colorama: + # Then self.stream is an AnsiToWin32 object. + stream = cast(colorama.AnsiToWin32, self.stream) + return stream.wrapped is sys.stdout + + return self.stream is sys.stdout + + def should_color(self): + # type: () -> bool + # Don't colorize things if we do not have colorama or if told not to + if not colorama or self._no_color: + return False + + real_stream = ( + self.stream + if not isinstance(self.stream, colorama.AnsiToWin32) + else self.stream.wrapped + ) + + # If the stream is a tty we should color it + if hasattr(real_stream, "isatty") and real_stream.isatty(): + return True + + # If we have an ANSI term we should color it + if os.environ.get("TERM") == "ANSI": + return True + + # If anything else we should not color it + return False + + def format(self, record): + # type: (logging.LogRecord) -> str + msg = super().format(record) + + if self.should_color(): + for level, color in self.COLORS: + if record.levelno >= level: + msg = color(msg) + break + + return msg + + # The logging module says handleError() can be customized. + def handleError(self, record): + # type: (logging.LogRecord) -> None + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self._using_stdout() + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self): + # type: () -> IO[Any] + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level): + # type: (int) -> None + self.level = level + + def filter(self, record): + # type: (logging.LogRecord) -> bool + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record): + # type: (logging.LogRecord) -> bool + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity, no_color, user_log_file): + # type: (int, bool, Optional[str]) -> int + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.ColorizedStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/misc.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..bda876f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,828 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import urllib.parse +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from types import TracebackType +from typing import ( + Any, + AnyStr, + BinaryIO, + Callable, + Container, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError +from pip._internal.locations import get_major_minor_version, site_packages, user_site +from pip._internal.utils.compat import WINDOWS, stdlib_pkgs +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", +] + + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] + + +def get_pip_version(): + # type: () -> str + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return "pip {} from {} (python {})".format( + __version__, + pip_pkg_dir, + get_major_minor_version(), + ) + + +def normalize_version_info(py_version_info): + # type: (Tuple[int, ...]) -> Tuple[int, int, int] + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path): + # type: (AnyStr) -> None + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog(): + # type: () -> str + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree(dir, ignore_errors=False): + # type: (AnyStr, bool) -> None + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func, path, exc_info): + # type: (Callable[..., Any], str, ExcInfo) -> None + """On Windows, the files in .svn are read-only, so when rmtree() tries to + remove them, an exception is thrown. We catch that here, remove the + read-only attribute, and hopefully continue without problems.""" + try: + has_attr_readonly = not (os.stat(path).st_mode & stat.S_IWRITE) + except OSError: + # it's equivalent to os.path.exists + return + + if has_attr_readonly: + # convert to read/write + os.chmod(path, stat.S_IWRITE) + # use the original function to repeat the operation + func(path) + return + else: + raise + + +def display_path(path): + # type: (str) -> str + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir, ext=".bak"): + # type: (str, str) -> str + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message, options): + # type: (str, Iterable[str]) -> str + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message): + # type: (str) -> None + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message, options): + # type: (str, Iterable[str]) -> str + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message): + # type: (str) -> str + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message): + # type: (str) -> str + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val): + # type: (str) -> int + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes): + # type: (float) -> str + if bytes > 1000 * 1000: + return "{:.1f} MB".format(bytes / 1000.0 / 1000) + elif bytes > 10 * 1000: + return "{} kB".format(int(bytes / 1000)) + elif bytes > 1000: + return "{:.1f} kB".format(bytes / 1000.0) + else: + return "{} bytes".format(int(bytes)) + + +def tabulate(rows): + # type: (Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]] + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks(file, size=io.DEFAULT_BUFFER_SIZE): + # type: (BinaryIO, int) -> Iterator[bytes] + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path, resolve_symlinks=True): + # type: (str, bool) -> str + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path): + # type: (str) -> Tuple[str, str] + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old, new): + # type: (str, str) -> None + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path): + # type: (str) -> bool + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def dist_is_local(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution object is installed locally + (i.e. within current virtualenv). + + Always True if we're not in a virtualenv. + + """ + return is_local(dist_location(dist)) + + +def dist_in_usersite(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in user site. + """ + return dist_location(dist).startswith(normalize_path(user_site)) + + +def dist_in_site_packages(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in + sysconfig.get_python_lib(). + """ + return dist_location(dist).startswith(normalize_path(site_packages)) + + +def dist_is_editable(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is an editable install. + """ + for path_item in sys.path: + egg_link = os.path.join(path_item, dist.project_name + ".egg-link") + if os.path.isfile(egg_link): + return True + return False + + +def get_installed_distributions( + local_only=True, # type: bool + skip=stdlib_pkgs, # type: Container[str] + include_editables=True, # type: bool + editables_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] +): + # type: (...) -> List[Distribution] + """Return a list of installed Distribution objects. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment, get_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + if paths is None: + env = get_default_environment() + else: + env = get_environment(paths) + dists = env.iter_installed_distributions( + local_only=local_only, + skip=skip, + include_editables=include_editables, + editables_only=editables_only, + user_only=user_only, + ) + return [cast(_Dist, dist)._dist for dist in dists] + + +def get_distribution(req_name): + # type: (str) -> Optional[Distribution] + """Given a requirement name, return the installed Distribution object. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + dist = get_default_environment().get_distribution(req_name) + if dist is None: + return None + return cast(_Dist, dist)._dist + + +def egg_link_path(dist): + # type: (Distribution) -> Optional[str] + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + for site in sites: + egglink = os.path.join(site, dist.project_name) + ".egg-link" + if os.path.isfile(egglink): + return egglink + return None + + +def dist_location(dist): + # type: (Distribution) -> str + """ + Get the site-packages location of this distribution. Generally + this is dist.location, except in the case of develop-installed + packages, where dist.location is the source code location, and we + want to know where the egg-link file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + egg_link = egg_link_path(dist) + if egg_link: + return normalize_path(egg_link) + return normalize_path(dist.location) + + +def write_output(msg, *args): + # type: (Any, Any) -> None + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream = None # type: TextIO + + @classmethod + def from_stream(cls, orig_stream): + # type: (TextIO) -> StreamWrapper + cls.orig_stream = orig_stream + return cls() + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # https://github.com/python/mypy/issues/4125 + @property + def encoding(self): # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name): + # type: (str) -> Iterator[StreamWrapper] + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout(): + # type: () -> ContextManager[StreamWrapper] + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr(): + # type: () -> ContextManager[StreamWrapper] + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential, **named): + # type: (*Any, **Any) -> Type[Any] + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host, port): + # type: (str, Optional[int]) -> str + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc, scheme="https"): + # type: (str, str) -> str + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc): + # type: (str) -> Tuple[str, Optional[int]] + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc): + # type: (str) -> NetlocTuple + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw = None # type: Optional[str] + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc): + # type: (str) -> str + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return "{user}{password}@{netloc}".format( + user=user, password=password, netloc=netloc + ) + + +def _transform_url(url, transform_netloc): + # type: (str, Callable[[str], Tuple[Any, ...]]) -> Tuple[str, NetlocTuple] + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc): + # type: (str) -> NetlocTuple + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc): + # type: (str) -> Tuple[str,] + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url(url): + # type: (str) -> Tuple[str, str, Tuple[str, str]] + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url): + # type: (str) -> str + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url): + # type: (str) -> str + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +class HiddenText: + def __init__( + self, + secret, # type: str + redacted, # type: str + ): + # type: (...) -> None + self.secret = secret + self.redacted = redacted + + def __repr__(self): + # type: (...) -> str + return "".format(str(self)) + + def __str__(self): + # type: (...) -> str + return self.redacted + + # This is useful for testing. + def __eq__(self, other): + # type: (Any) -> bool + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value): + # type: (str) -> HiddenText + return HiddenText(value, redacted="****") + + +def hide_url(url): + # type: (str) -> HiddenText + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip): + # type: (bool) -> None + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip.exe", + "pip{}.exe".format(sys.version_info[0]), + "pip{}.{}.exe".format(*sys.version_info[:2]), + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def is_console_interactive(): + # type: () -> bool + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path, blocksize=1 << 20): + # type: (str, int) -> Tuple[Any, int] + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def is_wheel_installed(): + # type: () -> bool + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +def pairwise(iterable): + # type: (Iterable[Any]) -> Iterator[Tuple[Any, Any]] + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred, # type: Callable[[T], bool] + iterable, # type: Iterable[T] +): + # type: (...) -> Tuple[Iterable[T], Iterable[T]] + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/models.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..4ff261a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,47 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key, defining_class): + # type: (Any, Type[KeyBasedCompareMixin]) -> None + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self): + # type: () -> int + return hash(self._compare_key) + + def __lt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__lt__) + + def __le__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__le__) + + def __gt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__gt__) + + def __ge__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__ge__) + + def __eq__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__eq__) + + def _compare(self, other, method): + # type: (Any, Callable[[Any, Any], bool]) -> bool + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/packaging.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..31b1a9f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,89 @@ +import logging +from email.message import Message +from email.parser import FeedParser +from typing import Optional, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.packaging import specifiers, version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.utils.misc import display_path + +logger = logging.getLogger(__name__) + + +def check_requires_python(requires_python, version_info): + # type: (Optional[str], Tuple[int, ...]) -> bool + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +def get_metadata(dist): + # type: (Distribution) -> Message + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + metadata_name = "METADATA" + if isinstance(dist, pkg_resources.DistInfoDistribution) and dist.has_metadata( + metadata_name + ): + metadata = dist.get_metadata(metadata_name) + elif dist.has_metadata("PKG-INFO"): + metadata_name = "PKG-INFO" + metadata = dist.get_metadata(metadata_name) + else: + logger.warning("No metadata found in %s", display_path(dist.location)) + metadata = "" + + if metadata is None: + raise NoneMetadataError(dist, metadata_name) + + feed_parser = FeedParser() + # The following line errors out if with a "NoneType" TypeError if + # passed metadata=None. + feed_parser.feed(metadata) + return feed_parser.close() + + +def get_requires_python(dist): + # type: (pkg_resources.Distribution) -> Optional[str] + """ + Return the "Requires-Python" metadata for a distribution, or None + if not present. + """ + pkg_info_dict = get_metadata(dist) + requires_python = pkg_info_dict.get("Requires-Python") + + if requires_python is not None: + # Convert to a str to satisfy the type checker, since requires_python + # can be a Header object. + requires_python = str(requires_python) + + return requires_python + + +def get_installer(dist): + # type: (Distribution) -> str + if dist.has_metadata("INSTALLER"): + for line in dist.get_metadata_lines("INSTALLER"): + if line.strip(): + return line.strip() + return "" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/parallel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/parallel.py new file mode 100644 index 0000000..02947f5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/parallel.py @@ -0,0 +1,101 @@ +"""Convenient parallelization of higher order functions. + +This module provides two helper functions, with appropriate fallbacks on +Python 2 and on systems lacking support for synchronization mechanisms: + +- map_multiprocess +- map_multithread + +These helpers work like Python 3's map, with two differences: + +- They don't guarantee the order of processing of + the elements of the iterable. +- The underlying process/thread pools chop the iterable into + a number of chunks, so that for very long iterables using + a large value for chunksize can make the job complete much faster + than using the default value of 1. +""" + +__all__ = ["map_multiprocess", "map_multithread"] + +from contextlib import contextmanager +from multiprocessing import Pool as ProcessPool +from multiprocessing import pool +from multiprocessing.dummy import Pool as ThreadPool +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from pip._vendor.requests.adapters import DEFAULT_POOLSIZE + +Pool = Union[pool.Pool, pool.ThreadPool] +S = TypeVar("S") +T = TypeVar("T") + +# On platforms without sem_open, multiprocessing[.dummy] Pool +# cannot be created. +try: + import multiprocessing.synchronize # noqa +except ImportError: + LACK_SEM_OPEN = True +else: + LACK_SEM_OPEN = False + +# Incredibly large timeout to work around bpo-8296 on Python 2. +TIMEOUT = 2000000 + + +@contextmanager +def closing(pool): + # type: (Pool) -> Iterator[Pool] + """Return a context manager making sure the pool closes properly.""" + try: + yield pool + finally: + # For Pool.imap*, close and join are needed + # for the returned iterator to begin yielding. + pool.close() + pool.join() + pool.terminate() + + +def _map_fallback(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Make an iterator applying func to each element in iterable. + + This function is the sequential fallback either on Python 2 + where Pool.imap* doesn't react to KeyboardInterrupt + or when sem_open is unavailable. + """ + return map(func, iterable) + + +def _map_multiprocess(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a process pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ProcessPool()) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +def _map_multithread(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a thread pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ThreadPool(DEFAULT_POOLSIZE)) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +if LACK_SEM_OPEN: + map_multiprocess = map_multithread = _map_fallback +else: + map_multiprocess = _map_multiprocess + map_multithread = _map_multithread diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/pkg_resources.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/pkg_resources.py new file mode 100644 index 0000000..f5fee55 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/pkg_resources.py @@ -0,0 +1,40 @@ +from typing import Dict, Iterable, List + +from pip._vendor.pkg_resources import yield_lines + + +class DictMetadata: + """IMetadataProvider that reads metadata files from a dictionary.""" + + def __init__(self, metadata): + # type: (Dict[str, bytes]) -> None + self._metadata = metadata + + def has_metadata(self, name): + # type: (str) -> bool + return name in self._metadata + + def get_metadata(self, name): + # type: (str) -> str + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Mirrors handling done in pkg_resources.NullProvider. + e.reason += f" in {name} file" + raise + + def get_metadata_lines(self, name): + # type: (str) -> Iterable[str] + return yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name): + # type: (str) -> bool + return False + + def metadata_listdir(self, name): + # type: (str) -> List[str] + return [] + + def run_script(self, script_name, namespace): + # type: (str, str) -> None + pass diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..0b0bc43 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,173 @@ +import sys +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# +# We set sys.argv[0] to the path to the underlying setup.py file so +# setuptools / distutils don't take the path to the setup.py to be "-c" when +# invoking via the shim. This avoids e.g. the following manifest_maker +# warning: "warning: manifest_maker: standard file '-c' not found". +_SETUPTOOLS_SHIM = ( + "import io, os, sys, setuptools, tokenize; sys.argv[0] = {0!r}; __file__={0!r};" + "f = getattr(tokenize, 'open', open)(__file__) " + "if os.path.exists(__file__) " + "else io.StringIO('from setuptools import setup; setup()');" + "code = f.read().replace('\\r\\n', '\\n');" + "f.close();" + "exec(compile(code, __file__, 'exec'))" +) + + +def make_setuptools_shim_args( + setup_py_path, # type: str + global_options=None, # type: Sequence[str] + no_user_config=False, # type: bool + unbuffered_output=False, # type: bool +): + # type: (...) -> List[str] + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + build_options, # type: Sequence[str] + destination_dir, # type: str +): + # type: (...) -> List[str] + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] +): + # type: (...) -> List[str] + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + no_user_config, # type: bool + prefix, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool +): + # type: (...) -> List[str] + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + args += install_options + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path, # type: str + egg_info_dir, # type: Optional[str] + no_user_config, # type: bool +): + # type: (...) -> List[str] + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args + + +def make_setuptools_install_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + record_filename, # type: str + root, # type: Optional[str] + prefix, # type: Optional[str] + header_dir, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool + no_user_config, # type: bool + pycompile, # type: bool +): + # type: (...) -> List[str] + assert not (use_user_site and prefix) + assert not (use_user_site and root) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + unbuffered_output=True, + ) + args += ["install", "--record", record_filename] + args += ["--single-version-externally-managed"] + + if root is not None: + args += ["--root", root] + if prefix is not None: + args += ["--prefix", prefix] + if home is not None: + args += ["--home", home] + if use_user_site: + args += ["--user", "--prefix="] + + if pycompile: + args += ["--compile"] + else: + args += ["--no-compile"] + + if header_dir: + args += ["--install-headers", header_dir] + + args += install_options + + return args diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..4fa1b14 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,281 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Mapping, Optional, Union + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +LOG_DIVIDER = "----------------------------------------" + + +def make_command(*args): + # type: (Union[str, HiddenText, CommandArgs]) -> CommandArgs + """ + Create a CommandArgs object. + """ + command_args = [] # type: CommandArgs + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args): + # type: (Union[List[str], CommandArgs]) -> str + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args): + # type: (Union[List[str], CommandArgs]) -> List[str] + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def make_subprocess_output_error( + cmd_args, # type: Union[List[str], CommandArgs] + cwd, # type: Optional[str] + lines, # type: List[str] + exit_status, # type: int +): + # type: (...) -> str + """ + Create and return the error message to use to log a subprocess error + with command output. + + :param lines: A list of lines, each ending with a newline. + """ + command = format_command_args(cmd_args) + + # We know the joined output value ends in a newline. + output = "".join(lines) + msg = ( + # Use a unicode string to avoid "UnicodeEncodeError: 'ascii' + # codec can't encode character ..." in Python 2 when a format + # argument (e.g. `output`) has a non-ascii character. + "Command errored out with exit status {exit_status}:\n" + " command: {command_display}\n" + " cwd: {cwd_display}\n" + "Complete output ({line_count} lines):\n{output}{divider}" + ).format( + exit_status=exit_status, + command_display=command, + cwd_display=cwd, + line_count=len(lines), + output=output, + divider=LOG_DIVIDER, + ) + return msg + + +def call_subprocess( + cmd, # type: Union[List[str], CommandArgs] + show_stdout=False, # type: bool + cwd=None, # type: Optional[str] + on_returncode="raise", # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + unset_environ=None, # type: Optional[Iterable[str]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: Optional[bool] + stdout_only=False, # type: Optional[bool] +): + # type: (...) -> str + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + if command_desc is None: + command_desc = format_command_args(cmd) + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line = proc.stdout.readline() # type: str + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + if not showing_subprocess and log_failed_cmd: + # Then the subprocess streams haven't been logged to the + # console yet. + msg = make_subprocess_output_error( + cmd_args=cmd, + cwd=cwd, + lines=all_output, + exit_status=proc.returncode, + ) + subprocess_logger.error(msg) + raise InstallationSubprocessError(proc.returncode, command_desc) + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message): + # type: (str) -> Callable[..., None] + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for pep517's Pep517HookCaller. Thus, the runner has + an API that matches what's expected by Pep517HookCaller.subprocess_runner. + """ + + def runner( + cmd, # type: List[str] + cwd=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + ): + # type: (...) -> None + with open_spinner(message) as spinner: + call_subprocess( + cmd, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..e881b7e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,260 @@ +import errno +import itertools +import logging +import os.path +import tempfile +from contextlib import ExitStack, contextmanager +from typing import Any, Dict, Iterator, Optional, TypeVar, Union + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager = None # type: Optional[ExitStack] + + +@contextmanager +def global_tempdir_manager(): + # type: () -> Iterator[None] + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self): + # type: () -> None + self._should_delete = {} # type: Dict[str, bool] + + def set_delete(self, kind, value): + # type: (str, bool) -> None + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind): + # type: (str) -> bool + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry = None # type: Optional[TempDirectoryTypeRegistry] + + +@contextmanager +def tempdir_registry(): + # type: () -> Iterator[TempDirectoryTypeRegistry] + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path=None, # type: Optional[str] + delete=_default, # type: Union[bool, None, _Default] + kind="temp", # type: str + globally_managed=False, # type: bool + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self): + # type: () -> str + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self): + # type: () -> str + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self): + # type: (_T) -> _T + return self + + def __exit__(self, exc, value, tb): + # type: (Any, Any, Any) -> None + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind): + # type: (str) -> str + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self): + # type: () -> None + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original, delete=None): + # type: (str, Optional[bool]) -> None + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name): + # type: (str) -> Iterator[str] + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind): + # type: (str) -> str + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..b49a972 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,267 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask(): + # type: () -> int + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path): + # type: (str) -> List[str] + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths): + # type: (Iterable[str]) -> bool + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory, target): + # type: (str, str) -> bool + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path): + # type: (str) -> None + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info): + # type: (ZipInfo) -> bool + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename, location, flatten=True): + # type: (str, str, bool) -> None + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename, location): + # type: (str, str) -> None + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + # https://github.com/python/typeshed/issues/2673 + tar._extract_member(member, path) # type: ignore + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename, # type: str + location, # type: str + content_type=None, # type: Optional[str] +): + # type: (...) -> None + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/urls.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..de64ca9 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,65 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url): + # type: (str) -> Optional[str] + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path): + # type: (str) -> str + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url): + # type: (str) -> str + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..8d2f394 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,111 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv(): + # type: () -> bool + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_regular_virtualenv(): + # type: () -> bool + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv(): + # type: () -> bool + """Return True if we're running inside a virtualenv, False otherwise.""" + return _running_under_venv() or _running_under_regular_virtualenv() + + +def _get_pyvenv_cfg_lines(): + # type: () -> Optional[List[str]] + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv(): + # type: () -> bool + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_regular_virtualenv(): + # type: () -> bool + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global(): + # type: () -> bool + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_regular_virtualenv(): + return _no_global_under_regular_virtualenv() + + return False diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/wheel.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..3b12a1d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,189 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Dict, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import DistInfoDistribution, Distribution + +from pip._internal.exceptions import UnsupportedWheel +from pip._internal.utils.pkg_resources import DictMetadata + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +class WheelMetadata(DictMetadata): + """Metadata provider that maps metadata decoding exceptions to our + internal exception type. + """ + + def __init__(self, metadata, wheel_name): + # type: (Dict[str, bytes], str) -> None + super().__init__(metadata) + self._wheel_name = wheel_name + + def get_metadata(self, name): + # type: (str) -> str + try: + return super().get_metadata(name) + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e}" + ) + + +def pkg_resources_distribution_for_wheel(wheel_zip, name, location): + # type: (ZipFile, str, str) -> Distribution + """Get a pkg_resources distribution given a wheel. + + :raises UnsupportedWheel: on any errors + """ + info_dir, _ = parse_wheel(wheel_zip, name) + + metadata_files = [p for p in wheel_zip.namelist() if p.startswith(f"{info_dir}/")] + + metadata_text = {} # type: Dict[str, bytes] + for path in metadata_files: + _, metadata_name = path.split("/", 1) + + try: + metadata_text[metadata_name] = read_wheel_metadata_file(wheel_zip, path) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + metadata = WheelMetadata(metadata_text, location) + + return DistInfoDistribution(location=location, metadata=metadata, project_name=name) + + +def parse_wheel(wheel_zip, name): + # type: (ZipFile, str) -> Tuple[str, Message] + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source, name): + # type: (ZipFile, str) -> str + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + ".dist-info directory {!r} does not start with {!r}".format( + info_dir, canonical_name + ) + ) + + return info_dir + + +def read_wheel_metadata_file(source, path): + # type: (ZipFile, str) -> bytes + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source, dist_info_dir): + # type: (ZipFile, str) -> Message + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data): + # type: (Message) -> Tuple[int, ...] + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version, name): + # type: (Tuple[int, ...], str) -> None + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..4f36cd6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c611a6389a9170c1b387fe7542b753e46dc2fce GIT binary patch literal 506 zcmYe~<>g{vU|^WXFgrb&iGkrUh=Yuo7#J8F7#J9eK|~5e3S$mK6eE~sg3`=TngvWV z<*??mMX}|wN3rK}L~-PDMsenHMR74Qq%a0EXfnS9neC^^dP_JcH8;N`)i1xqEx$A` z#kHs?zX(Y%EHNh&D#(^u9A8?Lb4wyOF*`NBEV($oD7COOvnVw;HLnCL!(5hJtjT># zq9C(CFFrG`B(*3nF-NZ~xmYhLu_`gK=oWK9X2C5{OzHH@l3UW4!nvtM$)!b^i8;4q zFeQsilgd(yiZk=`ZYf~OLZy=P^Gb^HbBaKrSH#S~z)-{jB3MBL8v_HwN`@j{5F14N ziqg->&rQ`&FV8F~F@#blIYq;;_lhPbtkwwF6mQ%)!9Gz`+QC0JmJ4 A5&!@I literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bd9f362df8ac80c99db3b07a7a45105f5e5079e GIT binary patch literal 2992 zcmYe~<>g{vU|^WXFgyJdHv_|C5C<8vFfcGUFfcF_cQ7z8q%fo~<}gHoXr>&-T&5_d zT;?d|T$U&nMvxeD4r?x36k9HP6g!yDlEab98N~@^v*vK+az}B4*=#vHxx7)lxqMN4 zx%^T5xdKrFxq?xGj0~v^3xraI7cxePxHF`%r*O0|q;RAPG&4turV1_)OBG$n$jFew z7|fu_`4Z$tKTYOaEIygVCAT>I3raHc^AdAzv4)fu*P^2QqFY=+sbvuRif{3Sr4|)u=I1%*=am%Y=iFj0OD;|Z zxeXbE!VttSu3%tbNM(p(Oks#(N@0v*PGO2-Nnws+O<{>*OJz@CO<`+cXl9J!fcQO% zGlesStA!zoD}_6Sr-dPkJC&!MA&oJGH-)c-qnR;^Haub}dlV0vmvd{Sa@YJ5>@S$twqda*RfT_6WCFjq-H!bJ~5Q8Fy%K%Qb_ zU|?W}`N)oefuV+Z0mDLuT9y*V1xzW7HB2=uCCoL9&5R3K7#T`fQkYVhYnT_XE@Y@- zs$pzqt!1rYSin}p3Qofe!3>%#epTYm8L7$HnR)37`K2Was>Q0s3MKgps>MYD3=9mv zm~;y@*>7=`XlTiivZdGK`2c8jGr zH7D&BOG;{S$t~v6qMTdYAn)gc^GY#<12dWFx44TY-x7doyGfR>)Rx;jVPA*T;WGa#ZB@vKMHCc*45mzJw5|9NEav%bp zgo;2;E>dD(V9*0O7977!RlHEAL5xLl7b^n;0|B5=S9ffGk*acWU~L1J<7 zO2%89@$tzyiN(e7@en_PyjP^bz`$S*@*AiOU|M3O;S8#kW|CONufJiZnri%nBC2B@&-m9G{b) zoCu1bg8bsllKi5|B2cgvfvRv#wjwQ%Y7USRP-S?FrL-ug_!bMuz*~$Jw^)i&3-Tc` zgGhaRpcp6uS8|}r&jA!uAWt$dvoLb~XJh7J3`8;zdm*%D_lw_nTltHTfVuh6aJoOTV+{BXP3^%ZQU`_=UQMXv~5_40*!Vm(K zC2k327K6*^%#!%bl=#%b(!`udkYmBQoTW+<>P$>knnJfY;^RR^#>d~{ijU9DPbtkw zjgP;@6CV#U1tL=fio{#&DVaqe{w+>Ww1YL>VlPh4NX<sRD$im3N%EZXU!okPE!okYK$j8CN$R)tU$i>dY2v)Btev2Jc$z|rH z-(oANEXd4DF9L;25h$LDKyh+Qq9C(C4_?vhm6l}Y6zkp^2Z8PeD*;skjWl=q6bK`b5+!3zo;&h*q0 zA8=J&Z3 Mc^G9lxR?d}0O9`b!vFvP literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/git.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/git.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..140625953f9a4106b33c8f2a03aab981319005dc GIT binary patch literal 11707 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 A>Hq)$ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4b45cbc0a3ed2e91825ba023da6c99773f4d5ba GIT binary patch literal 19476 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 b6B{!ZlL#{hH List[str] + return ['-r', rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = ( + make_command('branch', '-q', rev_options.to_args(), url, dest) + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command(make_command('switch', url), cwd=dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command('pull', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith('ssh://'): + url = 'bzr+' + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + urls = cls.run_command( + ['info'], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ('checkout of branch: ', + 'parent branch: '): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + revision = cls.run_command( + ['revno'], show_stdout=False, stdout_only=True, cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/git.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..649edf5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,506 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile('^[a-fA-F0-9]{40}$') + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile(r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) +$""", re.VERBOSE) + + +def looks_like_hash(sha): + # type: (str) -> bool + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = 'git' + dirname = '.git' + repo_name = 'clone' + schemes = ( + 'git+http', 'git+https', 'git+ssh', 'git+git', 'git+file', + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ('GIT_DIR', 'GIT_WORK_TREE') + default_arg_rev = 'HEAD' + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return [rev] + + def is_immutable_rev_checkout(self, url, dest): + # type: (str, str) -> bool + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool( + self.get_revision_sha(dest, rev_options.rev)[0] + ) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ['version'], show_stdout=False, stdout_only=True + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + return () + return tuple(int(c) for c in match.groups()) + + @classmethod + def get_current_branch(cls, location): + # type: (str) -> Optional[str] + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ['symbolic-ref', '-q', 'HEAD'] + output = cls.run_command( + args, + extra_ok_returncodes=(1, ), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith('refs/heads/'): + return ref[len('refs/heads/'):] + + return None + + @classmethod + def get_revision_sha(cls, dest, rev): + # type: (str, str) -> Tuple[Optional[str], bool] + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ['show-ref', rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode='ignore', + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f'unexpected show-ref line: {line!r}') + + refs[ref_name] = ref_sha + + branch_ref = f'refs/remotes/origin/{rev}' + tag_ref = f'refs/tags/{rev}' + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest, rev): + # type: (str, str) -> bool + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision(cls, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> RevOptions + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command('fetch', '-q', url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev='FETCH_HEAD') + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info('Cloning %s%s to %s', url, rev_display, display_path(dest)) + self.run_command(make_command('clone', '-q', url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, 'branch_name', None) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + 'checkout', '-q', rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f'origin/{branch_name}' + cmd_args = [ + 'checkout', '-b', branch_name, '--track', track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command( + make_command('config', 'remote.origin.url', url), + cwd=dest, + ) + cmd_args = make_command('checkout', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(['fetch', '-q', '--tags'], cwd=dest) + else: + self.run_command(['fetch', '-q'], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command('reset', '--hard', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ['config', '--get-regexp', r'remote\..*\.url'], + extra_ok_returncodes=(1, ), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith('remote.origin.url '): + found_remote = remote + break + url = found_remote.split(' ')[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url): + # type: (str) -> str + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location, rev): + # type: (str, str) -> bool + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ['rev-parse', '-q', '--verify', "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location, rev=None): + # type: (str, Optional[str]) -> str + if rev is None: + rev = 'HEAD' + current_rev = cls.run_command( + ['rev-parse', rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ['rev-parse', '--git-dir'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, '..')) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith('file'): + initial_slashes = path[:-len(path.lstrip('/'))] + newpath = ( + initial_slashes + + urllib.request.url2pathname(path) + .replace('\\', '/').lstrip('/') + ) + after_plus = scheme.find('+') + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if '://' not in url: + assert 'file:' not in url + url = url.replace('git+', 'git+ssh://') + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace('ssh://', '') + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location): + # type: (str) -> None + if not os.path.exists(os.path.join(location, '.gitmodules')): + return + cls.run_command( + ['submodule', 'update', '--init', '--recursive', '-q'], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ['rev-parse', '--show-toplevel'], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode='raise', + log_failed_cmd=False, + ) + except BadCommand: + logger.debug("could not determine if %s is under git control " + "because git is not available", location) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip('\r\n')) + + @staticmethod + def should_add_vcs_url_prefix(repo_url): + # type: (str) -> bool + """In either https or ssh form, requirements must be prefixed with git+. + """ + return True + + +vcs.register(Git) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..b9f9166 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,158 @@ +import configparser +import logging +import os +from typing import List, Optional + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = 'hg' + dirname = '.hg' + repo_name = 'clone' + schemes = ( + 'hg+file', 'hg+http', 'hg+https', 'hg+ssh', 'hg+static-http', + ) + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return [rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Cloning hg %s%s to %s', + url, + rev_display, + display_path(dest), + ) + self.run_command(make_command('clone', '--noupdate', '-q', url, dest)) + self.run_command( + make_command('update', '-q', rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + repo_config = os.path.join(dest, self.dirname, 'hgrc') + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set('paths', 'default', url.secret) + with open(repo_config, 'w') as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning( + 'Could not switch Mercurial repository to %s: %s', url, exc, + ) + else: + cmd_args = make_command('update', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command(['pull', '-q'], cwd=dest) + cmd_args = make_command('update', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + url = cls.run_command( + ['showconfig', 'paths.default'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ['parents', '--template={rev}'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location): + # type: (str) -> str + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ['parents', '--template={node}'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ['root'], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ['root'], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode='raise', + log_failed_cmd=False, + ) + except BadCommand: + logger.debug("could not determine if %s is under hg control " + "because hg is not available", location) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip('\r\n')) + + +vcs.register(Mercurial) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..fe60f6b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,329 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r'(.*)') + + +class Subversion(VersionControl): + name = 'svn' + dirname = '.svn' + repo_name = 'checkout' + schemes = ( + 'svn+ssh', 'svn+http', 'svn+https', 'svn+svn', 'svn+file' + ) + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url): + # type: (str) -> bool + return True + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return ['-r', rev] + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, 'entries') + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + '/' # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth(cls, netloc, scheme): + # type: (str, str) -> Tuple[str, Tuple[Optional[str], Optional[str]]] + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == 'ssh': + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing svn+ from svn+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith('ssh://'): + url = 'svn+' + url + return url, rev, user_pass + + @staticmethod + def make_rev_args(username, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + extra_args = [] # type: CommandArgs + if username: + extra_args += ['--username', username] + if password: + extra_args += ['--password', password] + + return extra_args + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location): + # type: (str) -> Tuple[Optional[str], int] + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, 'entries') + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = '' + + url = None + if (data.startswith('8') or + data.startswith('9') or + data.startswith('10')): + entries = list(map(str.splitlines, data.split('\n\x0c\n'))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith('= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ['info', '--xml', location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [ + int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml) + ] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive=None): + # type: (bool) -> None + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version = None # type: Optional[Tuple[int, ...]] + + super().__init__() + + def call_vcs_version(self): + # type: () -> Tuple[int, ...] + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = 'svn, version ' + version = self.run_command( + ['--version'], show_stdout=False, stdout_only=True + ) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix):].split()[0] + version_list = version.partition('-')[0].split('.') + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self): + # type: () -> Tuple[int, ...] + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self): + # type: () -> CommandArgs + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ['--non-interactive'] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ['--force-interactive'] + + return [] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = make_command( + 'checkout', '-q', self.get_remote_call_options(), + rev_options.to_args(), url, dest, + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command( + 'switch', self.get_remote_call_options(), rev_options.to_args(), + url, dest, + ) + self.run_command(cmd_args) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command( + 'update', self.get_remote_call_options(), rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..1cdb1a0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,722 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import CommandArgs, call_subprocess, make_command +from pip._internal.utils.urls import get_url_scheme + +__all__ = ['vcs'] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name): + # type: (str) -> bool + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ['http', 'https', 'file', 'ftp'] + vcs.all_schemes + + +def make_vcs_requirement_url(repo_url, rev, project_name, subdir=None): + # type: (str, str, str, Optional[str]) -> str + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f'{repo_url}@{rev}#egg={egg_project_name}' + if subdir: + req += f'&subdirectory={subdir}' + + return req + + +def find_path_to_project_root_from_repo_root(location, repo_root): + # type: (str, str) -> Optional[str] + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class, # type: Type[VersionControl] + rev=None, # type: Optional[str] + extra_args=None, # type: Optional[CommandArgs] + ): + # type: (...) -> None + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name = None # type: Optional[str] + + def __repr__(self): + # type: () -> str + return f'' + + @property + def arg_rev(self): + # type: () -> Optional[str] + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self): + # type: () -> CommandArgs + """ + Return the VCS-specific command arguments. + """ + args = [] # type: CommandArgs + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self): + # type: () -> str + if not self.rev: + return '' + + return f' (to revision {self.rev})' + + def make_new(self, rev): + # type: (str) -> RevOptions + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry = {} # type: Dict[str, VersionControl] + schemes = ['ssh', 'git', 'hg', 'bzr', 'sftp', 'svn'] + + def __init__(self): + # type: () -> None + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self): + # type: () -> Iterator[str] + return self._registry.__iter__() + + @property + def backends(self): + # type: () -> List[VersionControl] + return list(self._registry.values()) + + @property + def dirnames(self): + # type: () -> List[str] + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self): + # type: () -> List[str] + schemes = [] # type: List[str] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls): + # type: (Type[VersionControl]) -> None + if not hasattr(cls, 'name'): + logger.warning('Cannot register VCS %s', cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug('Registered VCS backend: %s', cls.name) + + def unregister(self, name): + # type: (str) -> None + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug('Determine that %s uses VCS: %s', + location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = '' + dirname = '' + repo_name = '' + # List of supported schemes for this Version Control + schemes = () # type: Tuple[str, ...] + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ = () # type: Tuple[str, ...] + default_arg_rev = None # type: Optional[str] + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url): + # type: (str) -> bool + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f'{cls.name}:') + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir): + # type: (str) -> str + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir, project_name): + # type: (str, str) -> str + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f'{cls.name}+{repo_url}' + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, + subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url, dest): + # type: (str, str) -> bool + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options(cls, rev=None, extra_args=None): + # type: (Optional[str], Optional[CommandArgs]) -> RevOptions + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo): + # type: (str) -> bool + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth(cls, netloc, scheme): + # type: (str, str) -> Tuple[str, Tuple[Optional[str], Optional[str]]] + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if '+' not in scheme: + raise ValueError( + "Sorry, {!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp".format(url) + ) + # Remove the vcs prefix. + scheme = scheme.split('+', 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if '@' in path: + path, rev = path.rsplit('@', 1) + if not rev: + raise InstallationError( + "The URL {!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL.".format(url) + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, '')) + return url, rev, user_pass + + @staticmethod + def make_rev_args(username, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url): + # type: (HiddenText) -> Tuple[HiddenText, RevOptions] + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password = None # type: Optional[HiddenText] + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url): + # type: (str) -> str + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip('/') + + @classmethod + def compare_urls(cls, url1, url2): + # type: (str, str) -> bool + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return (cls.normalize_url(url1) == cls.normalize_url(url2)) + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest, url): + # type: (str, HiddenText) -> None + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + '%s in %s exists, and has correct URL (%s)', + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + 'Updating %s %s%s', + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info('Skipping because already up-to-date.') + return + + logger.warning( + '%s %s in %s exists with URL %s', + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ('(s)witch, (i)gnore, (w)ipe, (b)ackup ', + ('s', 'i', 'w', 'b')) + else: + logger.warning( + 'Directory %s already exists, and is not a %s %s.', + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ('(i)gnore, (w)ipe, (b)ackup ', # type: ignore + ('i', 'w', 'b')) + + logger.warning( + 'The plan is to install the %s repository %s', + self.name, + url, + ) + response = ask_path_exists('What to do? {}'.format( + prompt[0]), prompt[1]) + + if response == 'a': + sys.exit(-1) + + if response == 'w': + logger.warning('Deleting %s', display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options) + return + + if response == 'b': + dest_dir = backup_dir(dest) + logger.warning( + 'Backing up %s to %s', display_path(dest), dest_dir, + ) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options) + return + + # Do nothing if the response is "i". + if response == 's': + logger.info( + 'Switching %s %s to %s%s', + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location, url): + # type: (str, HiddenText) -> None + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd, # type: Union[List[str], CommandArgs] + show_stdout=True, # type: bool + cwd=None, # type: Optional[str] + on_returncode='raise', # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: bool + stdout_only=False, # type: bool + ): + # type: (...) -> str + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + try: + return call_subprocess(cmd, show_stdout, cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f'Cannot find command {cls.name!r} - do you have ' + f'{cls.name!r} installed and in your PATH?') + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path): + # type: (str) -> bool + """ + Return whether a directory path is a repository directory. + """ + logger.debug('Checking in %s for %s (%s)...', + path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_internal/wheel_builder.py b/MidasHMM/lib/python3.9/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..2032918 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,360 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Any, Callable, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file, is_wheel_installed +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r'([a-z0-9_.]+)-([a-z0-9_.!+-]+)', re.IGNORECASE) + +BinaryAllowedPredicate = Callable[[InstallRequirement], bool] +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s): + # type: (str) -> bool + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req, # type: InstallRequirement + need_wheel, # type: bool + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> bool + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + 'Skipping %s, due to already being wheel.', req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if req.editable or not req.source_dir: + return False + + if req.use_pep517: + return True + + if not check_binary_allowed(req): + logger.info( + "Skipping wheel build for %s, due to binaries " + "being disabled for it.", req.name, + ) + return False + + if not is_wheel_installed(): + # we don't build legacy requirements if wheel is not installed + logger.info( + "Using legacy 'setup.py install' for %s, " + "since package 'wheel' is not installed.", req.name, + ) + return False + + return True + + +def should_build_for_wheel_command( + req, # type: InstallRequirement +): + # type: (...) -> bool + return _should_build( + req, need_wheel=True, check_binary_allowed=_always_true + ) + + +def should_build_for_install_command( + req, # type: InstallRequirement + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> bool + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +def _should_cache( + req, # type: InstallRequirement +): + # type: (...) -> Optional[bool] + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req, # type: InstallRequirement + wheel_cache, # type: WheelCache +): + # type: (...) -> str + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _always_true(_): + # type: (Any) -> bool + return True + + +def _verify_one(req, wheel_path): + # type: (InstallRequirement, str) -> None + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(canonical_name, w.name), + ) + dist = get_wheel_distribution(wheel_path, canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(dist_verstr, w.version), + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if (metadata_version >= Version("1.2") + and not isinstance(dist.version, Version)): + raise UnsupportedWheel( + "Metadata 1.2 mandates PEP 440 version, " + "but {!r} is not".format(dist_verstr) + ) + + +def _build_one( + req, # type: InstallRequirement + output_dir, # type: str + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> Optional[str] + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built wheel for %s is invalid: %s", req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req, # type: InstallRequirement + output_dir, # type: str + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> Optional[str] + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + 'Ignoring --global-option when building %s using PEP 517', req.name + ) + if build_options: + logger.warning( + 'Ignoring --build-option when building %s using PEP 517', req.name + ) + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info('Created wheel for %s: ' + 'filename=%s size=%d sha256=%s', + req.name, wheel_name, length, + wheel_hash.hexdigest()) + logger.info('Stored in directory: %s', output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req, global_options): + # type: (InstallRequirement, List[str]) -> bool + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info('Running setup.py clean for %s', req.name) + try: + call_subprocess(clean_args, cwd=req.source_dir) + return True + except Exception: + logger.error('Failed cleaning build dir for %s', req.name) + return False + + +def build( + requirements, # type: Iterable[InstallRequirement] + wheel_cache, # type: WheelCache + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> BuildResult + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + 'Building wheels for collected packages: %s', + ', '.join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, cache_dir, verify, build_options, global_options + ) + if wheel_file: + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + 'Successfully built %s', + ' '.join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + 'Failed to build %s', + ' '.join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..60177d1 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,111 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("appdirs") + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("html5lib") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("tenacity") + vendored("tomli") + vendored("urllib3") diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f35fa980904bf824e83c02ce9f7880c39e3ca12b GIT binary patch literal 2891 zcmYe~<>g{vU|^WXFgyL65Cg+w5C<8vF)%PVFfcF_voSF+q%cG=q%fv1_b07?r&X(1>r45dY&v?!DogVN$qS^`Q-LTM=|Ee)k*ptLNMmV?srP+9>> zD?(`{D6I^oRiLyglvab%>QGt(N^3%CEhw!GrFEdRE|k`T()v)^07@G|X(K3Y45dw= zv?-J}gVN?u+5$>jg6I_HU_Yy3?b&D-6zbH4clIYq;(*yJ3yKQ?Py{jZFflPoF!FG+F$pjVFcyh1FfdfHYU!0{ zF22Q4lv-GtT3k|GB@AQfrB)=T7L$xX~l zOiwMsmlB``;0wf})Z&8tyyDa21HarOqYG6rGWtB1k<3KTmFY3WYm1O3o=9l74cVKm;MLD;)K&4AgSt_WE z<0whZOH9rzsl3HnlAoKCd5awydYb&V*yH0<@{=KTNm^-1X;Er?d=V1^1H&yAP=#`f zJs%VTB^kGv@{5ajK;oP(u1=wTEzkO)zbu^cv#8psY*+ZC5FFfg#N^DuERaxikRvapG; VaY(T-t1yH4ATdfX#8ez6000H5igN$} literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/appdirs.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/appdirs.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7ef21c519c7890ccc61b168406f53866583c657 GIT binary patch literal 21391 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 Q$YNs<4O(UcqCv$l0M|V}(EtDd literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/distro.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/distro.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91baaec9022e013f608fc14e7399b05da4bb54d6 GIT binary patch literal 36870 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2afdbc0eb3e152633da3e85807535ed87fc18e85 GIT binary patch literal 240427 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≺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 n&&R^U%*M for details and usage. +""" +# Dev Notes: +# - MSDN on where to store app data files: +# http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120 +# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html +# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html + +__version__ = "1.4.4" +__version_info__ = tuple(int(segment) for segment in __version__.split(".")) + + +import sys +import os + +PY3 = sys.version_info[0] == 3 + +if PY3: + unicode = str + +if sys.platform.startswith('java'): + import platform + os_name = platform.java_ver()[3][0] + if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc. + system = 'win32' + elif os_name.startswith('Mac'): # "Mac OS X", etc. + system = 'darwin' + else: # "Linux", "SunOS", "FreeBSD", etc. + # Setting this to "linux2" is not ideal, but only Windows or Mac + # are actually checked for and the rest of the module expects + # *sys.platform* style strings. + system = 'linux2' +elif sys.platform == 'cli' and os.name == 'nt': + # Detect Windows in IronPython to match pip._internal.utils.compat.WINDOWS + # Discussion: + system = 'win32' +else: + system = sys.platform + + + +def user_data_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user data directories are: + Mac OS X: ~/Library/Application Support/ # or ~/.config/, if the other does not exist + Unix: ~/.local/share/ # or in $XDG_DATA_HOME, if defined + Win XP (not roaming): C:\Documents and Settings\\Application Data\\ + Win XP (roaming): C:\Documents and Settings\\Local Settings\Application Data\\ + Win 7 (not roaming): C:\Users\\AppData\Local\\ + Win 7 (roaming): C:\Users\\AppData\Roaming\\ + + For Unix, we follow the XDG spec and support $XDG_DATA_HOME. + That means, by default "~/.local/share/". + """ + if system == "win32": + if appauthor is None: + appauthor = appname + const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA" + path = os.path.normpath(_get_win_folder(const)) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('~/Library/Application Support/') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def site_data_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of data dirs should be + returned. By default, the first item from XDG_DATA_DIRS is + returned, or '/usr/local/share/', + if XDG_DATA_DIRS is not set + + Typical site data directories are: + Mac OS X: /Library/Application Support/ + Unix: /usr/local/share/ or /usr/share/ + Win XP: C:\Documents and Settings\All Users\Application Data\\ + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + Win 7: C:\ProgramData\\ # Hidden, but writeable on Win 7. + + For Unix, this is using the $XDG_DATA_DIRS[0] default. + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA")) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('/Library/Application Support') + if appname: + path = os.path.join(path, appname) + else: + # XDG default for $XDG_DATA_DIRS + # only first, if multipath is False + path = os.getenv('XDG_DATA_DIRS', + os.pathsep.join(['/usr/local/share', '/usr/share'])) + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + if appname and version: + path = os.path.join(path, version) + return path + + +def user_config_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific config dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user config directories are: + Mac OS X: same as user_data_dir + Unix: ~/.config/ # or in $XDG_CONFIG_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. + That means, by default "~/.config/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of config dirs should be + returned. By default, the first item from XDG_CONFIG_DIRS is + returned, or '/etc/xdg/', if XDG_CONFIG_DIRS is not set + + Typical site config directories are: + Mac OS X: same as site_data_dir + Unix: /etc/xdg/ or $XDG_CONFIG_DIRS[i]/ for each value in + $XDG_CONFIG_DIRS + Win *: same as site_data_dir + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + + For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system in ["win32", "darwin"]: + path = site_data_dir(appname, appauthor) + if appname and version: + path = os.path.join(path, version) + else: + # XDG default for $XDG_CONFIG_DIRS (missing or empty) + # see + # only first, if multipath is False + path = os.getenv('XDG_CONFIG_DIRS') or '/etc/xdg' + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep) if x] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + +def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific cache dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Cache" to the base app data dir for Windows. See + discussion below. + + Typical user cache directories are: + Mac OS X: ~/Library/Caches/ + Unix: ~/.cache/ (XDG default) + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Cache + Vista: C:\Users\\AppData\Local\\\Cache + + On Windows the only suggestion in the MSDN docs is that local settings go in + the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming + app data dir (the default returned by `user_data_dir` above). Apps typically + put cache data somewhere *under* the given dir here. Some examples: + ...\Mozilla\Firefox\Profiles\\Cache + ...\Acme\SuperApp\Cache\1.0 + OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value. + This can be disabled with the `opinion=False` option. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA")) + # When using Python 2, return paths as bytes on Windows like we do on + # other operating systems. See helper function docs for more details. + if not PY3 and isinstance(path, unicode): + path = _win_path_to_bytes(path) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + if opinion: + path = os.path.join(path, "Cache") + elif system == 'darwin': + path = os.path.expanduser('~/Library/Caches') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_state_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific state dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user state directories are: + Mac OS X: same as user_data_dir + Unix: ~/.local/state/ # or in $XDG_STATE_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow this Debian proposal + to extend the XDG spec and support $XDG_STATE_HOME. + + That means, by default "~/.local/state/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_log_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific log dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is an optional version path element to append to the + path. You might want to use this if you want multiple versions + of your app to be able to run independently. If used, this + would typically be ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Logs" to the base app data dir for Windows, and "log" to the + base cache dir for Unix. See discussion below. + + Typical user log directories are: + Mac OS X: ~/Library/Logs/ + Unix: ~/.cache//log # or under $XDG_CACHE_HOME if defined + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Logs + Vista: C:\Users\\AppData\Local\\\Logs + + On Windows the only suggestion in the MSDN docs is that local settings + go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in + examples of what some windows apps use for a logs dir.) + + OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA` + value for Windows and appends "log" to the user cache dir for Unix. + This can be disabled with the `opinion=False` option. + """ + if system == "darwin": + path = os.path.join( + os.path.expanduser('~/Library/Logs'), + appname) + elif system == "win32": + path = user_data_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "Logs") + else: + path = user_cache_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "log") + if appname and version: + path = os.path.join(path, version) + return path + + +class AppDirs(object): + """Convenience wrapper for getting application dirs.""" + def __init__(self, appname=None, appauthor=None, version=None, + roaming=False, multipath=False): + self.appname = appname + self.appauthor = appauthor + self.version = version + self.roaming = roaming + self.multipath = multipath + + @property + def user_data_dir(self): + return user_data_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_data_dir(self): + return site_data_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_config_dir(self): + return user_config_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_config_dir(self): + return site_config_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_cache_dir(self): + return user_cache_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_state_dir(self): + return user_state_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_log_dir(self): + return user_log_dir(self.appname, self.appauthor, + version=self.version) + + +#---- internal support stuff + +def _get_win_folder_from_registry(csidl_name): + """This is a fallback technique at best. I'm not sure if using the + registry for this guarantees us the correct answer for all CSIDL_* + names. + """ + if PY3: + import winreg as _winreg + else: + import _winreg + + shell_folder_name = { + "CSIDL_APPDATA": "AppData", + "CSIDL_COMMON_APPDATA": "Common AppData", + "CSIDL_LOCAL_APPDATA": "Local AppData", + }[csidl_name] + + key = _winreg.OpenKey( + _winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" + ) + dir, type = _winreg.QueryValueEx(key, shell_folder_name) + return dir + + +def _get_win_folder_with_pywin32(csidl_name): + from win32com.shell import shellcon, shell + dir = shell.SHGetFolderPath(0, getattr(shellcon, csidl_name), 0, 0) + # Try to make this a unicode path because SHGetFolderPath does + # not return unicode strings when there is unicode data in the + # path. + try: + dir = unicode(dir) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + try: + import win32api + dir = win32api.GetShortPathName(dir) + except ImportError: + pass + except UnicodeError: + pass + return dir + + +def _get_win_folder_with_ctypes(csidl_name): + import ctypes + + csidl_const = { + "CSIDL_APPDATA": 26, + "CSIDL_COMMON_APPDATA": 35, + "CSIDL_LOCAL_APPDATA": 28, + }[csidl_name] + + buf = ctypes.create_unicode_buffer(1024) + ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in buf: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf2 = ctypes.create_unicode_buffer(1024) + if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): + buf = buf2 + + return buf.value + +def _get_win_folder_with_jna(csidl_name): + import array + from com.sun import jna + from com.sun.jna.platform import win32 + + buf_size = win32.WinDef.MAX_PATH * 2 + buf = array.zeros('c', buf_size) + shell = win32.Shell32.INSTANCE + shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf) + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf = array.zeros('c', buf_size) + kernel = win32.Kernel32.INSTANCE + if kernel.GetShortPathName(dir, buf, buf_size): + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + return dir + +if system == "win32": + try: + from ctypes import windll + _get_win_folder = _get_win_folder_with_ctypes + except ImportError: + try: + import com.sun.jna + _get_win_folder = _get_win_folder_with_jna + except ImportError: + _get_win_folder = _get_win_folder_from_registry + + +def _win_path_to_bytes(path): + """Encode Windows paths to bytes. Only used on Python 2. + + Motivation is to be consistent with other operating systems where paths + are also returned as bytes. This avoids problems mixing bytes and Unicode + elsewhere in the codebase. For more details and discussion see + . + + If encoding using ASCII and MBCS fails, return the original Unicode path. + """ + for encoding in ('ASCII', 'MBCS'): + try: + return path.encode(encoding) + except (UnicodeEncodeError, LookupError): + pass + return path + + +#---- self test code + +if __name__ == "__main__": + appname = "MyApp" + appauthor = "MyCompany" + + props = ("user_data_dir", + "user_config_dir", + "user_cache_dir", + "user_state_dir", + "user_log_dir", + "site_data_dir", + "site_config_dir") + + print("-- app dirs %s --" % __version__) + + print("-- app dirs (with optional 'version')") + dirs = AppDirs(appname, appauthor, version="1.0") + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'version')") + dirs = AppDirs(appname, appauthor) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'appauthor')") + dirs = AppDirs(appname) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (with disabled 'appauthor')") + dirs = AppDirs(appname, appauthor=False) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..60b799d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,11 @@ +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.12.6" + +from .wrapper import CacheControl +from .adapter import CacheControlAdapter +from .controller import CacheController diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b6ae05661df85cbbb16061b32954d09642138e7 GIT binary patch literal 541 zcmYe~<>g{vU|^WXFgx9nk%8ech=Yuo7#J8F7#J9eEf^RWQW&BbQW&EcQ<$QdQkbKd zQ&>`1b69d&qgWXkQdm;ha@ca&qu9Z0_8g8}&L~bsh7^uq22IYYBg8ZTq1<$;a)S|S+1BFR3$Z8fA7Dg6E7A77>9!3Bdn4;?d literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72b7253b5d8f5231852a58b3e438b3841c24be04 GIT binary patch literal 1562 zcmYe~<>g{vU|^WXFgx9Ym4V?gh=Yuo85kHG7#J9eD;O9UQW#Pga~PsPG*b>^E>jc} zBZ$qM!<@?!#R6ut{#6BSQ*%3P%e=6n6?|3Req5 z6i*6w3Qr3|6mN<^3U3Nu3u6>tDt`)pHd9eaDqk}LBSQ*fFoUMxOOTuVG#PJk6r~oH zrWThJYck#vc1}#rNOjK7D=Es)aZE`pC`m2SWW2@cl9^lrmeORr#g>zwo(>k~b1X_P z%}vcK2}mp|PAy6XnFzy-3=9k)pE`qls>Hy+P{Oc)v4km$c_AYsLkZIYmW2$pATib& z29QV!LokCTqn{>Q5i0`&!!3^D)DoZ6vecYg>>%4R^U`mzy0|)py5HgrE-6Y)%=Jjj zOUX$sy2X{4k^*IGGTvg(fC#T-DB@*cVE7fQpOK%Ns-Iq-SyEyMrGiom^7VZ)Qxc0k ze0}wEGL!TRDoZl*^NjT@^@}r0QgsUwld}`kQ;YQrG7I$M%Tn`F@{9D7LE(}N2^anN zBG2J$~64FaB<7lC4@ zh=qZHp$O!#TkOH9#l@NVdAC?|^GoweZgD|<3kqcch#d$KO{QDyiIC)Ri={ZVxELJX z5P}aBf!yh-CGjAM%=|ndP{0U)1BQu_>pvSa2O|$74-*GtktBK$fl>{~N#G!o0S8et zLoGuMLl$ESV+vCWb1x`B7#1)s1f>@izgx_uMLAUxAsML(p+P^MU@JPc_|8D z7i%)!V#!F&DbQpt0tNgnp2U=t_(W);y~R}kO12V85#08O1M&(KrC<`VfL$H2j|2T#VTIE z{1S*qQxvQ;G`YcU0tf0X=JeE(A}LVhf|6m87${Eoz+nU)MW*%lXW+7%i zMlPlz4Uk5T_;`@2_;^qr7bxNYiE$TX7U)6q7dQz e1Eq#yP*8I)@i6g#6FCnv2O9?u2OF0N2O|I~<%kOa literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef567f29cca5d5eab7f8762025b9f3fea0ef6412 GIT binary patch literal 3067 zcmYe~<>g{vU|^WXFgty^FayJ55C<8vFfcGUFfcF_$1pH3q%fo~<}gG-XvQc;FrO)k zDTN`0DTg_iC5nZSA%!`GC5JVaEs71yX3b&G<%r?{v)OVubGf3p7#Z9dQrJ^CS{PC| zQdydrqqtKTgBdhAUxMuQ(`3BG?GX|Z;FywFP?B2ol97RdL6h+ozjI=8MyhjuUP)1Y zPEKl(CgUwmm(1i6u&^fMEn(-xoSdY@f*CXgK~6w85$gO~%mJYxx7b`lRCKYED`a$cIJT3=9mn1Q4?E z$vKI|#YH>}3=BmAAVLtNfF-dgz4#VWcKIzKB&BJI$tC$kl`9!Qep_Df>I0e^?fr_5{o^2ef4uPlk^KJOEU8FjP)$_i!)17bqf-cvlG)( zi}edK3-sg5Qu9*si}b;sfm*1a2uXT+1(ij7u=oMFkbzr_QG}6=k&B6gk%^Jxf0Yb4 z^+6LQG{*H{0hi1SiexATg((LE0|O`!iklc17;2abIBFQO7;0H+7_%5_SjrfR(y9b% z7_yiaFxN0HWUOTkXULOaVJKnAVy(1cWB|bw##+`$hCC(%h8otQpc;lOwi?D7))b}` z=3eGth8o5!_5~m_nHF$@OjyXs$WX#n!VOMQJT;7IjF}8I%%C(?%T~h{%%I6qHHAw7 z3W8JfQWO#uic$+pQ;SRV6hezr6-qKvVFC)7d1?7Yxrrs2`FRQ@`3l9UsS25C3YjHv z15zt8i%W_XGV{RNz`?1In3tjeVL^;4F38U-25T%&Rme+CO#vANQIw|#H_0zVlkpZ; zT2X#(JXo_PZxJ|UutAbpkq{`E@PVaL;-L<{#Zr}%nRJUawWuh+=oVj6X=V;c4r1Xg z_KeiTl+>c)TWqBTDTyViw}g}P^HMTFo=MD!he{Ulg3=%;oKbVPR7fVrUaY2y;$Sf%kAq^r_85kH;K)D>Goq?5$k&BUuQGk(; zk&BUqQGi*5NrI_L0$W-tPR&bkO9tgYXgXp56&fH%f)ZD;03!oK4GT0OvDPpb9|0#O z)-r~oBcP;Iqy-`uFxN0GWUOVXVaj4jVa#SK%BW$;VqE}AJWLCjK#8G-sg$wEFNLX= zxrQl=9aMt%f(jm{1sn?*7#V8VYMJt4z`9wpnTndgx;bkYYnT=?F*4*im2lNCWpS7A zEZ_ynWI<$@o0)2u;<;;>viORQ)G%f7cQSyBO|}&F7LHo>5`hJRHS8c0YMA2rON2^< zLCJK12*lJ{4zNEMvP8=mCNLJU)o^5qfoYJt#cLR|Bo;E(f{HrH1yVJfpoCt-T*DDB zT>~nJIjWYz(~=V?A%N30Bq=B)RVw5rW@qN5g9X8fT_L|np|ltz1WKjg_|)Tqn-G$b zS*%c=nUkXc$|0o%3dxB%IUvQLr~#+&qSTVoqCAjLqC!D_Norn6W@1iGCENtCi75)8 zbOB2KaPdq7Mh1ouH%-P{d?~5P`6;RKpz;T#U6+x8AsJNf!6F^RW@2Dq042y`IR*xX z4u)n>#4uzrfFo3@h9Qe_0TU>)z~w!YUlB-)Ci5+>Yy;t01+U^6lsE3_8S0e0*+xN@)&=%@ZGASelpvktwnT*$S%Ui$G;G zI9kEB-r|L}Gm=wta^mA5Spn=YuoJ;S4=RR1t(Rhu5CTb6Dhi50e&k@}VB}!pVd7!rVdP;30D`|4aR2}S literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a82dfa078f5dfbd242049a5713346a6230723928 GIT binary patch literal 1814 zcmYe~<>g{vU|^WXFgx9cnStRkh=Yt-7#J8F7#J9eO&Ay$QW&BbQW#U1au{=&qL>&N z+!<1sQ&?IUQdm-%o0+3n+!<0>Q`lMinwg_mQ`mzUG&!o0xI!{g6_OK^Gg1}u zld@8iOB5UfJQdRNixe_*3vyC(Q}aqP^U@(IiuDvgs#8+a5=(PR6f%ny5*11^ic%9( zxQY|gQWY}ubaPX4^NT7KQZkcEGV}8iiz@ZFUV_}L$#{#!CqFqm8N@-xOfXOAFfcHr zGDI<^FhntdJkr7t#SHO66br=ZAV;Tgv@k@mrEmr_XmZ`+bV@8vbq2XT8DtF1SP+|$ zfq}sp6gHqBEMaJ7XktuZ2xeHx=(m#bmat!bi6_i=sVS~SMfpW5nQpNZr{<*HV$M#j zT**)b()TM)KO;XkRX@Evv!uijN(H4BxprX&`7`1KA90 zr0NzVCTAz6rxxoMWESYhm!;;V~I3s2JpA2F5C0 zxQF!8Q%jPWVLoDDU;wdkc&Z4L5QOA~V-GDSQfPw;~XkeiDHK`ex2U=}F!ia@ad3gKc9!NJ7A41!=$jD!tR z3eKH+$O)S(g(-!(g)xdbg(Zcxg&~S1g)N1>g&~SHg(HO%oU|E(88o?Xak^wCmw=PD zA4Z&jVh$WoVhjunptN1X5YJe{SiqObP{R<<1P?k*<|2^NTP!*G$=SD9QW8rNHJQKx zd5beMFS8^bluIGO3HKo=w7_!llAvG(MFj&R2V<2G+&y~n@elgnZUp%j95lQLS7OUSa94s711MDb)fgFS7;6}^7|R%ng{vU|^WXFgyJU69dCz5C<7^FfcGUFfcF_-(g^2s1itFNMX!j$YqRTWMl|u z$dhAXNM)+jV`Kn9upBc)E|MXS$$+7XCxsz}DTgJBHJl+&3amB^q>_;VEY2Fm3RMR( zmpO+mmpzId$=o)$TIL)Mh#Zo7mK@Gpt|%@f_1oa;S#r1`a!~agsXS4<;S70VEDWi9 zmDeEZQu(8JA@V6q!3>(LFG2p+WW2>*T9lKOpPA>U$#{#$BP1jsD7CmCKd(3y#Lp~_ zPb-K|&dD!MP0;0S)dnRmYSE6U!+%*T3DJ|TvDu8keHmEn4Vg!2Qk=KuLx>+ z5iZg}ymXsJmsi4$?e0|@{l*D2WUtj&4 z%q0DS%94!yJYzje{o>4$R9%>7^$Ri!^r1napPZPSk(!*JS5lOpqo16gTaZ|yS5SG2 w!zMRBr8FnijuDg^)fgBUm>2~Zc^HM5nHYH(c^LUvp?oGN&CJBe!N|i102;f;O#lD@ literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15b6c69c5390fb0bf1cc24969aaa1e842ee171d4 GIT binary patch literal 7755 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 ROf1Y?tQ;%?N&m literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b05e1ffd6bb1bb80329858dc54c042b0d1ba0f7 GIT binary patch literal 4214 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 F0{~v$qeTD! literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..e61dea2 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,57 @@ +import logging + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +from argparse import ArgumentParser + + +def setup_logging(): + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session(): + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller + return sess + + +def get_args(): + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main(args=None): + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + sess.cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if sess.cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..2a3b7ab --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,133 @@ +import types +import functools +import zlib + +from pip._vendor.requests.adapters import HTTPAdapter + +from .controller import CacheController +from .cache import DictCache +from .filewrapper import CallbackFileWrapper + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "DELETE"} + + def __init__( + self, + cache=None, + cache_etags=True, + controller_class=None, + serializer=None, + heuristic=None, + cacheable_methods=None, + *args, + **kw + ): + super(CacheControlAdapter, self).__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send(self, request, cacheable_methods=None, **kw): + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super(CacheControlAdapter, self).send(request, **kw) + + return resp + + def build_response( + self, request, response, from_cache=False, cacheable_methods=None + ): + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif response.status == 301: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( + response._fp, + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self): + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() + + response._update_chunk_length = types.MethodType( + _update_chunk_length, response + ) + + resp = super(CacheControlAdapter, self).build_response(request, response) + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache + + return resp + + def close(self): + self.cache.close() + super(CacheControlAdapter, self).close() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..dc4d5b6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,39 @@ +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from threading import Lock + + +class BaseCache(object): + + def get(self, key): + raise NotImplementedError() + + def set(self, key, value): + raise NotImplementedError() + + def delete(self, key): + raise NotImplementedError() + + def close(self): + pass + + +class DictCache(BaseCache): + + def __init__(self, init_dict=None): + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key): + return self.data.get(key, None) + + def set(self, key, value): + with self.lock: + self.data.update({key: value}) + + def delete(self, key): + with self.lock: + if key in self.data: + self.data.pop(key) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..1193f26 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,2 @@ +from .file_cache import FileCache # noqa +from .redis_cache import RedisCache # noqa diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..844aa4c44c981f46c6ce3ff086442a300d12322e GIT binary patch literal 285 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 OyBL&Fd6;+@d6)syRZ current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request): + cache_url = self.cache_url(request.url) + resp = self.serializer.loads(request, self.cache.get(cache_url)) + new_headers = {} + + if resp: + headers = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def cache_response(self, request, response, body=None, status_codes=None): + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers = CaseInsensitiveDict(response.headers) + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + logger.debug("Caching due to etag") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # Add to the cache any 301s. We do this before looking that + # the Date headers. + elif response.status == 301: + logger.debug("Caching permanant redirect") + self.cache.set(cache_url, self.serializer.dumps(request, response)) + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + # cache when there is a max-age > 0 + if "max-age" in cc and cc["max-age"] > 0: + logger.debug("Caching b/c date exists and max-age > 0") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + logger.debug("Caching b/c of expires header") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + def update_cached_response(self, request, response): + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + cache_url = self.cache_url(request.url) + + cached_response = self.serializer.loads(request, self.cache.get(cache_url)) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + dict( + (k, v) + for k, v in response.headers.items() + if k.lower() not in excluded_headers + ) + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self.cache.set(cache_url, self.serializer.dumps(request, cached_response)) + + return cached_response diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..ab0d54f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,80 @@ +from io import BytesIO + + +class CallbackFileWrapper(object): + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + """ + + def __init__(self, fp, callback): + self.__buf = BytesIO() + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name): + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self): + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + return self.__fp.closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self): + if self.__callback: + self.__callback(self.__buf.getvalue()) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + def read(self, amt=None): + data = self.__fp.read(amt) + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt): + data = self.__fp._safe_read(amt) + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..6b8d320 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,135 @@ +import calendar +import time + +from email.utils import formatdate, parsedate, parsedate_tz + +from datetime import datetime, timedelta + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta, date=None): + date = date or datetime.utcnow() + return date + delta + + +def datetime_to_header(dt): + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic(object): + + def warning(self, response): + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response): + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response): + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response): + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6])) + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw): + self.delta = timedelta(**kw) + + def update_headers(self, response): + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response): + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + cacheable_by_default_statuses = { + 200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501 + } + + def update_headers(self, resp): + headers = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + date = calendar.timegm(parsedate_tz(headers["date"])) + last_modified = parsedate(headers["last-modified"]) + if date is None or last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp): + return None diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..61e6590 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,188 @@ +import base64 +import io +import json +import zlib + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .compat import HTTPResponse, pickle, text_type + + +def _b64_decode_bytes(b): + return base64.b64decode(b.encode("ascii")) + + +def _b64_decode_str(s): + return _b64_decode_bytes(s).decode("utf8") + + +class Serializer(object): + + def dumps(self, request, response, body=None): + response_headers = CaseInsensitiveDict(response.headers) + + if body is None: + body = response.read(decode_content=False) + + # NOTE: 99% sure this is dead code. I'm only leaving it + # here b/c I don't have a test yet to prove + # it. Basically, before using + # `cachecontrol.filewrapper.CallbackFileWrapper`, + # this made an effort to reset the file handle. The + # `CallbackFileWrapper` short circuits this code by + # setting the body as the content is consumed, the + # result being a `body` argument is *always* passed + # into cache_response, and in turn, + # `Serializer.dump`. + response._fp = io.BytesIO(body) + + # NOTE: This is all a bit weird, but it's really important that on + # Python 2.x these objects are unicode and not str, even when + # they contain only ascii. The problem here is that msgpack + # understands the difference between unicode and bytes and we + # have it set to differentiate between them, however Python 2 + # doesn't know the difference. Forcing these to unicode will be + # enough to have msgpack know the difference. + data = { + u"response": { + u"body": body, + u"headers": dict( + (text_type(k), text_type(v)) for k, v in response.headers.items() + ), + u"status": response.status, + u"version": response.version, + u"reason": text_type(response.reason), + u"strict": response.strict, + u"decode_content": response.decode_content, + } + } + + # Construct our vary headers + data[u"vary"] = {} + if u"vary" in response_headers: + varied_headers = response_headers[u"vary"].split(",") + for header in varied_headers: + header = text_type(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = text_type(header_value) + data[u"vary"][header] = header_value + + return b",".join([b"cc=4", msgpack.dumps(data, use_bin_type=True)]) + + def loads(self, request, data): + # Short circuit if we've been given an empty set of data + if not data: + return + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + ver = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, "_loads_v{}".format(ver))(request, data) + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return + + def prepare_response(self, request, cached): + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return + + body_raw = cached["response"].pop("body") + + headers = CaseInsensitiveDict(data=cached["response"]["headers"]) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body = io.BytesIO(body_raw) + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0(self, request, data): + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return + + def _loads_v1(self, request, data): + try: + cached = pickle.loads(data) + except ValueError: + return + + return self.prepare_response(request, cached) + + def _loads_v2(self, request, data): + try: + cached = json.loads(zlib.decompress(data).decode("utf8")) + except (ValueError, zlib.error): + return + + # We need to decode the items that we've base64 encoded + cached["response"]["body"] = _b64_decode_bytes(cached["response"]["body"]) + cached["response"]["headers"] = dict( + (_b64_decode_str(k), _b64_decode_str(v)) + for k, v in cached["response"]["headers"].items() + ) + cached["response"]["reason"] = _b64_decode_str(cached["response"]["reason"]) + cached["vary"] = dict( + (_b64_decode_str(k), _b64_decode_str(v) if v is not None else v) + for k, v in cached["vary"].items() + ) + + return self.prepare_response(request, cached) + + def _loads_v3(self, request, data): + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return + + def _loads_v4(self, request, data): + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return + + return self.prepare_response(request, cached) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..dbb8e26 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,29 @@ +from .adapter import CacheControlAdapter +from .cache import DictCache + + +def CacheControl( + sess, + cache=None, + cache_etags=True, + serializer=None, + heuristic=None, + controller_class=None, + adapter_class=None, + cacheable_methods=None, +): + + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..2d106d9 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2021.05.30" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..d26ce67 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..438e641145b8703163e9c020552c953f3e0f0ded GIT binary patch literal 267 zcmYe~<>g{vU|^WXFgx9mfq~&Mh=Yuo7#J8F7#J9eB^VeOQW#Pga~N_NqZo6UqL>&N zQkbHcQ<#GpG+ACUGB7Y`GTq`x&d)1J%_}Ls#af<`T9jJFWn^GvsApiRXKdi7$#RP& zIlm~i2xMpxGXn#|E$;aEvecsD%>2Cg_>~MrYzzz#;#Z7*Mt*LpetLOkNr@qp3Q8@= z*Z0j#Ni6p8_0`YGOwuo?EXl~vGuE@zFU~AU)h$R&&Q45EE!Ho{EYOcHOU+BkFVas= nEh@=O%hZpL&&g{vU|^WXFgu-_k%8ech=Yt-85kHG7#J9eBN!MMQW#Pga~PsPG*b>^E>jd! zE^`z!BSR{~0+xjgQLL$~S!^lHDJ&_hDQvwUan=Rw3mKv~QaQ4iio8-eQ<<6>ni&}x z^0-ntQ<)*`6vki%P4<@{JN-17ZgC{%=ar=9l@#A%Ezd|TO08njO|Ih7)rAXl6_?}} zrN);Om8NPk-eOBkF3HT#)8x9vkyw;okXTfldP}$pbvGXKGd1|@$tEdnR)T?dIgoYIBatBQ%ZAE?HEDf V53-PhNq~uiQGk(yiH(tm2>|1+e!c(z literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9419a8d94b051c4fc69b2f61f0e3c2f28fdddd33 GIT binary patch literal 1535 zcmYe~<>g{vU|^WXFgrbkn}Ojmh=Ytd7#J8F7#J9e7cej|q%cG=q%fv1$9mUPakiwM6lfsn9o5BfE70!@n!orZsTv@=#0D_SWc`7UnseF}_Ks-i<6oC}( z6rL8wDDD(qh>l2xJSGE%6uuPx7KSMP6sBMXO~I;EuH@9BlFYPBy@E=vIym6s3dzVU zR>;jyDa}b$C`v6UEy^oaD9K1w$jmD)NzBPfEXmBzQ^?6rhA{He6p|A`Cg~NV<|^bD zDP)!uDS;Zwr+;xFVpx;)7EiphBgkX%0gfRa zw>Z*MOX9%};f9GjheX_BE-op$#Tg%;npcuq6dw=q4m@ItKpq2oLmuQUkk=VFIJmhO zd6;goCKe}WW+sE&4ofkhfC8xj`^5(AmlDQih7`scrWB@L=6;D<<{IV&ObZ#p8JHMS z7+4rs7@Cs7hbFLFtYGgIiGt#SB_**W5y>-Pe{eG}FxZ3q0dgk;qYz^eNCYJ| zK1mMWB?W$$E<^zqklg=-gsY z$t(gTZ%_tE%gg~~0G6!$%sfrTTa0Pw&H<$kSA=tTm{42-3R6~Cy5Ix51XNIgil|=Z zU detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name + lower_charset_name = prober.charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if detector._has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + results.append({ + 'encoding': charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language, + }) + if len(results) > 0: + return sorted(results, key=lambda result: -result['confidence']) + + return [detector.result] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4de0cfc13591fc74fb176d0695f60d4e43289fdc GIT binary patch literal 1891 zcmYe~<>g{vU|^WXFgsm}mx19ih=Yuo7#J8F7#J9eT^JY`QW#Pga~N_NqZk=MY^EHh zT;?cdFq=7tC6_gdHJ2@ljgcXpA%$fTV-$M|YYJNnLlj2}dkRMjLlkEUXE1{%*GonQ z1_n*WTY{l^nPsU(#fdpCsU@k&CHX~~jJLQv^9o8!f=d!hQZ<=wamUAlRAlDo#mC=b z4|5F)_VoADWGw=@>K0oHSlcZw2pyl8lT*aPz`#(%%D}*o46+2~5s-3_pfkuL9t;c& zB@8tTC5+8X#Rgy&Q!`VsMhSBY;{uiv)*6Op#)XW{j7^Mr93_k(UM)ijTQfr~V-4d1 z_8NwTjEoF5j0-pxG6XYdGF2_+QczG(fcQY6BqLQJH7_|oB{MHwAwLbwPtPn%%~MFK zEJ;-;E-A{)OV{H9Yq2UwEK1A;OT-tK6j_0cQ3%OM1&b&Yrxuo`<|U^pl;kUAZGC`&XCH2RM(=S z{GwZIY57IDi6ysKK#qgN4og~UYRWCvZg}ymXsJmsi4$?e0|@{l*D2WUtj&4%q0DS%94!yJYzje{o>4$RNaEa(W2h8o5!zHFAFxEkgx{#q6gxjjJ?PriF|}^J*BggutZm0+AZl z8kU7jwJbGE3q)&Jpe8V9iKQ^lVFo49!nhLg8m4B(6qan3qAMj5HB6A)n8M!66b!OU zGMzD)L6f6uBRGjb6L4Zq4mi;kRGff zpn^!xCMQ2RF{jv052j3$@fLG-YNe)B5huuSkex-`AQlgZ-~|zUAOhs7B7P7{0AvkM zd?u(sj4uY2h(*jGAx;lZcaM0d$Pm|C0`Z_EUz}PJUr>~vlv-4Li!VL3BpxXY1bsdI zJbgob<3l`xT!TIQeOzww!1UxL=BD0a&B-rMExN^3T#{H+Qe2){l5vYKJ|nR>zC1H8 z9+YW|Z*hAD`^SfS`o;S?2Hav!Pc6B{mRL}bnwL@}4ss83PHNsQw&MJvlGKzUNl@9& zRwM}W04T@ZVuu7@@hvup6N{8UdW68X!d(w?2_$SmfnEd(;37~S)CEP41t@TlGcFS- z<8mg{vU|^WXFgtxlH3P$A5C<7EGB7YWFfcF_3otM+q%cG=q%cM?rZ7b@r7#CG zXtJb3)V{EP$so$WpaCLYg0y6EvNJGbK4N8Hc=?}!fgy7`h;@vCf#D@5hzJ4^Y#@mV z!VC;AH-fmQK-@$=28PTREDQ{ptlSI?FY`cR&-fS^UMhlEr+7dTj0_AfeLy;NKw?fD z3=A(pj>~M~W?;zd=3rpRoB=XmG7|$sW-~tn!%HcUx@ukqhRj$l28PUaAlVjv28K*A zkXV)g14HI4Mh1q=%$p%?e$jQKvd4iRJA#(~y@net+gn1YkUOoUR zVFP&~3FKd9kTy`%WVV7_x*rsNvLGdoL0-rQdBF&zcnT<-Gnp9}UN(VbPlG}z86;}~ za>i7U9rHoXWdZr^Hz?@-fYhx5d2kvi?E666YLGu_KvtduahpM5uLNQ}0lBXQL6+|V>75Nyd>q7W1u1C+5pHatr~oOh0htmAvfKltZW_pGGeMRI zfVgE$3=A*dfmp2|*FOaX4m(K6YGww8Oc#)6;y|AM0y1;~NY)J`RtqxpAjnWxklxjx z(C`NtwHd@U0QvViNVXWn{S0!N3CN{3AYU4R#MXd(*#=^%fh_U`DY*x-;|qvY$IHO* zatlcIF-X=O6rpoKTuG3UXpn6iK&)9H588vAD+zKMH%M_J$Z{r-tT!l_v_P^8K(UYx zVjbgTV0ak?GHMRUTUH=#(?JgB28nfn4Dbed@Fz%}2uQ3G#M%a8iGU2<0t(pKAbanC zxCtNwazKeo9>nSa5pAF-lLYDD1-U?hg@NH^A&A=#azP!4msccCBy!%KG%HxA_0ub>dm6JTI?IT0i#0&;yQh~*5j;~B^;&LBJP zffP>yS-A!zb{%9CD~S6Yq)q{p4YEMm@<9^%ASH|-*?FL_3IG{k4sv8PNa8stm)!*^ zeg<;0J;>AZLF$%(+|mfLC?DjYV2~0GkdE~rF;S4y4uHf8Kv5P8Vl4n^GXuFG3#6AF zlr|hd=1GIZ1VQ%R2eE`e@x}%sEI_GA8Wfz`AOnm+I-)_Y?*?%lo}0#XtS@`oeHj_n|4Tn35V1({+9Dh>~Wxb2{F!vkd7bC3sLfQS@OTy}s= zc?D9U4YFe`NShJJk)0qNJ3*|4AQ!v@>F@^`-~+O44#)+vAlWpKm?0=apMXqh0C5+C zTzVPg()l1_At*@LKrCaB4oi@K--G;{1Ja=b(t85L;sk{$1IXn2AeJ0R@gk7k#UP>q z#BB%pG8N?TDo}O_1S$3fIb02-<18pXB0xs%207y!C<3}b{+JI+-d8{pTp-(KfGnR1 z;$8u{DjTG(0F*kHfKs9_NOm_!b_vMdd!Uj*6(q(A5?cofp`{>+Zji~#K&<7UG_DSk zy#orIr6BLefYfz>oGTBC1#^%AQ$U0lNZm4!5=D^fAA?+Q2o%JuATKn60_P@3i66*S zzd;gCAX5TBvhg5K7lKlv1jwj0Aa$=mG1CGHgC3BBUW2%AK*Vy8XB0q68bGFSfE=U% zVtInBd=4TkK+Zi43fQ?IlLbJgRC6&fykr4syARSK4l-&oNZVhK)AoSu%>~JR1{tsd zjTKpbdcU&P$E16GL#FX zjU8mbYLL1$AYvhiD*=kZpCBdMK{2QXVyy+qs)KZ_1F@t)>iR%oFdJm@Ur?~?ftD>&nh!3P~3y7rv5<3S{;stW95J<;)km68~ zKNvs~cR;M2AoKh{o^Av=V-d(Rn?SNQARSvlMm2#XtUzLpAm=^-5vxE!A`jB003s|w zcDw~ySqoxGf|BT6ki=IIw+m!cI7lo2WPCHoJb93Lnjo$VNE-tvNLGUkZ3l^&fD*_% zkh*&yQ#3)|dI1WTUXZ#Xkk~em(?AW*%%vc)mmt{^P_VOt%(Db3IR>(K4am^HAZHYV z#I!(034wI11xaiNnbH7q+BT3xFUay(kmZX(tQ{cPbs%*UK(bvR16)9Xm<6&;0~8RF zAV4r3J+82c@-AkXuYazKjIv%>ucF6J&A@NNg9#k)px#|E&i6BTx4oFN9WE&?)@ktQN2_&%-6p{%bvCSYQTp(>1K#6)e$Z|)J*bm^8QnhQNAEk4uTxi3Nqjo zD55rij28tNwF%_uM38JF$W`4S#fL!LS`hIXq__fPs1B%9sRfxg1!PJm$Vw-WlFc9k z_JFM13nJctbnFAM_JfE6AYuzhi5o~qHb^!XWchE9!|#Gz&<66%Gf=qjfy5d?tdAhE zgCM<0peWl0a+M~?wm48|1c1~@ft2WgjM@is&|{FqS&%w&5Mc`9)`4_Xf?Qt%@>>_k z1yvyKZVbAyPdAXhyD5lJB8D5x0j1u5PQ3KvsQVs!yoz5yh*6Xc*AP-t|6h#HV*qCuu; zf%F~&xpXy1T?fboQ$UJUL1IE6F?Uel#DN^y1af2!*cl*)9|O7SGf2l)P&6ih+`J9M zIu4Rp58@Vpj5+~w+9Z%sd7z}13}U5&oRJGMiXCLs8<1PnL1IQA?m|%OS`4J_I>>Bry#X;w~V6oB*-XK#t@GIrkJuT@6Ty6{yC!1u}0R$Ra6_ zx(A@x>IAv|3CN{iKrCqxaS3GdX^`FxAc;JXy^BCjy9||ASIhXtQ-*Q z1IV_wpdgt7N)|^zI@W@W7X}&dA0)8{WPmG(mL1G_4-ns(Pb{rH@3LrxhL2l*;v37x! z^nhgRL8c^v^j-y-Tnkd-3KE+Ra=i;EG_HXpY(cCiAXgcH3=juJ)OCE&IR#R81H`=o3YT>t#Y!MK)a_$F^>=h7~7v#u% zP`I#y^lk&m27z>FfmlC42IzrIo(6K&DUi0kAfgFmo;b*no}e1S801I}kc18>n3jVi zv_RZokWs=Q|E>io*#~lS1jx|aAWz=`5&9r?93UM@AP*LR+_E2}t_KuH5}>R*3#9ih zNbx-oaUVpS25AcdX=4JpPXgqbtsn!;K|X2*i5Y>s@CjsIFUY6|AZ-UgCO-tR9)XA( zASF9MK92_}c?=Ru0vW&rGQI)inYAE8PlL>B26=ilNZlL|cPB_&3rLI|A{2>D}^eD)@K#DklyDYC7(d%C4*QW zK?X>If+-thUO7mj55)ZhlGq4}{m&rQ7ZC9kM9csMlRQY>Oc3iFsEz^+m}d5av;~6F z!D5h0LqX=rf;`;{GUW_N>>J2{4WRB`~ul)0pgZ{ z)QN$@-Weoz7G#PDC|u-0dS8GP=Yoh$AjSP4v40>dKZESJ1G2Xd#QF~sivp=T2O2+E z3QBOFLE&;9WL`PQjt8KKss@Rz2HDmR3WGl&)&-Cb6_CU{khd5?ruc#+Qa~Ow0NGmv z;x>aUdJYoX3yO+#5LXyPgn@`3AUo!R3}6spV8~nmVp)L{M}Zu92IQk&kjd2`^He|v zq=IA(K%Sleatk9!n+k}#6(q3$6ktC={@o0++!Ul^B1l~{$f%1TH?WH zG*AW33o_~jC?G08c5DL~^0i?|s!mc zAfghaBNAkk56I+2prG3cVm$VFwgE1i1N06)bfIK4y zQnwgnzzdK8VIUXyfvlVkQX&tMeF+MURUqzOkPZcq-=={4s{~S90dk}&NUta;?5#nB zEyx85AiaMI70e1H|e8NoatS+yj}n1?*;!<VhO@g7oTxbYy^(*n%9X z2a>o03XQuU%R51q&jP6n16e5xGGIMO2M?$c&H%}t139e|q*ouLR}AEgW{~V(knAK7 z*9N5b2Z;3+L|B7dU;t9Q3=}xOLC(DgvQi8bB>zBRU_`JC-T{&|1F4G#nHLTsu7QX-AXAz_O3XpBb|7`)pwL(h5=#dW z${@>MfGjTsdCLN%ZYN0HEs*h+AZ`Xoog0Yw402EyNTM3#^IISX`Gbg8pb+;2HKWQw zM%971lR)ts2eOR`r;w}Kmz5==aHpo??AQl5iaR7*G12WGRL_7v5 zwga(RK;F6wYB6en9G(C&F9>9%JxFgPC_WZ~4D|%L;4vtyo`KXo0y%dVNQpVf@;e~o zCxiTJ4>I&U$befQ9aBJJ4j{4nprFeKC5C?>0}4S(B0);>KoTM#2h9PA<$zdHAZM%s zIeayU=mJ@E9HjUp$hnyy!WE=00Hikz6l!xoIut>+?FK164RX~Yki+{y5^F%F^Vru z3lQM~a+)s4s6bFUxCJuV17u1n$jT=m7w~|@m_WvRf+Qw`)O`dQ&jKR6Kw?!Oles{| z5>VKCgT$CYI#@u24~V-IB%uPbycOi;sUXG6Kw<|$F6abtJwT1^eIS=!1BJ_MkP8?= zvHud}(pMnD7i5$bDCkaroK_Dq{u0O;ejth0ASIq4NXILXx*m{c zL_z+Y36k{(X?qJ&vH`@M2r@JPBo+uF-hm|6f?SXdG9U;f76dZ+9%y9ZI>@EhLE7Gc ztYiccQ$VusLE5H*SRX*F-yprqL0)A78TAn)77Q{f1Vk(Y8SotB{T@)FQ3Zui1ISy` zK#n{Da_&)(!#{zvsexpJK_-WS^ooIWJO!x>206SJ6kyIE?k5my1<1-bAOpfcit9km zmdmHIzY1XKvD4*MCgF5{0y>^10?YU#Ci&n@COm^K|~FR_zIF> z1{rW0WL^Ns@*vkw0}%&6vMWK3`~#A00%`jWQhWo% zT?Fjc8$70q&>z`g^rV--k8ILJq@LF#^hbg+W-Mu5b=g8Ul^Vyy_AfHErl7J;hj1?rt1|m{GdNV-gF@ap4 z3gT`7nX(7uzBeEVFOY;HNZUVv@x0&&M-o#>%jy#abr646`AP1F$JbeEkRu;}6c>Z^s)3wQ3GxCrNbfd~y$T@N{UCMiAc;pHy^J7NZ3oHD1UZriq}UE* z??g~AZ37YiK*m1=>6HTw_(g)8I}v0`Ge~g>$hM6jb)_JdKFDd>Afpa|l$3$QCV^P1 zK|wMTWQqfbTMm+70$F|%K!PO_kvi=Ad3`1+BiUl?gSB)AfwKKED8j<-U^g_ zl0oM2g1ogIlulVd+H^sS$?`#_>;Q?ifMnf3Art{JZ#KyC_aGnb1j(j>T>2O!!3R=T z1+wEUC`fjJtlSME4uTY40(t8u$jWMv5`9oQ_ztpTJIF!mAkVA=5lJA6SV7LX1yY;< z^59&M*glXtHjqRq$jzJ}lgmJ2Yd|iT4Kkh`B)bbFdm7{dW)Q&zQnv?0Yy_FN3*_b} zAmR}$oz=OEh@L4jBYlH~x| zy9Xre29gK``J)SD${bKw)q|99gUo9Hu~I?qD+b9P1R2l@3bm&o2bF`g$$-QTf^2I9 zDOLhWaD!Z*2$J9gSri3wsTxShUXYc4Kt?rz6h8u)JQ-vP7f4+*NUQ}!TmdO@1o>?j zh}8-bTLuaoevsvvAd{s)-f9C$d;=-@0kWeFB)bn}$25=CFdm7l8;K z5YZ0O%L8)hJCH0dh}8}ICWS0ug&bhIWHk`$4Wc1=98rWB?Dy(0w4;D3A^dP~hZ)j28fT;Wo&9fgs`l zNLvrcfP)~`dXQ~%L2=XzD%XC2h7uD&L?9?d90Don11T;58D$MJKnzruEda>|fP%9h zB%1_cJpo1hJdnBxAh9_h7f6GgHVfpS!yu!0L5^$(IcPda-8PW6^&l^-0y*O?VOECk7#fWl=Fh$SS%!0_@b$S7futPLolHh|2N2Dv~S6uRp`icf>WB@z@B z(?GI|L3;T>mCbRGUT2V-kAdu10+J8|S-u>k_a?~oKS6qLfml~TtXdGu5M+@E$jbSk zfan3~SPIg+3`BT?I*)uHlV5^j8nkXc(*R_i8^|pWK*T+eTh@bu_$)|59AtnpNTLg5 zM-0gLr0Az0m$N*80GZuolJ)p2U21Kzdh#h!Y?& z9*`;LKo+%w?DzyCu7W~n6-Y@Ih}8`uR)e@4Ag9d)X%hpPtP8TE07O`V#2i53X9jX) zC5S5yQt}z3<0VK5H%N>PWRW3=I0TaD0@=m}GJXxn__ZKH6eO_@ln%l`p1B5+Jp^*( zaZoJ02I(*XabJQgY6O`)85Bp}AeJG>t0zF}&V%f50ZF_9C7%}{9nU~Y)`E-|0};I- zqm)6xxfAbnk^w1M4|WyE(9<9fMuGHtfQSN+jtwB$lOWl2kk}~@ z>o_Q!c|e9P0+~_>>TMT+Ji`uh)d^4|;Ub9p9ptx-AOkjmh$$d@Wk7^CNL?7nwiO^& z49E*QAlGw%xSK(WUxUQ9fLP)nzdZznMl8rdeIPIF0$E-Ps#0Y@7PW)4Nq{88KjNn^ z09ly<@=*pzTLVbR8IbH7kW2ePmd^pPTtOa`1aY^6Y~utOzZ_(M6v&S0AW#1SnY;re zyAwq00ug6HMx6q=`7Ov~8IVO2K&G4qiLC^gA`LP?21NV-$r^zQ--RIW&jLB^3`pI6 zkVUsa2FQZc`GO?Qf+Wg8;dc&XM=MBdF36>oAh+0qjJgRD`vKB+800rDkZmQPV9EuF zX@Jz70TCS_b=n}K`au@;gJjQx4BZX#!X=Q7NuUh7667jrkm5{GXmo5wRe}pFs{+2C@Ewbf|z>??JAT2if}$@>&=XF$YpkmA1}lh1;< z=Rm}Dkn!t5&iw!~Zz4$c21v{dq;~^I;yj3u0f{k!QqFmhHdT;=WIVb`?Zi0})jq#TP-buMKkPb&%K%5U~_wfHWw&Z-ThD zKtvwM09}xduOQn#g1oN|@)k45eVHH$Ns!nJP^irZx$gnUUJa0v+aLq(fV_1UWYHZE zcMV7#14!K^kPGgD#BP9$k^$Mf0u-FRAlc6#x7-Eky$2$kKuR(}CKrMnbR5K;4{}fg zNU;sb8B;(eYk`O?kUC9}3zR^zS|HYCkZpD#y_z5~bC5;%K_+X1WLrQHdJp85MF>}mmpRZNUtSG))r*w4UlasK&+V{#knB!{(}?;gFGz@GEWR7u>uq` z2S8%yL5eFtq45f2-fIw{53=$h$VZPrL?I~b-+&}oK`djCj<+DLDahn^AeI%#1z$n7 ztpc(BgDg4@;ywl$@B~Cm1%=B~5bFy_8xJT_tU-#Gfx_MZWThd9cn>m99At+CNZlV0 zu@pq)fy{dga&tUL$2^c1VnKvFNMbsO$OEan3sUj{WXerYXj}t{Nr7xr1!;Q?;(i3l z?g82H3B;NK(whL1od$B`Es(a)Ac@-`RuxD`2*}W45Mcyzq%p|6XCTk;f`YReG#1nX zN*ku2=JaV$tuYzI6$AyuCy?TFP((F>6#oVVVm2tmpMwl|0V2MDY?BAEK7$m01#!QD z2xE|KCLrQFh`Su*$R8k9GRPDKkdC7uLw|zActP{v@M6fSZg&m@9eZv`R@L1JG) z2D}7mTM6PSf`&C6K`zYzDNz6gL_UbP2r|VCWQP(+@h_0^zd_Xm4@hwisCv=`u`Ylt zmj)?L1et6Kaw#h)V4s8h`xPY13o>~HNcIoN6lIWkiXc1wg19Om?mrM~H7GIs2eC{* z=B0s5IS=xYFvuuXkUBMxDQiKpeq0O;Mc}Q!G9d09P(+1;bbJNb#wg0bkSPq(I~^1T zOdxI#NS!*!fbSr6Dj;>B&BK{|Aayn%%fEqS{XpTu4AQ{@BEmtIXM@D{gLL?VOt}Dx zyjP&8Wd$i=0}*#YF1Qa0un3S29T33|k}v}Wi5kfDB_NAlfmi_`Q}{vLl^`q4K}yzu zT<{&ly#$ig1sRY93O^2zDV!i;El9}>kdK@}eS>IF1QdWmawbUZ8;GS2GTs7Y9v4VQ z63D#QAhBGKq1+&`bs$qVfjmL1O1XEK86n>p_aogSb2(y;dMG zUJ$DnWL_M|3)ew94ugFD24s{INU=3Y9Un;DJCG875K90=yag%g1L-{gYSF$0c|jJ$ zy$1?E5s=<@ASIe0!UklDEr{p`DUk>Has$XgdqH7u2a*s387c%Kgh7M|h`0<&owgv8 z--Aq<1=1!Da>fS`R}`dVJtztM1BopM1@T-EF%@KJ9>}8oAXyJk2)TfitOJSJgKYZ< zG9VNr77p_C1dxO+$U)OU23UcT#WzquYzFzm4`kjCPy~2`#9Tq+N02Y?fLO~xENzehULY%2E5uu=nKMOKX z3S@vB$O|t(w&jAPBr5|VWI==*$bE7kmOF?AI!NGUHprAMAUEfM^nL}| zwiy&IDWD*c2PyswiYQr7h>LIleQUXa)%kelN`wrv5q-~`A=-$BFq79e#cAPG&7 ztE@pfeu7x`Aa#l$d)q;J^Fb1xAlpuWT%`n(PzKqn3}UH(i1{F{7f8ugkf&8aVqZYv zrv_pbfn4tml2r$BO+gYGAeJVG_y!7`e2|y}$lh9z2OUAI?;r^s5b*;4t3Yo41tNZfh(jPxD}h`(10<^hQYQlP$5)UY&LH=_0EJ&ENUR8Cn+r%x z7i7m)kiEJf9jie``GDM922xiIQuhuNRy82Sz90!bkPbbNVm}Z!5+q>;vV#TW0v3?A zH6T;;K}rljgg!{eACTA)P?Q;h#8f~*w*nMGMj);#i0clrCYT7Z-=gJjh} zMqL20v_PG+R&bPoT;L9Ju0JTiN_8GJAg(&dHXV=w_8_rTkgHTcp6Lg<)ClBeV-TSWQt}7HIt7w70kPyj9@GFC z5DYTj0c3z9h;RZCM?uExflLVj$u0(|^9MyTFG%7i$do%E)(22nEdj~S0=aoR$n|O< z7B|TF6(HAN18G|iiUk{x>%W0m6G1MO1Ihjcxy2b|B{PWY0%H9F8UGI?5el;W8c1;g zNSiyz_*9T*c7RyxL97iRVm8Ri?;s_vAOoyH4i5wAbpvtLL9*^3mL|xh@*s7eLGG&s z#f%3?LJQ=y8z76qLE4sr)U5z%^90E*193w@va>)5t5)V5C#QU1jrdHK*oOr z1+fK4@k$U^3q))ODgFeKSOwyGgY2jSi9H5cJ`-fXMv#?0APG5;Gdw_Hx(npyS71ki z2vtyVeF)?hZIHG!kdDV zkh)Hg7ZgAt^arG59!N*0fLLEa#2irVq6Kn>KFG=oAlLhY><9vx z5(U!c0dn{QkTzuy;R&*GH%JV0;7#UXkd^a67MX&AGZ>^T7Q}T0*&7WqAO=J*fOHgt z4FIvUL0%02SriB&bU@r4ART)^vOyrRH6XEI5Gw>kJOLT110v3V92p7{iv^h+24bB7 zx#|!oV0}OVp$pQh2vWBRqSAV9FVLY$k14jYywEfIuJJw#El0Lg&;Spg4F#38J_?WO9T-TAP)+FOnC^B-3zkU z3>5b1Ag_jkv?YPmC4-0*5RnKneji9(A;{AeAiY09>QX_nj39|5kY_4E&fN?$B@HBz z0pg~ESs>y&$ooG*ZczuhAQL3U1M<;&ki%bs+)@vU!7PwO5y+w+ARSB~;|)NDii2cr zK|0=pT#y8ERSl@2)B%c=Js^{hgNOwn<0pe0v<0M%1*DB1b3i7~1rf|31K2^%wE;QJ4Wup` zY&^&F@!`t^}F96Xc^mAc;*NlP7}IEdUYjAlni_ zL@!8!8Kk2GU7-)`EnD; zRsJAD--GlTg4!k9K@x{R=2e5V{Q|}GS&&7GK|$gMa%3e)@c|HF35v2P(2&YUkhU6- zj#>~=2O``+L3a+McQeSMry!?Y1(`P+WQr9??_`j-m_ZV(Aot0F++qZZlw%;Vxu9^V z2N_iWVl4!TS%b8>gA7;(Qv463jSa-j040kCkm5!V@gF2157K51vhoSY^;6@EYV?K9J@9AXyubk61vmyFq%}Kt_dtB8n9x z77jA10i>fHBrz4_zHK0rTR}=RK;icYq-_C+=m04(1j)Vu`MeXv?E(?qAYv{^@mG+; zpMoqe1;tDh$P_k^MVmkt%>h}I3^Hl~$bc+Rs0Dx=Spc%P2V_bwh~NVGh#jQu707@S zAYvQHZ)G4uGeJ?21tK~@R!#<)ycuLb8_3W;kOBWd>HNr6rPX;N;0qGC}S$Pp;vK>f=Ehx5}LH<<-1_8G+AidHci71eH3qh^%bVTN20)F%S!Mq+I4) zkn6cYL0kwj-X3JzMvxu+Ag{K74CMw{G!10vZjfRnkZsdJ+}|K2_8_GED2&sfMn-^SjM1$-3hXT2jr~`kWq_3F5m(ABL^hW4&r_T z5%WL>Xo7-dK8SS`WLp8q;R`@qb&zelK<4cR6Cis{K&<~D2kinG#S2pM2jtR)ARUW9 z#9|QP2=aM6$Z~d&tDHdGUm&gzC@SWIwDE!*6aZosf~-6XVljXWT>>(o2qeY_vXT#^ zZWTzD59H+Cgh0+M1NmbwNZlrolFcAuK1iHw3Z1f!tgUGDR3PYvc*??-r0LTR}uS$ntF<)^3nzG(g%e zgIvG|GSms=j0+&K?I0y4AZ{_pj$@#3-T@NZ2_klZh}|H94J2_LbQ1jr61kdKaoWG{mxltAXK2kE#Ba^yCUMu2E)paw4$>wGvb+hT?K{Yh zdXS-WK!g-Xq8cRT4RYjh5Q_!W%v%OZ=+PiUSwZG`fgE%lWYGl>%Maw$?I6X$Ad8wo zCQk$f#AJ{uYd}goK|YcLiR}l4UkFH@1IRpSkd>!E+#4YCT0nYlf?T>6WRU|%hY*Me z0(qttB-;ie-hj+20jWCxGEV~Jt(zbNyg>f&1jX+y5ceNQ$p=s%egjEJf^zLukY}cX zBtk*<&IB2s3nFAdZn+K8b`WG}HOO1dAdBvR#9BZsc90HhkZc%;)edrtEJ)j1kgObt z)d3Q-0V$aT@}N9O>@-Mm3djq0K}KBx+4c$)U=biz8%W(fkc1^j$wg3rb%IPW1BJl} zkh=RI*-((WE|A0n5VsqoR{>=FLlD;oB&!JG+JgM{2qdNn^1@>fYdc7c1LR0HkfBdN zVrM`GEC7kIgCcnyC|sU{ET0BaECmWvTaZ6gKKHArtX$dtVx;v-0jI!K8e$bgd|*;$~_kOy&JfV52j zX*&gCX@JxzfFzEB+`dPX3{F(9M7K&evzhOaxi}8Kn3Q3Uz& zCy4b6MEnL3e?Y`v5TOTB>;iJ`KM;2wC~&+$rWAu%${-g^0y%s#h&ThX?IB3k9OULH zAh9(dy$3)}(+3$<4q~-}^wxkvjR7QE4FNh#1#hV6#)?!K(>j3Sm7Wg&LF2P1gR4PiR}j&5C}5L z1th@;lCTHqhy~ek1|%j9QYQf-;y_~gARR#9Qe6f1y;`Jk}60y5<~$iFTiy$e8MmLQ`PK}sfpOj!XUq(OR@fz)Y$ z9LW!2`GCZfKhK7Qiu@GcOEl4j9C`dFx=1m6K z!3EN04N_+VBDg_ZSCH$qLE)?pGHMSf)cQbq&;t}Mwjgz3AVal4rg(rPDnW{MK;F^@ ziG_n?jX^H311Y`=l2{3{%^t+n02%5DGD-)eSQkVjfb1;|BaoOeh)@AZ$bej60^%+M z=`aPc%s_-Wh`0dq%wCY8Ng&o|km8S^0P6-3wV=RR3=&HNDR~SM^9EUT2^0%=K*rw% z5$zx)OF)DL$j~T|-z-6_vmnJ*AXl9Ou`Yt_NCpw-L0l`4lGz{+@`03CgSf>YmKVq< z2T*)m0IB-|;+B9UtU<(Hkd^wN(69mNNCBBA0&>t-kh-6sz_|!=ZYaq0pFnOl04d%I zvM3d#*cPPiDM&{eh+7IW)EA`fJ4neXP(;lH$u0*4*d>q>JCF`pknzzVzlnmBID*{g z19D#nNN*-c%pRm}DM%d;NZVx)!42X%fFvA2L>b67ClJdSM8ts1I|6cK7RZ3rpcESo z^57Ma-gFS*0#fG+BJP0PHw)x6HxQQ@JAdS3evF>#PtAi-+-K^0n%|3 zWU?>Fxy~RR86b6MK*8h*Qs)Pf@B*>;LGJSgv3x+pDv(jDL4+@edl9705EPt7Ai__K zf#Ky$P~bJko#Ofwk3d^F#{y446@P`6eIy4b+I7t2ZC6xAa!{l zmkNQre+{H$Ey&PyAR-Q=E(oM99>j73DGmm43qa~JL7w>l3cnDLSSW~C1#$r|NMbR_ z8DSu?S0E+VK-^^@ZR5 zUO6bNvOso3fVc`EZDOFJ#TXPgvqAny1S#GIlJEqX7YS151!7fz^qPZ0LmZ@o14LW_ z#jh^Neb+#Snt)8n2C>*c>XJZ4MS%>^1qIV4kb@*Z+Vns=l0mYYL1NJ$B^@9)7lDG^ z8f54ZkZs-|drd)x`hZvwp!k>yl2rh)ctARifmoA4#>aq6i3Jf`L3V5bnQR8qs|xZ~ z97rM_L~I2~+yuF=4n!n?#BxAxt^`?`2;x?Oyk7@$2r^j@WO)#X04nB}kJs>4}Ksxq<2rH0t_kma!L7`CuGVcaRT``E|0CHM5$UJM1 zx)P9BDTr7K5-S6-%0Wa0h^Pb+H6T~*2bp&OM0A2&wF_ir6-f3dNcI?rFb4TN5ELYv zL9!1)!I=vpc7P-tK}0o3M-7Nr4dNaG1>!-Fp|v0}e~`&RAOntr%-aakn+{SZ0Fsaa z5p^JSQ6TT{1NoyK#BBf(jUb{4L^Okl8z9fbfSi#F@_7qLtQKVGA&_l0AfHEolpF?e zuY;V?3R3bN#JUGExedf^2N4}0f*)kc5s>0YkhV^c*ijI-3&b)2i5&xRkAsM#phUe4 zBxVb;=myBpZjibj5YY=Fd_dkh1|s@E+`YNAh*m1NrZvCdJQC&53+m#NURIwRWp#@ z0+3h<$liq@iA5k{F^E_TGU_*I*TMym<+niU96^qJ0y57F6eMAwV9Eel6a}*UFvz^? zAdA955~o4#TLLm_DTr7m#=zjG$$U%R$2FFwdI z#MA#4KSY6}laFhBuxFI(Epf1bvxj3)e29O%TaasDynm33YtTxDBG5G&VB%Mdenx(7 zs(yNTW=V-5lnP2M$k+GHOi3*E@b%Tt$xPBOs4U6I&okDu)Gy8~N!2Y#OwLYBPc7Cj z$Sly0FH6l!$uH7R&PXguNiES&%1k#+D@rZYE2zB1VUwGmQks)$2fC94bTldh3o{E7 E0PuaOg8%>k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3794996c59753bd2dd32ac09e5d6dd25f520735 GIT binary patch literal 1125 zcmYe~<>g{vU|^WXFgu-xoq^#oh=Yt-7#J8F7#J9eT^JY`QW#Pga~N_NqZk=MY^EHh zT;?cdFq=7tC6_gd70hPIVasKYVrOJ==A##_8jp6;gc!M^dn{w}UQ$;dtcv6(>x$QLFI z3=F9ZQH&`JQB3U&X^bh1DNHRKQOv0Eey?!QLL#f5LY)dMzOUsurNe{T+M!q z3uHaSiOC=zK#gPou|ej8aIp>p149Wz31baIGt&a5g$#@gCCnu(&5Sh+@vJ3m%?vdR z@$5AW3phYBDGb33nv8y$oVQquOAAtqir5$!7;bUI$7kkcmc+*wfeb8S1&MJcgTo`f zIJXECAGbtPkU}9o5fltnsYSO~i&BeIOI9-8Vku6|Nn6Qyi!(kxIVZ8WI6i(Q!>>5~ zjQreG{q*w8k`hBG6_i?#ukV|gl348F>#LuWnWSG(S(1^TXRK$bUz}Nzs#}nloSm4S zTC87?S)d*TEf$c@A^`>lh9Vvi0cL>-K~R|RfLu|WS`wd^ zn478z(#!;k5vD3}kUmH}=^?8j&Q^A3P--hq#ceT1PGVkqX<~Y+E|R6l-h|0(a)2Te z2K9CYnAb?Yh637{#Ow7T^!^XtO#mvMA76&CP{@f&J5J2Lo2oy%QgdoYO z7?izoA=wL@*lr1c6eFiCNOEJ#O-e2<&IPAMu+d0v0XqofmRlS)5D(hPfE)x$1U!sj G$P55~6b*6! literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77c998b076f728c3461d80ad34841a604662de71 GIT binary patch literal 6211 zcmYe~<>g{vU|^WXFgtyXDg(n~5C<8vFfcGUFfcF_-(X;1NMT4}%wfo7jAG1Xiek!T zj$&p6i81A{@OWnr$DsHS|9H0`*T8uHAQ#u5 zTLKW75Jx8;*Z5%1DA!vGP?5+0PiIG;co)y$kRVT|&=605zxW`>5Kn)odEP;|%<~S4 zM>7v3g3mljcPArbLnCYk3PPojOjLvk;WJX)$Ap-ae6Z7&6#%2~D zNF2#1IWQlmNy*4b5X5GJB|{$u28L9ID8>|qD5ey~DCQKVD3%oFDAp8~D7F;V6t)(I zDE1Wg6pj{#D2^1)6s{JAD9#k_6rL7_D6SOV6uuUQDDD*g6oD3oD4rC-U)an!iL85XpI$8jVz$`7WM*JsNCqVs zkjp?A#0I(08I(~Bz!{~6A)Xz{l>EHZTRib4`6Y=tV55p}aYKv(nOl5|wJ5bXwPYpZEtcZcoV1k;MY0SG48KzJ zGxBp&_0!8UOG*r(R8VR`zP@i}N@B5xudjYiW|DqEWl2VUp0S>#esN|=s%}AIa&}^R zYO#JnW`TZuS!!NNevv-NmXy>I2#w@Gy@JYH9P#m)d6^~g@p_;z;sb>mGaDltD;pyO zRw?3&1wEKf+(9k|3UWqpkTZdU97HmuFb6YevQ)`~eXWoPj?~m59fjna)Wjl%#Joy{ z;*!LYRJWHP$M|V77l|`4Fce9E2uTnj4I)561P-SnIS^Nhfq}sm$fV>Av$e9dG z3=DpnthYGRQ%fL;5E3Y&AQd7Y0u(%&EJZR53=FqeK*rzV0Fm)Isd=|p!O0d9WZ=L9 zh1)F_kXzh90Ve4n{sEE=E4aDp{OC2-1fV@gNt&Lofssf(%&8hM~$ z2@0odmSBb=VNjLG1oqc0QCC0zP`YJ&N?`;=kzbJ#C^3Q(87v4nk}6A5<9H9jw zG(m(0h>!;npt7P!9mLWB5ukz(><*+@2Du$lun00RFo3icgEANgBMSsFaqx3+a`15o zaIhAERAAJLpqu~-rD7GNda<1$jWLBWg{g%jiaCWjg{6fdilv=_g&_)*vRQ9Qg4-?F zDm;wD0Wuzh!N!*`lrYvXG&3z=0##cj%ry-0EG4Wp4DoCw>@^JW94QR2M8kQDwYan( zwW!D#Xe;Bo-IP$3wyhRCE-9wS%IL z1LRRgK5&ImrG(QHi24F#CrA$ngKPz1a2f(t(KU=IjFJqsOf^g?OxdhO8Y#>mmIQ+c zLk(jJizI_MLkg<|LofrVFa`Nclid%T(_bE8U|@I|2l5ywO}<ny@>a)~RU&$h8(A0+gDHEI}-I zYAUhFjcAG@hK7M2Nd+vL56|?09>ko zM5vN}B%CtSP3e$&KotWd^>Bm28C1-w@_IP@;*xHQN-nPBGL}HYXGjH zu%w*;Xxg#DOgkxT;-ESUHBGUD(o`Nx3P&&lxF+L-)MVgP^>PWwXP{K|axSQ110}MT zpvXfsu8JH%O27pWm;jd;pi*cf$jhKGVqg_wgj8W-OjSxay-h?y0>#2Akg@QD1QMZ6 zLJIcs45mXu@&JVvsG2DP^>QJ_5I;x^TnvG_KlqEGgCOstCL~-g$DWWtl_I!8m1JMY{nu3L_(@%$y2LgN@2@pEefh(N@34tED8e4vPm$caELRAFx0Z-v7~SY zGt{uufC?-w35Hsh8s-%4Y?h+D6wX?f8kS%NO&;VV)(A>i^FhQO5b*#+yay5BPy&}@ z?jUYGD3m}+Op_JSiUOBtMNS|oH4p)khqR{P>F_ux#6TGqlnw6>DW^w zC^dpGC@&X-TCb355v}pf0$yJ%LO36fU7@Hkp(Wn5CxScQscV_)FFbT z6L5-wCl*lZD+c=px#@(%H$Wo~h%mL`{!gNE{oKs^yi#|NYe zER$UXmH}nfB5>ms)NZ}Sm7W9|-vvv799aZzz<}B=w>XkA(@nt=;0g*7i!DDXD>b74vL8)P*N@exfUs$;DL3E!v@mf ZwF3?F6ocwM5hf^P5%3fc2179cNdWe4`B4A> literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d81037a6539d63a343cb333af9f3406d70af021 GIT binary patch literal 2252 zcmYe~<>g{vU|^WXFgrbqpMl{qh=Yt-7#J8F7#J9ebr={JQW#Pga~N_NqZk=MY^EHh zT;?cdMh16=6y_9`7KRj-ROV*pD3%n~U|qD5ey?c7`;@6s8pB7S1SUFq>p_ws?EtNHeBZU*pW>4Wt;cj7w;z;31;ca1v;%sMNVTj@iX3*rn zB?NVVdr^LA0mK!4$xI+Sp%}zwW?*0d;bIL228I%b62=;aW~MBr8pagHUXb^hY8c{~ z(-~?Q;#pEaBx?#oFoPzupC;oi?wrKD^!T*QoRZX{mmniG*>15GmlmWJ6@ff=iz7Zh zGcU6wKK>SWd}4A*W?5={UTN+v_JX4Pq|~C~TSD7}W~#qkh9O{QBc#i==I zMXU@A3@aILamL3d=Oh*v$H%W^_?4!gk)NBYpI)9>Qep_Df>I0e^?fr_5{o^2ef4uP zlk^KJOEU8FjP)$_i!)17bqf-cvlG)(i}edK3-sg5Qu9*si}aH-5{pt&OTct-YDqdM zfFKUgE2u2uU|?WS1f>NKgMm?qk&Tg!u}T^(ZPzZo9C{#iI2ZyQ`Qm8Iq zTFAi2kirNG(He#<78izCm0HFc#v-X2MyMQ94P!iO4Fd~97IO--IRg_zJaeHGINaI5 z;m+b$#KyqD5K;uPP?Nogoq>S?64aV7SEw z@njJ%NEJVb5C9Q^3=9nFAP<9h42*n?Y>ZrtEQ}nCY>WboRT5Y{4z>)%*B}RheC`Y~ zM}dKXp@t!gp;)4ZVF4q^*AO1a44>{=GaDtRofMK+EyM;D2J zLKEWbB2iF~a)2^HX<~Y6kvJ$Q!43oyU{^{oFfdqRaV56I1TzRFi-Hmo2!n&Q2O6v{ z46${!Of^i!0)=cfOj(S@5+Hg3Qw`%n##-hY=3^N%}vN%(ivl)xnN|>`aP<0l9 zO$lbuWbtzYr$lg~)Z{7x#YK@2C|Fq1Qd3ikKnda&hns(>pG&-F2qd!E;)_8APB1_nn^z^Z|=95}f$ zF|si-L0Mdkpaj9i2%`BIxfnSZc^Iq2u_O(UGf|QRsNezRDsX^Lfd)7zmzFSQF=aCq ziKH+FGt@AaFlI4lGZiVNFaFeAdR*9^8Z=YT*0%EqdvJ(^HFXv8JRZm8OGp9XQ<= zfl{_6D>%Nu=G@{07v>;Kz_E6V1xR@e0*VPVh%*6 z2vn*Ufr`9a90f)B1*t_Pl@Nb{yi^2ASYRLC;)T{d$*DOx@$pFI54iLMdk2&=L1kSr zh{wUm$Hv3O#K^@C!W^RDa@kLl^%iStUTJPIBs1_r%OYq&45}l*>X3|wht@3)8;BR| OKoM08vW$n3hZz7auH=6J literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fbc2d90ab9ab89281a2492a4eca28b12aeb0e15e GIT binary patch literal 3474 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..354e03810f33170c01c6a3f7e508596e3e439fde GIT binary patch literal 390 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 X($cU4#cnak78Z5^P62)aP7nzI+ys2G literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9f5757b209547b6e08db255c8316362b384b8b5 GIT binary patch literal 2624 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97969f35ea7c1edc45f8788a2789e314f5889bb9 GIT binary patch literal 19098 zcmYe~<>g{vU|^WXFgu+sh=JiTh=Yt785kHG7#J9e1sE6@QW&BbQW&EcQ<$QdQka7o zG+ENmo&kY3_L&>_7#K7_L}oi114HIpCI*Jg#jFernKqmZ44EPP3=Em~`4|{7r9j+3 z5O)PgT{|xWLuNA<14HI>kmA=M!Um+boQHuSb1nx1L#8Ds1H;P)3=9mJ|3G^0Gcqt_ zt_SHo%*?=$83j_e10;3_WN0Bf14HICZjhlM;t$C9aFFqpAXz35F$ZL5DoAg>00Tqj zDG;j+q~w<<14Cv5NLvqxI1X~l1&|IVkb}5EuJ-}4oInyRASHpk3=A)Sf}HjPr0x>P zRe>NE{09;5KwMXl4p9&{4dlpaEDQ{pY#^h)f$Wt8DS0Erz>s+qAxuB*w_c!0>Vg$fD^WLzzLu zBe1L37#Ln!gCs71JeUhI`8G&f4oKTWkl0y};(ib@ft!Kh<#do@IS@A$BUxPej2ok#k zvV1nkY3U%nIUon!205GsmcH+(CBS0hw$B3Y^m*q7Wqe6=akGh#LUXy91=o z2PAO=WWZ}s*lz<_DFKqL1WCvVGBCW{4s!T$ko!)6oZ$%t2gZkR4k< zrsRRd#1$J_#h20a9lG3X+*15Bh=}=?5}i0wnefWF;3!TO^2e0_2Z} zAVc?oGBz*B^8Jhq3@^WeSi89x7+$J@SZ6`%0zsz8f>`Dtf5d^bWq`bY9Ym}Kxxfo# zp?j{ z0u)SwAd5OdA!HA-Xg(@mocw;dAC=4!u zbQFU0Hi2}^0!iEl8CnIh<1k2~2c*{+ug>+yY7L1Q{RzQa2f-Ef&O023cMO zvQiktVgXrc4hqC0ptKebl3)cTt`?A(GswziASG&`^pXgY@BoR`fXvGQxs(fJ+iZ|F zTacC8L5jOT?(+mG4ge{+3sQU?l*Q{nEDMmj1d!$5KzhqTuI~leb^#ux zgT%r?>i9v#Vvq~=gZw)gWPBW`(yRk1VFGEB2DyGd$mGKy&rARXm@P<01W0T)$RcBq zwyz+UdV-3AFCZ~Nka=yOMEwV3)B%uJSAfK>fe2#|QN+r?@Uk8xdjaIPdmvUm$Tn_} z0VhF9K7cH$26=?ZSz6COamzawGA_E zK|W^(NfOR*=c7K}!CC4EPC>Pylf^ zfZ{_BGSTpp=KrD5Twla`5F|a8h;w>m3c7j5!21E#fl8QP=FE_{;Q$b4dK!$38Waokm*Z|V; z9F)P_K!$Du6;-Mrzs(U~V0fts(pv|TSPW9a1Jb)0vz2JV@JjkYY{{ zYZ}P-54;QvFAsrakAcFJAH+HcvO^9OE;m6gT>&C8K(Xosl8pzo9ru9jwFfzfA7oxS zSP6)G7vx-ZkkeX0ru2X$c7VdP50vfyfw)2-%eR2Ey#cX0K852Q^3#QhD*obN&Erh>x$3`m_J$iE9gvYH_C5jwHAq4Rq~j(?Z#+oJ1CW2`gA!&S$WVQdt4cx9a}-3Z1`$~x%cDUOUqE_mL5B8$ z3}pk!eg)b44kUXWWV{GSq7P)-dXTn2kd8Qzx@J(&xr4n5vb+k!x(M>>6OiIYkm4{9 z;SVzE6v$8^knA^*x=xVZBOr-cAhBGKSSg766J(_s$bdT_LtlbqbwO6DfVlra+BSfU z3Ie(63`kooNCz*7RRB^_1kw=;N)h`&j&uP9i2z6&8_1M4kjc+LL@S7!3DO|~(#r=j zbUTPU8{`a0knx5fb$KA!DLhXz6g>%4AS-EkG59GsqbhATef;;$t9I7RZ1Jpb##xqdNTm})(L0lbBQ&JG5%?PCKGDuwu$OSV&wl#ye zS)k^JE=Y+U$l>onA(RWU*BfLCBZ#{Xl$kz*l;nfFAOJGi8l;#LB>MxT_$J6lDIoJ4 zKmm~m@-#O{oiB(m1bNj5JOz;K z1(0kVh_xH!f_9MWe}I&%1Vu_8$Vd7hZRbFCd;!@O53*MoWc)=?82E!+{}W`2KS-TB zC^fZ##J+*VvO$JMgUs^>>Bt9Jve6=b|3$f)_CF!&1c zktc|I79@KU6m-i$X`>osXc5TJCXhNkkjWXKB78o`kvt%Y5RmcmAQmgAaAN}5p$_u7 z56H?y5O)(u+YgWq2T)Y>g2Wbrj6Vso_Xo%eZ$VZb1StstiRpt3-3rpi0CLq)knwLo zZs7)bwE;x#=YX``1t}2#iM;?BRSjZUfb=SZjM@hh>i{Xa1G3T*6xfSE z&IksH1%ZfJpz5<6kc2c-7` z$bIiXiJ<^w{2owf90hqW7^GJcoC_~Hw={N+EI0G^z0mS+OQp^l;-z`wscY|EO2J*)yP#{KwLVQ0+ zoioS|4Uo0~kc1A1SOD@zEyz{=Aj{Q3TptiO2Bi2W$dn%-F@qy=PDD2TNPWcdw{7Y>3_-7%1uA1FvbW3!nXLCvG-AoC7`Y}*d9 zV>QT7Uy$O9AiYmP#xDl>Xcvh49>i@2CB18)fH(`{W`YcO3bH&MM5u!lZv+uHL0mSF zTi$_`aDiIGOBom#UIu{l8h`?<7$lnsQuhNCJp~}{dJvHZGFb-X@IFv5eFAaoK{{eU zVzWWcT?Jybf%L8eaTP%h&j1w#KR|Yz0@;xZQlbIUs|M1`1#*Tn$Zz5xZBC%j&;+qe zK~{EySaU$NMkh$GG|0ajKnDB->5u@~@fl>)EszpBkdnV3E8l{=wFzY929OvJNJj@K zJD&t`t3j^!1KE2IWV{5(N+wXSyMl~22DKvPKzhAEij_ghX9>u*WRSXrAmev}?BxI% zssf6)cOZ49AZN@0DX9R3vkb^@u^>A>gX}m5lE~&~V0ifvr1&jJ_6o>=t00LLAXWg# z(D@)|h=EwlAieA$*&>juPJt>1ACR_aG2x6@R*|8gBWdbPj!a#nT4N@lzGGGBnNeZYa*ab3l8;H9Z zB(WRhQf-j7%^=0sL1K;|u^v!ByaTE01sU}b=m28z6`pnz}$aq~c?$b*Q5 zpdz;dl-AaPbhv?Z`~|7=2dRq&S-ueDmKUI|r3OgJ3XmNPAP4b+WR*d(=Adk91afW# zNShGIL1`fF5fE`66m*Ip_nCo+YEU=mEXb(IAOj*n2K0eCY(gNhZjhKZ$Qf%vMlAq2 z@*qfTB}knD$mAy=Vme6d3dr6cAUilgTyKz$RFLdvP{6JL5wk#+hk*2|fF!nq@=*(j zkO0|{0rCtxNE;`J8wAQ~(?G1HAVLXb{8Er9b3w^53gkWoka_VSu^AwzIe-H87%1%~ zf=potnfDIlO97CT#vsKTK*5;};%b8I%>ub}Imj(?ATe%`MX4axM396SNQWcHlsHfj z9|4KggA51<`SLZ$j=vzW3{WDp0!dVX2u%>t0+Of!>0JeK)gh2=av<(ZkWoA!9Tp&N z7AVedgFJH|q)iUwf7i1AHh+75H_5nl`fSg+il3fn+`E`&fMj%!`C=6Uc zI&49vya6RWJ&?(BK|yB;Qj!SLmIfjwgOq52Sn(i3TS0pHKzg-6w#@+fjR~aVF(?ey zgPgVtq+<@qHeC?G4^pxnBwGv8yAs5m0aAApr0qCJObcXQH%LhdsK}TNa!UzF!VHw^ z3PIdcAQv10S=kIS{vC+*2*kPy3co&(QNbW33LvA}K&*aH&?$m!(*!x34@6XgxD!E! zo&gyu2?`+wkR!7|+LnN{EeEjoM`Vg-Us76uu$6vR3JGX6KnE!-d-+dvjg z1!*$`5eGnGcR|E45U~tYysCi0MFA96u^>ZDKweb?asPspYygQ>fyB0gjDG?WO8~j* zGss)zAd41&Os)rUSwVy_h&T-r(*z|hRS-)JB(@l2=mn5@>pVhC|Lx9^s<9kXF%%qfpi#xT%ZhMtp)|tcaQ`l$oTUh?<<2`B?t4;$N*W8ULBBPJ5YdWgIvV}l4Sv@+XS*G3e-?C1_e$bsI|EY#JUPn zq5?9Y8)QHO$f7WiMQ=eyS%V}dgKS#>a*!V=)J}u+=7RKkgG!%pkjV=`I`)Bz(tePH zDafc*AftAHS{^|lF%ys}cR)__1j$N*{NVx$#JeEYVUWq!K(_q>X*&Z_HwVP}0CN2= zkY{>8+SoyaDv0Y1a!?J(asiMjQ$c!{gFMp-8i3sjvho$ExS0%MS%Tcx4pNc_^42mC z_an%t*C0D|K}H#aEHVOd3qa}wK(m&tAiee=L-&HbS_jgx1mxVcAmRYXN1s40I0Mq* z43b?9BBDXE>p`rwAoK2nl)MAEc{j*g#vm8ifoyvMG9U-!b4HLI2_Sz|fMj2S9CQg} z=oXOJPmp3|kdh9Nj=vz;RUq>WKqbv1kR$(s?C1v(_do{tfE2F*Y5NCqMj*()w?VQ& zAff{#W)E_t2FSczkk}*;kpOb;X;3;f1}TvMIqg5l8R8(W8c23Ch>!-kfDdGRG00>W zkh;|%qYOZnCxM7Gkoz1!N>+ooJ3-v{ph95<$Z3)w9kw8o_ke;#9%QHusBLi-i01?lYu zDQO20H$g-WC=l&I5}hEICWFNGf^LBs}7 z*mr=$rh?R!gYm) zlmy&BTu)H!?*kc70xG#yfFz!R3KV@1>omwHHjv5FL5Z*u#L@!kCDb{%9< zJlNA9t{TYat3ZmsfLI(Li|&H#Jpkga0x5|CiK&80;BJshXMoHr2ATH}WLq#uoeYR8 z3Nlm>M1+Cd{2iq21<1CSAph*5tEhtj1fy8P+jp%lewqTF};ULy=kUA}py<#9%5Xdb#AjJV7y~-dLYz6s?j0dM)cNxgG`=GE|3X;$PDeeX3K~Io_u7bppK@OJ$Iqg5l z;k_W%QjmFlAX!_G;(Z`7FOZdbAeIhDogK(1R*;wsh_w=AhYv_cDu{>$`E3HoLH!_$ zoI%>YfwcVwDLw&Gq6LaPYmobRL1ODcRw{sq4IrZmKuV^A^u7Yc?|zUYgFs<_5+q>> zGH)R$AR0kR1VLi|L9DYN)?Sd$?LjOnkR9JZp>Z0d<0HtnK#(2kAh#5QT>lWnDhDZ! z1`)?VhVBAM=z?6|0OD$bB&LJZy#lp|d_igBEy$FIAc-F!=k5ftVnJm|ElAc3q}T!E zEnbjOY#`ZCkdAdA#rr_AGeKhdAlW@2u|*)+VvucXK+f$1$u@)3WrMi(VAq4p(*Y^5 z1$osFq{J5_HWws22V~SVkPdy2L@-E63aF?*406y>kXSxQ%nW2+Hb`A5NJlG3?^lou zIzU+{9Mn{+2I-IkDX9R3WH?Cg8BheA1%;m|C|q8HB)ULut^gSj2a>o2@_r9UZ#2jb zZII>WAg&ci-5roAp&)hBK=v*M#ib(1-gzL4R)EB=f!wDD%CH`wcnbmf?J$Ul1QDx2 z>EIzqLIPww14xGhNUsveEzY3DP{kng*g>){K?Dy-i94uwmjrS~Gsqd{ASHDmx9EXv z3k8|S0CH6!$f$)NZ4W@Ky&zvUf)rPSlpF(z{Q?zLTR=udf{fA!xwI7&A8$bBEdn{x z5#*K*kja-pO0+=QtUwYLpbVi7GW00Owwa(%`vKB+4#brOxzrKFiU+X_K(;t~)`3uMY_Q0OiJ>9_(?G6AIcB}mCJki=Gy zx@{n@J^=;JGmwwwfn;4kI>bRD>n6egY9?ASH|-Q@B7re*!XI9TYP^ zLDf?j$f#|ga5)Atddpwf0TNZWRhZJnS*s0dQR z4U&BTYR77UWJ5u=?FE_g0Td|>Ame9)OlAYIsz9MT52PaoY$k4eU zUsi+M#{x3X7NmCyXc+fAh^q!t@(*O?J5cfo18F-8GHMN|1W^JhQ3Tm>2ISK3Ac+=` zZAU@GN02rRkeDrqyB}ovSCG1=U;<>3B`73iKnC0f`O*XwB#EGk`8der>maT!NL?VP zg*OQ#HV344HAveHkny=7S3L#!d@@K~D~S66#B~NK*#sh1fh5d9L@kJ02(ripl*>#& z+_#{RECrb?0TR0ja_$+B0hd6*R0i@d3rO!iP{6u@WM6% z?4W#<1=4#B6o?5RL#KhbJ)qEV0x7Wq8Sf7=G!aCc0f{Mtym|x zNZV2nHv?o!6Uc+hKoadBZLdLY2?aS<31oQ)C^^c4OnwAX@(*O*C6JC>P~)x%B=H!e zO%Wu)2x6TDx%2|act()Ar65xjK-^}Kp}rt1r-JOb0}8NKkO9v?vb~^~F#>T5LE4^! z#O8zSump)M2XP;Qh)LWG3@_({#3q6~C^aoAfgP^^A`mveh)I`9!On2$fA5u z;2Z==$b-0LAmSq^3{Hcz8Gu-KKw_34;yfrIR6s6x2MU8U5H}bU(^Vj@D9BzukPa7+ zL^a5fk3azy0jf0rgX~}eS^f#+v@nnkW02lRkYW~)-diBO=Rqt-P!V|zq_+#?zIh*+ky#+tT97Oo$OWt*Ry9b;Y!G)Hh~);dawW*} zMW9e?1Bpq4OlAbJu7h$#Bgo2IARWmdLo-2XG6*DV4YE8N6e$@XC2v7W#6U(}2DxQ6 zNO2^H>kmq66(H_^kQb^zilacDwgDMX1~N(#9NJ0!mECSif19I*}kh@ArY?(iy}(4zlPB z$h<~SS#k_yia*GJHjtGTAlr_E#Lk0s+yyyO52P&?B*6hPDh$L;1{rV}B)cBuf)5}u zagdk?NNgF%86hASTm)%50Fqq*l4u9{$PT2A7bLq2WYI*B<;Ea&te_;?2MVS)pgf}k zVl4tW_aul&11X*airU{Gy+R<@=YZTC0&+n(NWufe(gP`02Pw7#wdxB%mR|-D2SBn5 zLF$x1e(M40-2rly7l^eIB=!sx0Utp`8ORGpAYvxSyw4!_iGmbYfDB*)v5Y`sM?iYh zL3$NH#+!hMwIC(WL9!D;UR?k4vFkxPTtSv+fm%i}Anq=ZUJH;m3y=AAkR2OAVh=zj zr+_4uflU4blKln}GXy1ui6BFtg8a4*WMv+x1rOSzm3bLt{5Ozor$Kr{KuW|wO1eO0 z@m-L%Qy|L&L5b@Yi0cfB(1jqec96Z^Ai^4CTQ-O|2r}<2$fye-%U^=bI|$Md4{}uu zC?r!s#tVbQ%0a{n5cfPtF$>5ulR;cxkOBKaI`lv~ia>#r2r`)!Byk)>tOg~EHz0@4 z2kBS}3ijn70~Uge`Ug^y4&v?rX*&RNq&i6PB9OWTAd^`^UJwU~Ee3ft1mrh)P#Lit zvgCO(FK~~-c z5s4s)A0W&3g7k`lItaf(diy}GR|lD#3DTAUQnC)Dq!#2BKal$>LB`vIBuYTUOc3!C zWV{PV-5-#Hrh)X%06FLz$j~Vu59WYae?hU(0J6Lh#9{&2#tzE0r$Mr*AOpNW(NheP zH3Au>1v0)86n>XMVzWTu_Y35Vc94T^fsEn-S^f|tQ3xVBK&G4oxxf^}tpz!^7^Fl6 zRH?54iG2bYFbiaWDafl%AUj@y)SU;pWe3PD${-ynAmfWcvb7*XuYwG%1F3roGDQ$X zB!LW=1ybh^V(EhtO)SWOl_0ToAib|ZzKjLwH3F3zuR*f1AkUMntF6o8Ds4+=0D5ceh6RiNOs0V$~h5xYQ2YCsYZAVWJq2J8hX z{tc2X2Dv2_q$3vOK3S01dr;7A1E~`M={*F}D*=zJM7G%){knD31>nq4|4UiqnK}0Ud4n|P^FacQ}0LqOs zK`c&?y?LM{x&UPST#$qELEL;$A-E1CJ0IlwTo6kPL{x%m5^0d$dXS+OAc6suUM_;f zY(U&YAj@ZgTxA1tUoyz0&LCG^2D$GfNLCGGXgSDAUXa8)kP;P;y$T@bT7uN6fehFL zB3^)$Xo6B~0>}lOAUk?MTse>d_d$x+gCyKR5=kIaTtW7J1L?H_$p(TX@TR9={+C= zl0iP|1KCypveyixHwI*{GsvhlAXx(tVF|K)2}tZP$Sr$7w(S7f`v7E79muE|AXDT) zgc3+y2FS|!Aay@M#Cec2-hk9;f{d>R<*lV4?kkYVTR@h72U(;Aa=}E9p@JX-#6hzB zATd=?3DONRo&%)q1xWEMkUDk{u^FUJ4`lBXkdkE}r&)sR) z*&vH#K!*MSIqffqWdxFV0wR`x9MleC$$}&zK(?8KN(M1dBzJ;bx&ox68YFQTq|OOM zRDg`P1+|P)LFzO>VuGL%79J4y9LSN!LH4SHv~34*TR<5Rv_U?z10-=2K5_xsn+f7(gA9-cv2KGTHiKB#K*6aCV(Eaw`8`N+DoD&6#5xDc z>=Qt4xd-yX15h<458~bi**gIwmIq?hf)p2k3^fOFvp^CnKn_|23XL_OX00Vi>?$be zeu7#zH$bNJfVeFn@4p0b4M2JWK$c$t+4}+{HWj4g1xT*|$dNZdA>39ZGYy(pF6J&BPNcISb>jg6EA&6T7lJEm5J^~6lO%NdmGE@&F z`wWy#SAtB|0tL1(NWu}+jDG?WD*_o63-Yuk$jWsfm&$^OOCUp6f(&&BS=0iOjR(28 z0L01$XNcIv)$8M07mqE@D0eR~`NO2QC0|RK9lOZz_B-RO1*A24m3CIQ4 z!HPlZc7x381vxSY6kCoUL;FEa`v7w8ZIF&XAeIYAhZD%C$sjHl$Sn^*hDw9D4j^?J zAfw7aZaE23_Y%bY3hLmegA9EHQqm7nTnjR)45W7%h&2Vo>I3Qc2GaW;WU>fI;yp;L z3FLiNP<%9lShqliGJ#|pKwN&17bbxWI1S<|fCycXk~)yyg&?CUL3&j|NwfiE`5}-m z<3SEO2nvWTAfs47rkn=F;AfCJc95I1KuUZ;Mr{MBTLn_$4pOWQGI;~YC>D^t2SH80 zFCfLAKw`H*>fVD0F_3x2AWvI^oWTo9VeTMxnjlAZgN%{`$vy*_w+<8m(jb>k1KBnc zWG^?!lopU;0gyT_knBznR|iCRf?V1RvT_f|85cq3F@y9*fVhqzB{3iu90s+Am_ha) z0XZW8WJ(#x_=g~M^FaoLfg~6~I&47_^FX#O1QBK+#Wo;`6Cg)MfVkYC)OipjD+1Ch z3UZ_cNJ1CHjRZ+FfW&TtjNc4mZ3gMx0a7vx6tGJ`Zb=5Yz6T_62V~^}kV`E=scsX< z6kSj{C0JVn zEd}Yl0pccs{LuwcTnN&85#-W&peRcMDR~QWK|6>w8C0F@291c=g5074vUd^4`+gu( zyg*8(fJ}J~vM3b9eF$=-7|4K55cdGc(|jP?7K5TE6J&}vNJ0lhYzGk&K~6IP8CnE# zMm0$61t_pZL56yOxEnzd1t1@pg1EvUiNzpowjl0RkR6vno^}OsEkTOcfe34my*!|R zwE@{H1ah+}$f8#uPji42XM!wR2QoPZWGE9ztN~QLvx9ULfP#1iNSiQ-_ykh28q{Ve z0?BR%l^}i~))kPU^&q`*pwRdSVl{z?R**ARgDMekko!bI4tfc)QVSG9(ja@QK@!>^ z2kiy&r03CMsfkO9&l#SS2CIiTcY z26EbYkUArfItvi%5J<^vkVRKOo)H0={08Jwb&%|Gki9QJVlO~qPN3-C4ALP5;Na7`v+wFB#_umkjXPZjyw!9uMuQ?7|7=jL2j-B zN!$UM5(m=D4>D>Qh`SABz*Z0u4^meP((4YAC(F-e8bOtPh}6@(1KC7LWmbAV;18$!-RT-3Q6e06Fb4$beTM1M)z| zdxDIQ1LcanAc+u=;-etjDnLrkfruiI*l&>QkAMO!9#kdBfD|Wz)a?P;<}b;>kQo3X z0zpI&hzOQsVDQsqzNP5yWMph;6dw{9;OXq>6Yt^~91`T|6dK~`?-w8B7~<)FOAw~S z(aFa(KG-wL^_C=5$l1d&C_cnL-Yv*AFy24N#WiRpLlNju2{7?1PCp|*H&s8qJhP<4 z5K0B57Ub*uW~L+-d-(e5=VT`77gUyH*Vi^C>2KczG$)ebc63tHsFz{14B1OQ6ve~thE literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e087f82cfd22a3462071ec63a486ebef726876da GIT binary patch literal 1141 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d715d2a47872a71ed6e9cbf388b85150ba71858f GIT binary patch literal 37599 zcmYe~<>g{vU|^WXFgtyTF9XA45C<8vFfcGUFfcF_TQD#%q%cG=xHF_MrZBZIq%fs2 zHZw;txih3Nr?9jzq_CtiH8V#syECM)rm(dzq_BbcEGg{444NF8!J5G@LFN`QGB7ZJ ziI+?;7MMFEh?j8J4+7^hV+lWOVnnzZq)jup2oxhPK`{>T9h~(NB#$Om#0s(=tOP-T z3@8F~!Lnci!3E2L#lQqu0!<7o0Tu(xg6##fz!G2rB=!=_LP%g^v4PwNRtF9MFbgaO zRt&ZSAptTJ;z6)FFoBRoaKY-p1Xvbq6haov0uu;XFbmB#urtsIuu)*eU>3p-uz4Uc z&0vTN!HN*_VD6wJ2D|&H9bljshD8u4vLI0fj$^P@2o^#X%mPb*SzrPj+h8#S3mldR zF@!oW3rv6&BUor$uwJk%m;lRy#lQp_7n>MZ30N;!7EFM}z)l0RKmh>pG?)uk4E8yg zg^)#X!Fmx!ft7&ug2fPe!7Q*Wm<5&vn*t^fTrdl)1S|n&feA1dM65*4L13v-0#X@6 zVs5}g1D1op$pGvcP_#iDhY&-sz_Q?Y2eZHuXaqt6p$@+oLKe(IBfzGB?LbH%xL{c@ z0hR@`zyvt4BgDWgur{zS!7MNVRtIK*39u|!F_-{z!4hBstQc%On2R95VqnE++7M!3 z39t?X3(Q3*0UHk{z!D&Jum}Px8teqv>4V*oRCXUMfU@jt5IAPRionqeW`Sc7%tAyjSPV>n#lS3Z@PJteF$4>2GJ*iBLvRr+G*b`~ zU=~6aYyg;xAi!c^bzlN)Il|!xS%d^w9hd;C1G5n3fyEF6SQbox#lYr)jRF&339uMK z7R&-mfLUN!FaZu-umqS3CcsL-Vqg}S0J{Yws~KDbXG4lOkSJ~z*c`AeV0B;uEQVkq zWWf?(0-G#Y3_&2&fxQiu0E>YMup`k-MyNwbfLUMyYyg-*j1M5O2Fz6Trdlv1k3^xaCNX81QtL@fmsOM z2us0YU;-?LV1c<{0xX6w0L%pw2w5~1n2Yc`*kfoqz~+G+36?-8Mu>qWz+A9-*i1o_ z0Gk39Ll9tXU@n*iwij$NSPV>{aS>t&#b6d#0?Y#I06PuLLJ(+5zzzcI0JA`{um}RN z(en~m46GdCR#56wGZF|cAV0X7s(2|^4Z0Tu)6 z025#?*eEpHz+5l^_Agi+8W*e$EDJUstOP+Ij7NxpSzrk?0&D1XwSa z0E>aufei(7!8#CJkQgk2z*HmSQbHmC2$g8bzoUA3+x&&3n2z(feCD~ zh@=K~I#@4Q46Fmp!YKy!3_=}PF_;TB3d{l%V0*y?n2XQ`HW`~@umo5!f&hzw^&(hc zS%eta1z=e)0p_A90ow-F0hR!%gGCV7g$OA$7MKer!0HeL!bAiMtPV_oZNbR`>i{bO zvk>aQT(AU!z$OOPfsjD3KpumnEU*%=DPUPJfe-`x1I$Gu!0N!-z!G3Cm<1-l5?}&h z0GJDw#YTW-!LCAMfw^EE2o{(NHW?%aoo;|kBY>qqq7dJK6@kSNE(FVh350!MS+E$G zg&+`O2*n5%SQbox?En*CF4zEY0z)VUiy^pRr-7A#39tkj0X7Ouphyd|YeNuVSuhvO0xJQtz&a2F*v()9p%~3JxMIv4gfJGY8_Wf> zz*d3H0do-qSOUxiD+Y7H1Xv8gLg)pn1IvQNz+5l^RtzS{UxtPU&zHV4cC z%Ysb=v%nHy0wD`#ft7$+Xr_R*fhE8Mnk-lhtOOx};DRjzn+#@wm4FGb5-FOP~>8E5S|&D+bGg zO-69REQA=C3swgvz+5l^=7QCM4Fz)%CWFNgT(CMY7px9UfVl{xz+zwmEQXK;vk>Ni zm4JN-W`PxhxoAqj+Q0-{2`mSJH6o!Vqgidcfc$(C188OI=~WOB{&Hplz{buZ3CMOCcxUjc7SEUTrdkk zfMvnj5Cob!umlzzC}VM8bHFhRR*5hI!2+8DRsv>$39u|!49o%(UE_u2nmE8U}u22aHC*32q6X54OWD3A(#s$z+zw}2m-7ZY$8GytQf2W zO$@9UOn@c81XwYc084;bVDk_Lpot;4V0B;uY!sM<&;}L*bHN0d3)YLU2+RdbfR%u` zXat&KgdJcB1Q!wJV51NOLJ3$5jSIF7Y!uiTU@ll4h`@{>ux^ARFbk|3!2&x3On{7l zR6k&C2m)*smwqgiFDufYpHs zu)PQZEC$vF76WSobHUoc1Xu~!P%sxkfW;7s!7Q+1FbgaTCcrwtCW8sEESLaGfLUN| zU@nM&MG%OM-ZVgnfgKFi4HiRK1?GZf!7K!UP>hfTi(%6XRsxm<8-QRTxL`4`UN8aX zg0+GD2^Iq@1`}X0uo5sAOdyniCBUHoW`RvX5C}1_HUt-}1FQ}#0Vcp=U>2AFD@L%u zios%F7FYsIfZYNnz!C^0VDrEPSOTON7C~SEuu8B-G!{rDB>KSWz+40YHWADP%Yq58 z0bnr%3(N%@4`zY2fw^E7SRFzySOTFAEQ=5WbHVWdRstr#rht_o2(Sc#084=Nf-M3| zfVp4-ECyzQ2{bNP3`~Gc0ow*P06~Cd!CWv4L4b822!zAIrhwIfwSfr)7o-jrL1-$$ ziVy@sBiPjlEjq09SfB_*$~RzHu-PDukf8&xIba=N0xSy_0~25a5Mp2hz+zxoumo5PL4ZvG6JS{| zf#4$S#ij#nC|EI=04o6-0Jah=1~vdJ0p@}UFc+*BtQgD%v%mzH3s#5Vf>~e!EP)`v ziop_K7T8cQ3#2{vYy{X8Y!YBG zuq?t31Q#p|mH@L5c7Vme>JVb!xB*Kb6eDE85+DK=L15)zm7r*YcCclSzuW(0d_8!1t!3< zU~OOm!3C=W8xI!4#zjbgWzoz7%YwzgvS2Ql1vV7S0?Q%@uo5sA>~MqCV@>1Y!sLPYXcKtbzld9LKRX1 zfyKZCSTUFYbHM}}7c7P#z_K6$7C|63R$~!*5G;fnz$~y{Fbk{%>`X9=STQsmVDrGK z5zIoE0yY$(7_0;=24*1w3akw*fgr%LUJTijESeaY3pN0u4lIU^0NVyu2PVKuzN)QBC3D`C;fhGawf|Y<-2m)*#f(y1BEC%)%m5V9gI){W+B87W`p%2tOqLriy>HGE*b$g04xU93s#IE5E5V( zf&eQ4>jksWB*0<_0xS#Wf>{UxO$_V;ge-yumH^uZ76Y@u1el9v3Rny*i_ivUfeElI z8Ua=eHw6|!;1mEB1+&0<5Jn(aU|DdqfC(@cp$)7KOn?mlD*SQe}pEQ=5WOMnTm7=i$cfpwszyz2Jb}pC&wi3Ywv%n^UCBQ5&0agr_1ruQ7!309zyvB67C~Smz)}dS5G;f&m<5(V5MX1$5?~gX09y}M0+s+1U80?Y-Q2j+qauo##HHV@1K6JRcw0GkI^2j+qauo7^ffF-~L*kmvZ zOdw>zEU+nHZ3tN~7fgV~z$~!w2*qF)*kmvZtOTJL!3B#Ulz>@a0&E_Lz>FZUZiFH* z3+z@f0X7j#fYpHs1Q($MtPNxVWWhIB30MrwLZ}0?zyv}T!2&A=+W{5>v%q2qE?5jq zfF-~zFacHq76Us2EQZY@usU#9f)#_gU>2HUG%i>NSPZNfYzIOwm<5&vv%pHgI>0P2 z0d^3W04o8@f(bAeECC{jTQmYT5up+68ZZGe0y1n0=7QDXWPz<=&tOdz;m#b7R&g^&g71)B$!1xtX% zz$`EUwgVvxW+8Nd6@!%^2(TDfFIX{{3$_=`1xtVw!*URa4XJOyD#3~nEQCg|I28-?J4b%4dd27n0!7i<)QizbWUBFqD`z}mnBLNAzwAi%O< z#Rvjn9zq?01=j(KAaE81%OgC25Cbbm$bu!n1j0VBHUt-JJy;1?0!)BS0kaSUSO=Jk zkOhl@^@0hoELaRopmD)Uzyw$V%mNc&7a(+i#lT#!1XwYG3ub`{urI+ZFo8`mSTDjn zusSdotQRZ`W`QNZEU+w?3ntJE1uH>l1Ixm7U`7yF3QZ3<@DO5P!@yP{SYR$10X7P( z1SbJjg3t!$f^9?70ak(#19QOyLJX`IOn@c81Xvc0g^ddq0~6rj0lNT9fVl`$z)HY& zfW^QBSPaZUgbL&$=~zyw$wLKZBBAP{zd#lT!J0p=nIu+tD+G#1znur>sX z2rk&UV0B;uY$#X^YzmkFiy>seEU*Na1@;!00ILHNU@q7cuoAEsm<1-ldO=EH5d;RLHF9CKv zB6Nvx6-WszfDbCeXNGix4`%EU-mj#b6egK;t5` zfn~vlg2lk7OWTSbTAjJ1S|&Tf(fu|ngoK2 zU?H?2#K3yN5?}%>0Vco_U^~EEge;f^mIbrGvS4Q*2(TDfFG2~J1t!3w7EU;cM0Tx5V4VVQM0~-KVf?y%IAa$?^0*itP zu+3;JFc(1}l;9Ub$Rb!^y$Av!K?Doz2{3`C7;GMz*g$b{x&$!y*X8 zMsFk_f&xtz%mou*B?uOn3nswUgC)SO0kaSUSP6m)RtzSJV)_usX0&V0B2{vuo#*wSOTmBECFVL)qy3@SYRb!F)$0P1k3`9 zfeEk+zy#PRgc59AkUCfdAyk6R0UL`D1M5bJfiyx&H?ZHq>cC=PB?!e}7FZT+D42z& z4lD-N1||?X!0N!VU;-=)HU&(8xd_X_Vqm>s7MMWOhL8p8MaY7=*a)0Tz)l0}KqvuQ z2^Ire1ZJVhf|Y;?umNBem;ftABfzGBWML76kVhDc5JO{ub%Vw5E5DWOCXeh z#lQqY46Fo9fF-~zuq@b0Fc&O=;DTkrVqjS?7c2|TOJD*l0Tu%jU@ll4LK|2DECyzQ z39vda3mXAe4E8iw7OWUSfMvnPgJlscuo8qASRI%EOMumZxnLz=F*Fv)N>~JerN9J2 zB|*kn+cVnz^HH&`Wt1?D0Mumso$ zFaeeTi-B1PF@#$YVqhgW34}U?c?eU$EQAEu6tEbW084-k0CT~zU;-=#W)Vw}u7g;U z!Hz^IMsq2e1V}NyH3{G{1FQ!Wl}OnG%mwL&w4uN({9<5PFab6c!2)x^1lX-$qrg^z z#lQquF*wK&T(CN9VqnE!0;~i~pmD**gC)RLg1KN8SPaZXun=5?7}yzLE z1$G8lFM@^81{Onb!7Pv%EC+!Fuo;U@46GQW8xlbXXChc&Z3rb`9ry{b4zLoiDQJ4Z zkpY%PNPt-g0wD_)19K5ZfyKb4fGq+`fLUMyECD9KTr^p*Q3zRZAcMug>cA3UE?6&u z1(pCS0b351K;weN5Zb`9U@lk(h`<*?U<<&?5d>Haq!AJ~U<<&;f>~f$1PiPVAq!@q ziGjIb9bh}aO27nI3_*Zp5nM0}AqF-DVL3Kguo##CYXd6=69_Jtg&@F&g1HE72rgJJ z*ri|=LJ2|}SOTmAECyBrCeXNGC19h#EHD992O=;d2&@~d2w?$8CGH{)tQf2WL4fsw zxd;}R3pO6iLJ(jBzyw$ftOJou5n^B#m;ieRtOU(GFc&O=rVh*n%YrQe+W}@_Bf!QZ zB*2Qn1Xv7g3Rnr4084<42g@Q@U|FyjSO=H@%c8jttORTdm;iIZ>OeYR5d_u)mI8@F zA_F0Y(<-nzU|BE=L4d6S8wC~vv%q3tLlI&K7Q%9{d0-s~S%hA&1VS;Giy*+pgSlWG zU;_|hV3WZT2qj=HSRGgvY%-V&mOya9vS2Z=Ua%4b0Tu%*MzFxL2r;k(m;g&42!s-_ z9bhh47Ni(+`w2)C5B(NAl9heI?0AVPY z1r|fo3+93eY*_(e6dDU`8(0iXAWQ~Z1U3(>1k4310TW;@m;fsQv%nGv#bBer1Xu#W z0xJe{!7PLhuu)(MYy?;_*eI|%1Q#R*iy*Klm_Qf{HViC=lK?A55IEIglK^YOCV?h~ zPzQ1_BoQE#AY}22A!NZUY}&vQ^d;~+0~BAd2m-MoIS3pIU}qvC2*CoI2v&k1&=iA> z0;@x?z+5l^76a=58vqsq6JRj}3n2@Z025#_Fo7@ytOHDdm0%+fvIuQp7MK9*02_)> z2Npwc!7MO=kU-N5mOvvAI=~WOJHP}uIKeE05(En@0oDPs0~SGG0Wg7(2bU;dF*E{U z7{~~uctuEnSqP&L1|W1G#K4LXTrdkP1}4BNs>j0|*v%u=WO28~i z2!tKjOhMR&O%@@B<`(>hf@EP4gwTkH76c1nJy;z$06@ASoguIoSTR@~SOP2tW+4c$ zGr@Yn>cC3CVqhg;7FZU{0?UF4uwpO)wgaIUtPU&z)&^D#mIbrGvS2QPKuCaDU~OOn zzyw$ftPRWs6JRdb00bAzLWqI2fw^GCU@n-2AP_phUI5#RAi(Mn27tM69k2)jD+fz~ zjR3O{VrVR|60jK9STKRcMH2(df(fu*ge;f~mH>MU!9pkjv%n4p%Yq3o7c7A=04xFK zf(bAeOn|uv0&EdjFPH!u1y+aPf>~e!91vg@m_Snu)`lPuioqDWi-DCOxF98%5d>BVR)kQF#sVur5MWs_0rops0?ft60$B>lcnDdrHiX~7T(B&d z02>9C1+&0n2qj?izyv}T%mu3hYeR6sN)Ubnn*t`l5?~fs2bc?HArynfzy#PlFbhF| z#lTjA39wNJS+E#_3ub|ppxJ>CgX_SIAh1~h2 zU?pHKm;k#5%t8=g9S8y}0p^1Bf(fwkU@zyw$am;iIZ1e!%)S+FT!7MK8Y!HN-Fur{#qU@z3QtPZRVECJ?%SzuW(3oM2pz(#?&U>4XY zFc+a1ECD9K5@4gi1cD2e1=|aj0JFeiU@jT~mH;aO6JS%oEU-GTESLp$0hk3=0_GwJ zuuBn&5iGC{uz4VDum}Q+QbK@D#AyIn7C|7?VG{$(f_(yZHJTDI7pw&2e)Q1=uozeg zf&iNWCcxS#Cct)pO##~hW+4b{7J=1)eFRnqW`Wg#CBS0X2#_qP5d_i$siqJtG_!F^ zAk-n0AXo@lFbfzSqre7$SvU)gf45 z39uNL1@!2m*;h@(4~A*fn4RtOSifxCX&OC;^Kh z2!sTJ1(pSK(d+<+8(0GDJFq&i5;OuV0agcQA!NZ~V7*`h%ta&6B*0c8#K0`Dp=jE` zV&I@fu)vBDVqhI$F))EJ8LR{>3ub`{uqhxV$qZ-!q}hRifuT5nfq@~FA&N1DA&M!5 zF^V~bDT*b9If^xfC5kPDHHtljErq>>A&Mh~BZaetA&N7FD}}p-A&M)7Cxy3#A&NVN zFNME_A&MtOAVsi+A&NIeD40Q0_?Ea=VnJeFYH_M_eqKpxMTuixVoqgoX7NiE)RvC5BKcD77G8-#0TQvDm}cS3f5+Nxz`7BqKl1SkF?wII|>Gw;(Y& zJ25@ASic~%KtH}LH7_NMf@N_07M9a2w@Nb3Mg=B6^Vhk zLJSNH%^)9vjALMAW8!0GV`O8llEvj8aKI;nQZFb7Kp2#EKp31XHZU+S)G%Z*6mfwZ z3-U}Ya}9G1Q#M18Dp4gS!!8pm}^+g8K5dzib6m- zBtU_{2=+d6p+F5w3R5<7(UKa5EM^#sg&~V2h1r~ei6Ne)h9L`tS+iM+I#O6bfmyhw zh9QfsgdL$k^!WinZbsk2Be0$PypmgO;$fhYYG$w;0;D0njA&oAOnTq zEzb1Rl6Y|PD*^{5IK%~g9V6m{Tz%q0Jc3+q4LFiO@pFqMEj2Zz9~40f zps;3SV`SlEW8`3zV&q`tVB})tU=m{FW8`6EV`O5KVXTtD6>T76a3?`fat6g3D88~; zf*FcH0-8*av?b!|=O60sf#z8(iRl)9dVWcKYF>V6dPaOoVoBmEkh?)81_NW2Ixd%? z>A`R$D5-&ymJT#&K^$461a&Y|3Zo>01US)2GX#TZ=3sD{qsauxDVi)0e~9^d`g!_> z`o_CBhB%@}8>frEUr4;SpMQ7}HlOiXQwEp- zC66LW1_p*LAjg1AV_>XO#ODxjQuEW~1C?cYiMgrq@wd3*<8$*Db7#K=Gjs)>I7+GMD ziGzcKheMi!nS;Fuqz0op1Vue4w2BRos>61MG{zLh6s8uADCSg_6y_9`7KUcVDAp9# z6t)(ID7JP67KSMHUyrWBrRrlNHzEHx}po9CtQW-}J8 z1L@D>sbNWBkzlA{PGbsYNa2Ifn*4r6>Y$(k1?9^|1_p+g^FhP|5b*~j0ScX$?I7+i zQ1Q*`9AIf|1g;xio&t$}1StaLQ%xptpxS!l@(WUnN-B#CK@y;RdW#pDFq2bra$t!Q>>PcN5^ypFrS0t? zH-Yjd2O|#)6C)QhIK^XRR8VMv+pVCw4$*E+VQOKBVoqTWX3%80CE^=l5X8$mij zSsa8>64wMQiK~Vwg*lt4*dT=ko>X*FShE?6%)n92mcmxcoF`Pnl)|3PROFJvQOlgi zlEPWbT*3fOHk_cwK@DRHCp6h`Wix>r3$SEUk;0wLSkwVF3pLsBK$8tGarCJTBJ0GW)G+z?heGB7Y)0a*!hIR|4Ai0`M#S|klhtZey7S*gh- g;Bpxp=U{1U=G@}2fm9)Oav;M%WfDu6fU|%s0M9!lxc~qF literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92909ad91e1caa3adc699cafca581b8b071efa1b GIT binary patch literal 21801 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eac04fdc2ef446023f96dae2a67b321bd7fb7a73 GIT binary patch literal 20545 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..391b05194fdaf696e5fef60d9d6dc95f8ebe7dd3 GIT binary patch literal 21746 zcmYe~<>g{vU|^WXFgv|x5hKH65C<7EGBPkYFfcF_2dFSGq%fo~<}lZmLXa591t1!NL8ib$ z10(`68AO9jhM5Mj0VD%a4HAd(KypkeAlqT0Al)DgQVYT$HVA{*5Danw$b66)AQ~hK zp+O=b*Fb2HI0S=i0qF(V1EL{zfmk4wpm+eWA*vuc@R1BDAQvF3fY=VQ85CX+9)g8X z36TNCGDHlb2IK}13#1<;4oL?fH$r$I7RY@dbr2fn0tgSL3Pd9?L^X&HVL^Nc@+-tV zkXs-!ATbDr@j>Robb?fa*dQ9D3c_XrhXKe85FbW^*w`^h1;Pa&^I>+u%mtYZ5=Zbc zO#utaREpt z$P|zaOf8H?h(TB&(?Kj4jch7{4U>hK3?V@#Lfi>*B}gp@LtFro1GxYs0-+%yAT~lb zNDLAR5EnpHLt+Ia2T={N8^j0c1Yr;xBnP4)c0+g&*Py!qq6(RWm;q7^5(Vi6*$;_x z5DO#&QUhUwNDzj(1LR_eJ_rd?4Pn9bz+3>)1@RR^6+|s63Gy>Y9f$_$g3%yVAT~%2 zWG_e##6~p@76u^IAX((xh$;tBfgmB~fJl%nAk$$q#J3<3MEJn`2a-dW0bzm60I?uC zAh{95N5>%dfG|iLM8ot!+zk>%#vm0iK1d}9LtFt7g|I<(Vq#D%KvZFpAblWFka-{) zVmruRAag*XAQcckLJlSlQUekN@e#UNQb6iKe2`v{JjewwHRv=*9YhS(k07%VF%2>i zA_5Zw@jzyS>;Q=&%mKv{$V3nZiGoy;>H?S_KqiCqgUkfk1Tha}GDH-@2i4RdF%S=e zQF$OSVq5^y1;QZp5F0_ZK>Uv2!^A+U5bguXBlLoJAbA80$qNuMd?d&WkWXP4q88a6 zmna{#ga=}QTmYhp$Ds7hk^;&T%qbum z8Ka7T+yW~(Vdg_@hLIpq(p>x@5(D`Xfjf@}t{ zK^Wv$5C)kG;zKaVHP~VSq!MHT2$SamkRL#%gZv0G4aA3FP~HQj4NwXNr89K+ppXNJLfi@R13BpcD>*AILV4Pe3MtOa%E1BnD!GFvxC@I*>aM7$gJH0a6e01FkRt z#Udz-5PD%Oh<=Dkm?SI&Kr*0M2e|{L6GVf=AsC{PT44b456opClOgF7@6BsP#u0qI1T1M)dc1T__a zcpx_*>xG00DE1*3BuB^vAT_8MWHQL@AQ}{kFgHNh2)BX4A0&pZ8=@X$0tl0v4nX#R zOoCtt4?-fs1LQ&w51R`hYC*c0!DA?>Y6$T_x*@R+B0+Y5!Wu+FWI!YcL&5-5N+O#G zl0jflD3B8iAh$zo1(7iGAZ|bw0p&*YbOcfjQ3+y!Od{O{ptuE@0dhac1W-soOoN3x zhzD{BD7Aq?0yzvoxFfmL8LWXn~Ai@CT6G(i(SRgr&2q+#PX%IaYKr$fJ5S5^CAlC&T zlR)}G_JQIYM8m{DG{^=}EI{0W@G(RVM1pjHQU$~Xkgx&i0Et0(AQs365PKkD4N?KZ zAQd1}AvA~t`3oij;)B>A4AKYE0b*mv$Swe>2H6WT0c0--gLH#ThqwjA17VN~ka-Xq zM1u4|)PVd3G6{r1YC!5CGU0oe)TgH(XnAR2^0Y;^Sy zF;o)d0*GB8T`(4i2KfqE3}PBW1Y!=v4IuR}c?cWAgODIS5Y^a7kPATS5c)vsK|BbC z$w5RxJdi0MIS>uQAU+6#_z0JScp!Zs8aGCD0n8K-4Z$FtFc!!(5C(}sFeC&ZB(m#J zRYBC^B4I8-)(>JsY=xKvVS_|bF@y&(8Ke?~L1G~FAQ~hC5d*PsVTcQG$zl@+<$h3p z2IUk`t_P)k5FdmgVjvbs6yyr@@&Kd)74{`&EMr+d%FB@nB&95<_+YCY$sy0J$C% z3n2SJZUKcm1cQ7HVu8{pNEOI7kQj)DVVF3KPfi$s%mCRAqG5J{d=0W2lr})I04STfOU?26jKTt7RU}3gOJ$dk;OPt@I%fNOo*z3D}_6SCxthK zFNHrvAVn}mC`C9$BtmPYHYv6# zb}9BL4k?Z)PASeQE-9`lZYl059x0wFUMb!wJ}JH_ekuMb0V#ngK`Fs0At|9LVJYD$ z5h;-=Q7O?WF)6VraVhaB2`PywNh!%GDJiKbX({O`87Y}5St;2mIVrg*c`5lR1u2Co zMJdH8B`KvTWhvz;6)BY|RVmdeH7T_zbt&~J4JnN&O)1SOEh()jZ7J<39VwkDT`Aou zJt@5@eJTAZ6H+FoOiG!YG9_hd%CwZ}DKk=Lrp!v2oiZn7Zpyrr`6&xh7N#spS)8&Y zWogQ?l;tTaQdXv{N?DzIvJ{>=7U4}Dtf`DChf;Q@vZAC8wv@xc44Ow?g4P;oGTssk&df{C zNp-3$Np;RhEDBC7@y$<3&3Vblz`*d52}Ce6FfeG^zmx&7H9&+Jh|mQQ3LwG=L>Phy zH4vc=B1}Pq3W(4I5lSFJ8ARxV2t5#?4I&glger)z1Q7-x!W=}HFfcF_v4B`YAVLa6 z2!g~wu6Zd9;_`q95fH%%BE&!hJBVNd5xgJ*Yyby{B@QA$3$9+Wf=mGsFGWFO!XUy9 zLxz! zC_ainu~h_$ts+ni7J;It2o$wNpr|bZC4nMPtQLVi=nOIx6qiMy04o9|iz0CRI)WrX z(Om?J)go{LSqSp}A`r0{L@WUjOF_gk5V0IYtN;-!LBuK$u^L3I0TF9K#5xeM9z<*a z5gS3oCJ?b1L~H>Oejs8ih;RiF+d#y25U~S9>;w_JK*Vkku?Ix#1rhr|#C{NQ07M)F z5r;s;VGwZyL>vVXJ|N;4h&T=+PJoD$AmS8=I1M7sfQYjoA`nEJ0}5ky=9 z5tl*46%cV1L|g+A*FnS$5OEVk+yW7|LBt&paTgS(;QSU0;@$%h0U+W&hItzJF@ai4>T7a#&u61;o`k_G45*B~(`5Eq=!-+;JpLBuDEI9jlfmopQTm;UXKR~iSLBubR1SlsLfs-CMoBn2CV9;P- zWMC))m1jku!UJ5Y6oCo=NKytTTX6CQCv9a(I6rQM8txK zI1m9c^ko8w1#-*FBoHeZM5KU-R1lE{BGN%b28hT65m_K28${%Qh+Ghn2O{!8L;;8> z1Q8(Dzbpo^N2*5z|1# zbPzEEM9c&cvp~db5CMw8mvcd^c_3mwhyceRDAyK&O1L6W9xMVCrA463Sp+I%ia@1V z5hy1Yfl8kuaApVP-y(3<1!dSGP;3=}Vyg%gTScJQDgwn;5h%8bK(SQ>il`z`92J4$ zs0b8CMW8q;0>x1gD2|Fiaa06~qasio6@lWY2oy&}pg1Z5#ZeI`j*38WR0N8nB2e@c zfug4f6g@?t=qUn4PZ213ia^m*1d5&_P|Os8Vx|ZbGew}7DFVez5h!MgKrvGUikTu% z%oKrQrU(=>MWC1|0>w-bC}xU4F;fJJnIcf66oKNS2oxVhp!g^P#YYh+K8ir`Q3Q&Q zB2au3f#RbG6dy&P_$UI!M-eDKia=3O1d56xP*fCwYRMu{Em;JrC5u3HV-cuEECN-A zMW8yb2vp}4f$F>>P)%0^s^p45m0S_1k}CpLd_~~e9$Y(v3iB$S^31%H{PJR5LnBjz zC{B;ky!6DP%*4F(8Fw@`T?=?;A5sd6WJf1w7gslT4^J;|A74NJfS}-z(6Fe)q~w&; zwDgS3tn8fJy!?Wq;*!#`s>6+kI}i6Bo_u)P;aP|09A0>M<>9r5Hy_@1c-P@QM<*Pe zcyzp|`|JDho1`6LaDV@{2P|GRsoqixNvR^KS`dr=}LfCl)7XX2$2FmXxFx72o1W z%qhr7OiC>&f|U1+3=CCVp27aQ78a(Kx<-DQ?6;H)G7I$L%Tn`F@{9C9wx^_)=oKe{ zSjDL&1x5KusYOMgHgA-ON2s5>W00q#U%Zc_pL@Kozl*C+luEd#pNoHZa6Bjs;}J@n zJsgALL;U0YgIrvLqGWKWf|#M?8SEbqa#FkzP7|cCssZa?$xy@vs?I>fuQdIP{M=Oi z^zzJ-5<@5zlv zpbrfUeNYgjq?YJ|!aoC+G{AA7S5SG2!zMRBr8Fni4%D75Hc??<;NfCo96)%G#c2R- zXJi_+e>D6@)BnJQz-ay(&3^-z`bNwD(fl`>|3>rQz=gnQ{u|AI1DE%Y|3>rQz=gnQ{u|AI1DE%Yg{vU|^WXFgyK_7!$)|5C<7EGBPkYFfcF_pU`1oNMT4}%wfo7jACR2v6)h^ zLuMS}Oer8;3{Y9-6bOXyK_qhu3s{T+OhRNqBt#CP7sLj!Sm)TMfXoBA044_FgV-Q3 z5F3O+e2{t=hKPYgnc=Qs0ka@{2niB_uplH%H^^m7DG>jGTmX^E`Zqz(g$IKUs+kPHZeWI;4T3M}M7z6OavTmX`Xh+xx=FbzExK>h*g zMaLjTghy}6>M1w>?HbF4RS0Ecf;Q2q9AiX zp#YKtu_0*?6c!*1G7TgH!65TMW9%b2bltL0f-M`!^A*rkPjdjMnXhkY9Z!8cp!bSmwSup+Rym3=#pcL9!qkgh62k3vUn`k`h7T4N?U%52Ol0 z!$g?DWg^IJAQKUyAh*Co5NvELh%FFPLFT|*0I~}?>_IMqh(SmYA7lf>1t1m-gXBTx z!T2y5Vmge6a0|rMAX!jd43Y<#4GL=n2DuWX0wfDE8>Sl~28#ul47v+I=0S8qRDg6t z)WAeRp$t+5@i8O}Kyn~ekdy$@2~hzOgO~u(1yTob0f+^|AXP9nG7S+2=?95|cpx?i zgM14M3kVy;1NjhwL1G|vAblVakc&Y2L2O8g1d;)XfK-8KhzbOWV1Z=OF~WBc7CH&y zgIt8J4<-f)1DM?qRWKVtE`zWk;@C-$4Im5&e*_8A2@(fkRP!O`fJ_ImU@ic$Vd_A7 zK^PrVb(kAt7Q2Hi89_L69I9fOrt!!qkCy5Dc;b#)7axBuEFfFvJBQ zJ3uBwTmT{=7$Odm0oexh0q9I}+62imf0+1|7FAT$60ONybkSQP< zWHW@uM}q1^mK5v|Sq_;EF%Kew%>^KNgeyQid>B;PfZ`ft9*Bn2hagdqt3Wj~gbgYc zK>mlQ1Brn`i3Qw3!Dl{UIgnYPbce7HR8NCMK_UnYvJavTLPAm}bzA^48{$_`yrG5x z$TbifLH>uR1o;ZW1BEoMSOBRa4nuqku?0ecY=wxzNKi$bI#4HF4WIo6~P`p6=3nD>22E`Gm+=AH-i3w`B z0Om803qTfn-2&0Aqt_hzmeEA^imipIj1TItYV86k;#P1t1ZS zk3q2jqCtF+EGWf*Yy#O1!Jt?GiI9(Bu@CVph=kY*Vu9o!E(5VZz6a5uxCOZiBtwl@ z0GSE#9mt;`Qz2mha{-8kV2~=1DH+d*LuVu8{hNEIj~ zKx(Mr0+1~*--Fl?^C2Q2J7FwH41h?G3J?uajp+iATOocTjs%$m!5|W3Cd7P*y$BK{ z1Hqsi2@(hKsFfFBc7s9~6c-5dA+~@>P-q}9LCW7i5P}qY^28990K1g_gSRglnFh~|83Zg;j5QHJ)${-Q)F~~+xegN48 zatVkJVuO4L5{JYP#5R!qpxOhJ)eIfw>{fG{X6fM`%^1%(bo4%wyDC=WpO5X@$fjUe+u@d2_K zBn}e;r4?1$I_vIoS2xB$Weg$Bqzh!{vc%mpCTl)C`rPf*B$>;YkrJs=u{ zL2@7)L9PRZIYoJcM4Am zZwg-ue~LhgV2V(RaEeHZXo^^hc#1@dWQtUZbc#%hY>Hfpe2PMfVv16VGK!rlDXJ-I zDe5U2DVix-DcUJIDY_|oDf%e}DTXOVDaI)#DW)lADds5_DV8Z#Db^`ADYi)Z?NaPh z98w%poKl=qTvA+9+)~_AJW@PUyi&YVd{TT<{8Ic=0#X7~f>MH0LQ+Cg!cxLhB2pq# zqEez$Vp3vLSW@Cr;!_e*5>uE{l2VdWQc_Y=(o)h>GEy>Am{PJ*vQu(Wa#QkB@>2>@ z3R8+wic?BbN>j>G%2O&*DpRUbs#9uGYE$Y`>Qfq08dI85np0X*T2tCm+EY4GI#aq* zx>I^mdQr*zQY)sjdvN>f-%GQ)^Dce(aq;RINrRY#P(twxKRH7K#ekwWX#NhtL|QU_})W6FV)-Knf7sRMhwL(&C=#I6D%3W{HR zc&Ma~H6-Tll_@bPOH(3JSW@g#;!^BW7N&%xB&Il}FsC@D%ufkQNl0--D*+ay1gE5= zxWP+;)D(BL(jYCx16m>=(o}kiXG%tjS4w7zcM4OAPf8ZN1n^B+m9jM@Hf45-U&@>m z|CG5Y0V(rR0#lMwTvFmw98#92M1jkQWhs#<$tkWWi&Mf%MPlP{A=)({fL;xEZI3yR)XuMh2WZLeo8{h0*tz86}Hl;W5Yj8Qkn!fQvD6o-_kl*kmPbw z3lL!pBD6q+4Tw+y5r!Z_4MfO;2qh4q3?g(vgaU}r01+l2!W2Z9g9s}SVFV&9L4-Ys zumcgcAVMERSc3>{1_p*ARuD@RM1YoZzZ3?sctH{@AeID(5CIWjt~iLr4I(%|1P_P+ z8BhfB=SzMNmlH&=g9tVd!3QGLL4*{DkO2{5AVLyE$btwn5FrF21VMxxh>!*m0wCf) zi1-I0{(^`V4&wBDR2ttsuf5L~H{Q+d;$*5U~>!J)qDn z0)=xCC@P9T!CnN4!6H!f6oF!<2po-|2q*%@Oc5wJi$FnK1PbgTP)rwrqP7SW`$eEg zDFVfB5h%`!K+#hKin1b5R1|^Ytq2rbMWE;@0w+f|kTXDuun3f>i$JNf2$VXDKxwxK zl;n#*X}1Uz`$eF1S_De+MW8fZ1WtOO3{eD1%0-|IQ3OhuMW75(1Wxz+L0&xoA`XIx zLm=WXh&Tcwj)I6|AmTWPH~}I~f{0Tf;xvdj10v3Xh;ty~JczgeA})f6OCaJhh`0hG zu7ZebAmTcRxB((=f{0rn;x>r510wE%hM<4>U0pjHo5bG(3cm^V# zgNPR(0#t0gd<9~?1`%&S#9I*Y4iu803|j;$1&Tn~xd@b+E&}E5B2Ydr0wuU2a7ug+GT8-0d;k$2LBuBz@fk#X0TEw8#5WM} z9Yp*95kEo1FA(vYfq_ATfsuis2vnYdvv?7x6aW_)kQfBV7TCF9hl8UL><@6ngQFH4 ztKirN`v?@ZVD~}X40b&@fq;_*IMIN82~Hc}^aA!TI1Ipk0|x}y`(XcqQ!zN%g0lf4 zJ%dv_IFo==J2)i4DI1(gz_|jPPQh6SocO_62%L(+SqPj{z)2pQj}RFG9PHp+0nTOM z3<1s`;KUEkYTyh3&KjVcQj`IT-xLs$1S0Z51gP*R$^)^gKtuwF$N>>WAR-V%1cQh) z5RnZc3PD6EC}sjc1W3utAP@_r?qvvw6$&E4Ktwo*hyW3hAR-DxM1zPJ5D^O^;y^?^ zhyYpsG7-cAx$k8%hy`-)%Ty2x|iAkVx6`R!!^ zhzoM=OOR(?7K6AYAOh_AG7zgAL{xx?N)Q1GgO}AHRt<=#1rc>1q8>yvfQUvA(F7uz zK|~9PXax~%Afg>abbyFX5YYu9x;VybLBu|g@t`m*0)=T2C`^k$VOj(V(;`rq z7JFf9UwX%RR~K{as^s3tA~ z)x<@hnz#s56BmJM;v!H@Tm-6#i$FDT5vV3E0@cJtph~z1RR0!%>fa(z{aXa8e~Uo% zZxN{eEdtfQMWFh(2vq+Tf$HBPQ2kp3s(*_>VOj(V(;`rq7Ju; zxCm4U7lG>EB2fKX1gdq5Ky_^qsD>>9)v!gN%C!hoxfX#c*CJ4zTm&jMi$E1~5vY2< z#pdbcYhh+~i#@2cxHvO0FFj{#``!SD_x5h3pdh=@cwxeYi5Dhan0#T%g{c>&U6_7h z#)X*|W?h(lVa|oQ7v^1F1UD$qM$Az62c3s$gVb6uV7xrD)f3e|Wn*X8%7V<~#GLqo{Nl`#%(B$@qQsKS{98iVsi_6= ziN(p8nejQPB_*jv#kV*Ta|$vNlTu5nc*-;LQu51-bq$S74IzPKYFfqS?eA%!8+41? zH!<0{vM4hrCo{Q<%QM(t*TTZoQrFZ^lmC`-L1uwod|7HJ*f#ntDQ3?w?@VN%W>jzRGu{_*}nF0Mhh zM9^d*dX&OF{apORgX2MN#i3IQs~U)Yu$`u+ICO&TM3RN-0fj_-5H3AvvJgFrzK+h$ zkwKn5KAz4vG)iJq0@1DD8SEbq3g&oRE|tKd0<3o>LyZ15R>!1(mlrY;yBcN^?@}K&^`6IXVmsJX}nS0|*bYI1Qlfj7+2U zkB0wf`X9Iu7|nm9`ETG--)Q+in*T=g-)R0DxDXi4f1~+t;8Ndc{WqHbM)Tij{u{Uu z7|nm9`ETG--)Q|en*T=g-)R0DxDXi4f1~+t;8Ndc{WqHbM)Tjm=D!98O5j1ZdIrj% z)_~5x4`kSn+6@W;Q0img0Hq;T77!nXf3b0nri>9C0;4GdmKR28)DRd=8K~hg%7cZ# ZXv%Y literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..905c22087b3e42883a1c677d2f4550cbd959c85b GIT binary patch literal 20721 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15ebcd3c577700b5ddb7425c3a502ae2d0fc6443 GIT binary patch literal 20561 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 gD1%x9I{!Y9VLxg&CH-(0P{Mm9RL6T literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbccee9df11de0c75ae6e1f979858993f37f9013 GIT binary patch literal 2946 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 Ny%^+Q9!50C3;_5L6^8%- literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..291f77419dfd96baac1f423f8b2fbcc0e6d25e97 GIT binary patch literal 15709 zcmYe~<>g{vU|^WXFgyKdDg(n~5C<7wU|?WyU|?V<&f#QWNMT4}%wfo7jACSDNMVX% zN@dJqPG!tu0pS!73m0ZhWz0gyFtuRaAQRAWnnV;^3QH7wDpLw;DqAXh3R?>M9M&j~ z6pkoPn9Xoo!KS2erhsf=PT_*e!|cFEgLDvsVP=4BLNgyG2BOi`fyA(3kUDJQ=wjH^ zfy6)i)gOdpI! z*N-9&i4zEk6iy&DaGa(Q#h1b##h=QX!j;OG%AXs#vOcia6Lu5-Ac&fNTQUhz*0}Kp53#i72@gnJD>G*%Yo+xm5WSS+LCtDRNPYDXb}C zDPkb|L3sv5KM)Pa2zyvlOxQ`L-oN#A$mcn5roq$qSR89qSRAWQ@B#qQq@zG!LHXxQHj!ongQ}9*c>RIIYl*v zCq*qqJw-kRWIHPX-=XM*nSq4{`H>O~wg==(5XNFYSRS7^NFO|O2&#se1WK784C9kZ zlcP694FXBE3t4@N8ZwUI}7j}pC9@dBA)@RAASX_irMb4!CoM6#B){kucQL3;g-Y=y zXCxNI=cMLA`7C*fxzsFgAIFqg5w!_+Q2r*C!0&xxO`)AS zobCf9nwQ`l%m?!Cpd?;`!-XH@K9Y%-93X81aDrq5iYUz0&53Qn+MiV2V#ATA)&D6j!!>Lp1VI3P$O@Eea7 z&ZAu73vqBs1TJg9<=!a4P&66_bPNMfnFA|0ab|K*hQ7t-?qp@j8PWxl_4UmD2^j=y^0_xHV;%zLK=4U|@L34H6T>N4(?#spADHk$@2|K_T=K>>zM}feCStEZ7c^ zd71){<{`Lj0L!Bh;N*&yJ`t%BkxoEXfk$Irf}CE(3M!s0{4{lMv8Lvg<`x%$mXF`! zaPo9Fjd%75zQyVq6yzUti#0gJF(~8~n`cOHyszsmcCdVK$Sq+o!`Z_zDBj1_FFwT4 z$;b5;FIX_xH{RFZ#ntB)CwO%f*fb6ZGdSdy2!w^ElMf<_(CQlM>=gjf3Sok@LRjcp zA)+W+y@TLdy@TSRT0w%S?&Wh0bq2}99qbzF91;%K8WIlE3KGQB3X+Fu<${c-fc0`h z*});VM4?PHH}gY<;g04A_VNq{Yi0+tKp_lfplRd<3&OQ=g*pctIk|#0azfc4TcJ!e z&HPYdRP8=U+I?I>J{AS30|}#g8LS4Q~Oqn>{qd%>txV7|cMkmlrGuvvnmy zkq0P+gNR>I`WgATsru>VnI$ELP%0?3AYb1%GbORu!`D|oCo@UEpt2+*KhIdtQolH} zBvrQ{F*!RiJ+)ZBAhSR}zAQB_CBH}?w9YvtwM0KRDY>{fSFfP*7Kcr4eoARhs+|mI ztFH?q0|O5Wi;5hh0;9rT7B&_pCPpay!^XiPs=%m$fInEc(d1PmK>8Tv80CJmaG=Y{ zF)I9HVMP~(=ulvkV^sLX!ig>mb_d8jkSrgXtQuGr)0HY>j0%hrj6z^2@souMO`nPg xqXMH8qX?rAqZlJLc^O6lus;;Q=77|K%u`^Lf$~B2g4_+Fr64MwvB)CZ0szR}u3Z2C literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd39db0218b8445676545e359a203bc46a0d4535 GIT binary patch literal 3106 zcmYe~<>g{vU|^WXFgv|df`Q>Nh=Yt-7#J8F7#J9e{TLV+QW#Pga~N_NqZk<(QkYVh zbC`0OqnN>LmK>H`)+p9owkWn-_9%8nhE&EB)^vsxwndE1Oi>)}3@Pj>94!nf9I4FB z%u$>voWTs5TrWX3X)@m8%1g{mO(`iY$Vq+4$iTp$$#{#`IU}(sIJG38C_gE+NR#=N zAV?rFxg@p7Ik6-)J-?{(77s`=GcP^3B(Ws*mQZkNVQFe!a;i^ec4|&$Mt*+EEwSLt zy!4z@r^=F4koMrz65srk)ErIrTRh1biABY!CGjAuZ*k-#=B1Y=rl;N#1c}F&1kl_&OUwCOb}RU@8*{b zb12BMAT~1t0|N*bdoeIDlrWSq)-W_PEnr&6z{pU;Si=y{T*Fku5YJM>T*DC0n!-@S z5YGlC*})_SnB)YLTr~^}xIy|-7=jsAGWu!q++r;*El4dY5@29pxWy44pP83g5+8qy z4I1*C@kOa+sYS)9DYtmQ5f@(oP9C?o<8u;=OCWJ}i#NVFwJ<(8zcddV1>Er^`6Y=t zAi?5WFb*h|Z*j$^6@gS{Bo^IbElMp;EzxAT#ZsJ_lXi<064e}V`?x{r1Zv$%##@~6 z@yR)f#l`XQD;a(z>u2QWrs}7cXO@&0LaCtCf_#17%#_4p4_{yXoXjNsg36MN{5)el zOa0=^l2qM-#N_P6^weVgg3JQ___EZzl>8!nkh4-!OZ1DAK&;}_5{Uow3Mz|47#J9g zK^YOmU|{59WMg7uVq-+WDg_+zs|O3mWKiA$MI#7<*q~?x;bJR{s7wJzWeQU|V+qRw z)`birkcb3DEqe-x@mH zN^|3rAz3&xwYW$UBr63Xq(OuX0|UcK#v(ZoTM0y{fCyC(0W!=H6aqY8_wzBaF$#eE z&r~Ig%je)o#qc)Bna&`CK-ShUWHA)+fygYzV1^ooEG7^Q@>Y=$s3>AC5(in%2_i&6 zga(KJy9!Kzod%Ni2ARkPavBpGBL`EJ3NA-MqZXWisp2+J30{QLZ6MhoG`HbQDzKt1 znF-_(CPg-o@qHLNAQh8k8$hFZ2fz8Yo_3#1FguVKg% zs9|GekYoVqVrH;m0NE4ITWA1wrC=>P$n7OUS;E;&6BvtJY8bLW=89yqKzIv87c$gx z)Ns@=WQl>rKzDkFvBjQpaKDsVog~{3gH9gL#edP zoRZX{_)Jg8T|}tRQWip?)r|Zk~Rw zF1Og7{ry6M{C$c*nf4ZUu%mB)k86CeXOwFZC#FP5B3c440DYS z_V5o1aSjbZQp}c#E5KE_QBlBvqEA#ut|qAq4^pDAV3z1vd(AvE_hEup*F$ZgC;pSOhK*zyzpNxW$r| znwk;`%6cB4oW#Vz$i>LQ$i~P4hJ0*XjC?FyjC_ndpwgUCfQgS$h>?SdgOQJskCB6s zhmnJkS=XIvjp0}hl`8L}8sn6g=l zJW`lz7_t~kn6j89!R31vgES~>vt+SKGk~&m4MP^22uOq-!cSq&W-anaVFAenGib8< zrB{orbAMRXVh=9)(?OnOVEAC44iXeu_ugKUqX?V^z|jw`0XSf>2uY2+pu`~qB0%X# zlL-<5j74Z6S!Bq-z|aW_NKk5GU}Rwg1sltMCPudZEKCBRfMTpt!xb#32}zU5%};z6y8(wx-z_**>j@r9*{IS`p5J&?l;K!g#9Fb5H!+811{-Qp-H$}dPQ zDyamggCbBdTVw}P0&?svUT6a$IW;FIJ|4+G;7SdYJiv_{U67|hnT3Oq1p=A)_;|RO z7`fO$n8N_9%1@K)7I$)fPEKlaNoIataSWHa^HWN5Qtdz$Y%wU$^Dyx+iZHW)LYE5wj(+%k literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..60f61c735f54dd1a356ebed53538a18e93b9a3dd GIT binary patch literal 1691 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b13afca4fb3daa9fd6eb05fb9da60db3693f5cd5 GIT binary patch literal 5822 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 +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +#Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 + +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 0000000..5b1227a --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + super(Big5Prober, self).__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "Big5" + + @property + def language(self): + return "Chinese" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 0000000..e5509a0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKR_CHAR_TO_FREQ_ORDER, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312_CHAR_TO_FREQ_ORDER, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (BIG5_CHAR_TO_FREQ_ORDER, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JIS_CHAR_TO_FREQ_ORDER, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) + + +class CharDistributionAnalysis(object): + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order = None + self._table_size = None # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = None + self._done = None + self._total_chars = None + self._freq_chars = None + self.reset() + + def reset(self): + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char, char_len): + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self): + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = (self._freq_chars / ((self._total_chars - self._freq_chars) + * self.typical_distribution_ratio)) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self): + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, byte_str): + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCTWDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCKRDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(GB2312DistributionAnalysis, self).__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(Big5DistributionAnalysis, self).__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(SJISDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (first_char <= 0xEF): + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCJPDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xa1 + else: + return -1 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 0000000..0bf81d5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,107 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter=None): + super(CharSetGroupProber, self).__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers = [] + self._best_guess_prober = None + + def reset(self): + super(CharSetGroupProber, self).reset() + self._active_num = 0 + for prober in self.probers: + if prober: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str): + for prober in self.probers: + if not prober: + continue + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + self._state = ProbingState.FOUND_IT + return self.state + elif state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self): + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + elif state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober: + continue + if not prober.active: + self.logger.debug('%s not active', prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug('%s %s confidence = %s', prober.charset_name, prober.language, conf) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 0000000..1fc2746 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging +import re + +from .enums import ProbingState + + +class CharSetProber(object): + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter=None): + self._state = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self): + self._state = ProbingState.DETECTING + + @property + def charset_name(self): + return None + + def feed(self, buf): + pass + + @property + def state(self): + return self._state + + def get_confidence(self): + return 0.0 + + @staticmethod + def filter_high_byte_only(buf): + buf = re.sub(b'([\x00-\x7F])+', b' ', buf) + return buf + + @staticmethod + def filter_international_words(buf): + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = re.findall(b'[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?', + buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b'\x80': + last_char = b' ' + filtered.extend(last_char) + + return filtered + + @staticmethod + def filter_with_english_letters(buf): + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + Also retains English alphabet and high byte characters immediately + before occurrences of >. + + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + + for curr in range(len(buf)): + # Slice here to get bytes instead of an int with Python 3 + buf_char = buf[curr:curr + 1] + # Check if we're coming out of or entering an HTML tag + if buf_char == b'>': + in_tag = False + elif buf_char == b'<': + in_tag = True + + # If current character is not extended-ASCII and not alphabetic... + if buf_char < b'\x80' and not buf_char.isalpha(): + # ...and we're not in a tag + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b' ') + prev = curr + 1 + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 0000000..d3f5a12 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19544f859132610c5628995ef74515cf13c031dc GIT binary patch literal 187 zcmYe~<>g{vU|^WXFgu-zfq~&Mh=Yt785kHG7#J9eSr`}?QW%06G#UL?G8BP?5yYew%#spAC>4}ikgxBXnUYxS;p?lPlbNJnP+5|ZpJ%LRsb8E~lB!#fn4F!M zo?5J5kXfJ~UzVDel3%2soRL_Rl3JploRg^^AD@|*SrQ+wS5SG2!zMRBr8Fni4rKFZ GkP87i|1e7c literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3268583a1cc80157bb4fa2c8a135e466efe5c5de GIT binary patch literal 2681 zcmYe~<>g{vU|^WXFgu-}n}Ojmh=Yuo85kHG7#J9eix?OfQW&BbQW#U1au{=&qL^}- zqnLA9qF5L~V$3G8yT|*;NBZczJk_?69{JgZxl+?WBR0RV)Q@C=t z0agl$#mSkO7>W(`47j*F(-iXZVV)>TRVXORFUw3xP0>-vEP;ACv!qxdGq0euL?Nvx zKUbl+BqcLXkBjRiD8e+EZ}BH473b%amZZjK=7Iv?7GFV8W?o5rT4`Q#NoIcDErHU! z%;fx()cBmtlGLKaoMJys##`L+@nxw+#hLke@$s6Bx0nMWjWii=35Monf`k)uT)<(M zUv!HVY+o`H$TlcuWnf@nV_;x#2BnZH1_p)_hGvFZrWytphFFDK<`Tvl=4QrP<{G92 zOf}3485tRBn6j9QxEL7@sWB`k?*0Pka75UXLE?_U=SirfEA%$@vQ!Qf+ zOA3=DLs3o&^8&6KD6fVkg+-EKA#*T83M)u-A!9H@3R^IPCVSOiaEJ$`mXsFdDI_Ws zmlS2@r7NVQ7AF^FCV`kG8Q@?|N=(X0Re&W0h5R&yL`VwCF9Ms8lUZB>5``F0tOrRT zRt1SgiMa|nnR%(jRtg~*sSu_@NxnjQY6&QzAseX&Hp!}_vH+^iO2HEp<{+E%(-e{_ zOHzv=N+8DOCFZ7DDflJkrh;q+B`{FpPR`HCNd?CpNEB=}L=)Ith@RpSh^ue0Wv1ul z7p30ffcdOSvbxqvp}H0$y;axV;zFd=DqfJXynKbC)Z)^d5INlQ&lxy6!_pO<=zH9050IQ14AM0F7;`fstNq=M4bE#~6N;#;EWsU;u}6jv6P zq~^jLbBir4zbH4cM3eOvE7&8qSU~Q-#aMca1;j5BU|?Wa$xtN8z`*b;Nk1b$H&s8q zJhP<45K0B57Ub*uW~L+-d-(e5=VT`77gUyHC0a!w|Uotj*tS5SG250WqnKsh5mKMiDWu^cE}bFndUFmf<*F|jd% zSZs_ei~@`tj695N|5=!eq!}0(k{LnjpqPb$fdLd=;5^U+&I4JDpi;7zv6iuhF^egM zIfbQ!VF7ar>q5p9wi1>ijS|)@wmdcvnZ=&Yn8M!6%E$m#$&tdD!nJ^-gmWQd3U@Cv zNOS>L4Z}jlTBaJNEN&NuSgl&-8s-H&3mJ;aN_bOvN?5b_Qh0lr7#T`@;apdeRBEJ`oUP0cHTl$z;uWELxw7N@2tWabr@q$Z|7^g{9y zNR^cWQVs?Ct|}~q*g65VLV!C4g#k;m#h~I5DVf}21(&{6ac-dcraU9R7^xU3PgN+- zFU?6&$jQu31(gb*x}+#KGcQ#S#c)iHMoMa0Vrfo^6{JMhyv0L~;ir4|<}IEMuJ=(;GB zlxHTVDkPSGqZFJjKxI*)LQ+m*UN*Q41bMbNGd(Xc2dpMFF9oEcGQYG4Qd{XMc%~^- z=9emzC+3wXfV`vwas+aPtE&qV=F()m#R4ii{4@n`aU>R{7bF%Hr{3aogr?H~5Vz;sBLjY)PeQX{kj;A|Me^O?8V4Y#vB!agi)o zNoH|kNlE1`R&Ygmi>X5C51&sFF8NAAh84-ShrNMDJX^2{GbG!T#{b|t_~o90&_H| z=#Gzv1OTYygs{Lt!C{k|pHiBWY6mJLi$Q_U!Y9JS!N|eH!^p$P!^|baCC9-C07X$8 AFaQ7m literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py new file mode 100644 index 0000000..f890f93 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py @@ -0,0 +1,84 @@ +""" +Script which takes one or more file paths and reports on their detected +encodings + +Example:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +If no paths are provided, it takes its input from stdin. + +""" + +from __future__ import absolute_import, print_function, unicode_literals + +import argparse +import sys + +from pip._vendor.chardet import __version__ +from pip._vendor.chardet.compat import PY2 +from pip._vendor.chardet.universaldetector import UniversalDetector + + +def description_of(lines, name='stdin'): + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + """ + u = UniversalDetector() + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if PY2: + name = name.decode(sys.getfilesystemencoding(), 'ignore') + if result['encoding']: + return '{}: {} with confidence {}'.format(name, result['encoding'], + result['confidence']) + else: + return '{}: no result'.format(name) + + +def main(argv=None): + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description="Takes one or more file paths and reports their detected \ + encodings") + parser.add_argument('input', + help='File whose encoding we would like to determine. \ + (default: stdin)', + type=argparse.FileType('rb'), nargs='*', + default=[sys.stdin if PY2 else sys.stdin.buffer]) + parser.add_argument('--version', action='version', + version='%(prog)s {}'.format(__version__)) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print("You are running chardetect interactively. Press " + + "CTRL-D twice at the start of a blank line to signal the " + + "end of your input. If you want help, run chardetect " + + "--help\n", file=sys.stderr) + print(description_of(f, f.name)) + + +if __name__ == '__main__': + main() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 0000000..c562e1d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging + +from .enums import MachineState + + +class CodingStateMachine(object): + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + def __init__(self, sm): + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = None + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self): + self._curr_state = MachineState.START + + def next_state(self, c): + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model['class_table'][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model['char_len_table'][byte_class] + # from byte's class and state_table, we get its next state + curr_state = (self._curr_state * self._model['class_factor'] + + byte_class) + self._curr_state = self._model['state_table'][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self): + return self._curr_char_len + + def get_coding_state_machine(self): + return self._model['name'] + + @property + def language(self): + return self._model['language'] diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py new file mode 100644 index 0000000..ee3f619 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py @@ -0,0 +1,36 @@ +######################## BEGIN LICENSE BLOCK ######################## +# Contributor(s): +# Dan Blanchard +# Ian Cordasco +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys + + +if sys.version_info < (3, 0): + PY2 = True + PY3 = False + string_types = (str, unicode) + text_type = unicode + iteritems = dict.iteritems +else: + PY2 = False + PY3 = True + string_types = (bytes, str) + text_type = str + iteritems = dict.items diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 0000000..de0ceab --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self): + super(CP949Prober, self).__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "CP949" + + @property + def language(self): + return "Korean" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 0000000..c8e6001 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,76 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + + +class InputState(object): + """ + This enum represents the different states a universal detector can be in. + """ + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(object): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(object): + """ + This enum represents the different states a prober can be in. + """ + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState(object): + """ + This enum represents the different states a state machine can be in. + """ + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood(object): + """ + This enum represents the likelihood of a character following the previous one. + """ + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls): + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory(object): + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 0000000..c52060d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,101 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, ProbingState, MachineState +from .escsm import (HZ_SM_MODEL, ISO2022CN_SM_MODEL, ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter=None): + super(EscCharSetProber, self).__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = None + self._detected_charset = None + self._detected_language = None + self._state = None + self.reset() + + def reset(self): + super(EscCharSetProber, self).reset() + for coding_sm in self.coding_sm: + if not coding_sm: + continue + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self): + return self._detected_charset + + @property + def language(self): + return self._detected_language + + def get_confidence(self): + if self._detected_charset: + return 0.99 + else: + return 0.00 + + def feed(self, byte_str): + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm or not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 0000000..b837704 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,246 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +HZ_CLS = ( +1,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,0,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,4,0,5,2,0, # 78 - 7f +1,1,1,1,1,1,1,1, # 80 - 87 +1,1,1,1,1,1,1,1, # 88 - 8f +1,1,1,1,1,1,1,1, # 90 - 97 +1,1,1,1,1,1,1,1, # 98 - 9f +1,1,1,1,1,1,1,1, # a0 - a7 +1,1,1,1,1,1,1,1, # a8 - af +1,1,1,1,1,1,1,1, # b0 - b7 +1,1,1,1,1,1,1,1, # b8 - bf +1,1,1,1,1,1,1,1, # c0 - c7 +1,1,1,1,1,1,1,1, # c8 - cf +1,1,1,1,1,1,1,1, # d0 - d7 +1,1,1,1,1,1,1,1, # d8 - df +1,1,1,1,1,1,1,1, # e0 - e7 +1,1,1,1,1,1,1,1, # e8 - ef +1,1,1,1,1,1,1,1, # f0 - f7 +1,1,1,1,1,1,1,1, # f8 - ff +) + +HZ_ST = ( +MachineState.START,MachineState.ERROR, 3,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START, 4,MachineState.ERROR,# 10-17 + 5,MachineState.ERROR, 6,MachineState.ERROR, 5, 5, 4,MachineState.ERROR,# 18-1f + 4,MachineState.ERROR, 4, 4, 4,MachineState.ERROR, 4,MachineState.ERROR,# 20-27 + 4,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 28-2f +) + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL = {'class_table': HZ_CLS, + 'class_factor': 6, + 'state_table': HZ_ST, + 'char_len_table': HZ_CHAR_LEN_TABLE, + 'name': "HZ-GB-2312", + 'language': 'Chinese'} + +ISO2022CN_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,3,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,4,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022CN_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 20-27 + 5, 6,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,# 38-3f +) + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL = {'class_table': ISO2022CN_CLS, + 'class_factor': 9, + 'state_table': ISO2022CN_ST, + 'char_len_table': ISO2022CN_CHAR_LEN_TABLE, + 'name': "ISO-2022-CN", + 'language': 'Chinese'} + +ISO2022JP_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,2,2, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,7,0,0,0, # 20 - 27 +3,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +6,0,4,0,8,0,0,0, # 40 - 47 +0,9,5,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022JP_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 20-27 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 6,MachineState.ITS_ME,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 38-3f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.START,# 40-47 +) + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL = {'class_table': ISO2022JP_CLS, + 'class_factor': 10, + 'state_table': ISO2022JP_ST, + 'char_len_table': ISO2022JP_CHAR_LEN_TABLE, + 'name': "ISO-2022-JP", + 'language': 'Japanese'} + +ISO2022KR_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,3,0,0,0, # 20 - 27 +0,4,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,5,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022KR_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 10-17 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 20-27 +) + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL = {'class_table': ISO2022KR_CLS, + 'class_factor': 6, + 'state_table': ISO2022KR_ST, + 'char_len_table': ISO2022KR_CHAR_LEN_TABLE, + 'name': "ISO-2022-KR", + 'language': 'Korean'} + + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 0000000..a81ee1e --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState, MachineState +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCJPDistributionAnalysis +from .jpcntx import EUCJPContextAnalysis +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self): + super(EUCJPProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self): + super(EUCJPProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return "EUC-JP" + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 0000000..ae25c1b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,195 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 0000000..99d5b15 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + super(EUCKRProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-KR" + + @property + def language(self): + return "Korean" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 0000000..5195275 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,387 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table , +EUCTW_TABLE_SIZE = 5376 + +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1,1800,1506, 255,1431, 198, 9, 82, 6,7310, 177, 202,3615,1256,2808, 110, # 2742 +3735, 33,3241, 261, 76, 44,2113, 16,2931,2184,1176, 659,3868, 26,3404,2643, # 2758 +1198,3869,3313,4060, 410,2211, 302, 590, 361,1963, 8, 204, 58,4296,7311,1931, # 2774 + 63,7312,7313, 317,1614, 75, 222, 159,4061,2412,1480,7314,3500,3068, 224,2809, # 2790 +3616, 3, 10,3870,1471, 29,2774,1135,2852,1939, 873, 130,3242,1123, 312,7315, # 2806 +4297,2051, 507, 252, 682,7316, 142,1914, 124, 206,2932, 34,3501,3173, 64, 604, # 2822 +7317,2494,1976,1977, 155,1990, 645, 641,1606,7318,3405, 337, 72, 406,7319, 80, # 2838 + 630, 238,3174,1509, 263, 939,1092,2644, 756,1440,1094,3406, 449, 69,2969, 591, # 2854 + 179,2095, 471, 115,2034,1843, 60, 50,2970, 134, 806,1868, 734,2035,3407, 180, # 2870 + 995,1607, 156, 537,2893, 688,7320, 319,1305, 779,2144, 514,2374, 298,4298, 359, # 2886 +2495, 90,2707,1338, 663, 11, 906,1099,2545, 20,2436, 182, 532,1716,7321, 732, # 2902 +1376,4062,1311,1420,3175, 25,2312,1056, 113, 399, 382,1949, 242,3408,2467, 529, # 2918 +3243, 475,1447,3617,7322, 117, 21, 656, 810,1297,2295,2329,3502,7323, 126,4063, # 2934 + 706, 456, 150, 613,4299, 71,1118,2036,4064, 145,3069, 85, 835, 486,2114,1246, # 2950 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,7324,2127,2354, 347,3736, 221, # 2966 +3503,3110,7325,1955,1153,4065, 83, 296,1199,3070, 192, 624, 93,7326, 822,1897, # 2982 +2810,3111, 795,2064, 991,1554,1542,1592, 27, 43,2853, 859, 139,1456, 860,4300, # 2998 + 437, 712,3871, 164,2392,3112, 695, 211,3017,2096, 195,3872,1608,3504,3505,3618, # 3014 +3873, 234, 811,2971,2097,3874,2229,1441,3506,1615,2375, 668,2076,1638, 305, 228, # 3030 +1664,4301, 467, 415,7327, 262,2098,1593, 239, 108, 300, 200,1033, 512,1247,2077, # 3046 +7328,7329,2173,3176,3619,2673, 593, 845,1062,3244, 88,1723,2037,3875,1950, 212, # 3062 + 266, 152, 149, 468,1898,4066,4302, 77, 187,7330,3018, 37, 5,2972,7331,3876, # 3078 +7332,7333, 39,2517,4303,2894,3177,2078, 55, 148, 74,4304, 545, 483,1474,1029, # 3094 +1665, 217,1869,1531,3113,1104,2645,4067, 24, 172,3507, 900,3877,3508,3509,4305, # 3110 + 32,1408,2811,1312, 329, 487,2355,2247,2708, 784,2674, 4,3019,3314,1427,1788, # 3126 + 188, 109, 499,7334,3620,1717,1789, 888,1217,3020,4306,7335,3510,7336,3315,1520, # 3142 +3621,3878, 196,1034, 775,7337,7338, 929,1815, 249, 439, 38,7339,1063,7340, 794, # 3158 +3879,1435,2296, 46, 178,3245,2065,7341,2376,7342, 214,1709,4307, 804, 35, 707, # 3174 + 324,3622,1601,2546, 140, 459,4068,7343,7344,1365, 839, 272, 978,2257,2572,3409, # 3190 +2128,1363,3623,1423, 697, 100,3071, 48, 70,1231, 495,3114,2193,7345,1294,7346, # 3206 +2079, 462, 586,1042,3246, 853, 256, 988, 185,2377,3410,1698, 434,1084,7347,3411, # 3222 + 314,2615,2775,4308,2330,2331, 569,2280, 637,1816,2518, 757,1162,1878,1616,3412, # 3238 + 287,1577,2115, 768,4309,1671,2854,3511,2519,1321,3737, 909,2413,7348,4069, 933, # 3254 +3738,7349,2052,2356,1222,4310, 765,2414,1322, 786,4311,7350,1919,1462,1677,2895, # 3270 +1699,7351,4312,1424,2437,3115,3624,2590,3316,1774,1940,3413,3880,4070, 309,1369, # 3286 +1130,2812, 364,2230,1653,1299,3881,3512,3882,3883,2646, 525,1085,3021, 902,2000, # 3302 +1475, 964,4313, 421,1844,1415,1057,2281, 940,1364,3116, 376,4314,4315,1381, 7, # 3318 +2520, 983,2378, 336,1710,2675,1845, 321,3414, 559,1131,3022,2742,1808,1132,1313, # 3334 + 265,1481,1857,7352, 352,1203,2813,3247, 167,1089, 420,2814, 776, 792,1724,3513, # 3350 +4071,2438,3248,7353,4072,7354, 446, 229, 333,2743, 901,3739,1200,1557,4316,2647, # 3366 +1920, 395,2744,2676,3740,4073,1835, 125, 916,3178,2616,4317,7355,7356,3741,7357, # 3382 +7358,7359,4318,3117,3625,1133,2547,1757,3415,1510,2313,1409,3514,7360,2145, 438, # 3398 +2591,2896,2379,3317,1068, 958,3023, 461, 311,2855,2677,4074,1915,3179,4075,1978, # 3414 + 383, 750,2745,2617,4076, 274, 539, 385,1278,1442,7361,1154,1964, 384, 561, 210, # 3430 + 98,1295,2548,3515,7362,1711,2415,1482,3416,3884,2897,1257, 129,7363,3742, 642, # 3446 + 523,2776,2777,2648,7364, 141,2231,1333, 68, 176, 441, 876, 907,4077, 603,2592, # 3462 + 710, 171,3417, 404, 549, 18,3118,2393,1410,3626,1666,7365,3516,4319,2898,4320, # 3478 +7366,2973, 368,7367, 146, 366, 99, 871,3627,1543, 748, 807,1586,1185, 22,2258, # 3494 + 379,3743,3180,7368,3181, 505,1941,2618,1991,1382,2314,7369, 380,2357, 218, 702, # 3510 +1817,1248,3418,3024,3517,3318,3249,7370,2974,3628, 930,3250,3744,7371, 59,7372, # 3526 + 585, 601,4078, 497,3419,1112,1314,4321,1801,7373,1223,1472,2174,7374, 749,1836, # 3542 + 690,1899,3745,1772,3885,1476, 429,1043,1790,2232,2116, 917,4079, 447,1086,1629, # 3558 +7375, 556,7376,7377,2020,1654, 844,1090, 105, 550, 966,1758,2815,1008,1782, 686, # 3574 +1095,7378,2282, 793,1602,7379,3518,2593,4322,4080,2933,2297,4323,3746, 980,2496, # 3590 + 544, 353, 527,4324, 908,2678,2899,7380, 381,2619,1942,1348,7381,1341,1252, 560, # 3606 +3072,7382,3420,2856,7383,2053, 973, 886,2080, 143,4325,7384,7385, 157,3886, 496, # 3622 +4081, 57, 840, 540,2038,4326,4327,3421,2117,1445, 970,2259,1748,1965,2081,4082, # 3638 +3119,1234,1775,3251,2816,3629, 773,1206,2129,1066,2039,1326,3887,1738,1725,4083, # 3654 + 279,3120, 51,1544,2594, 423,1578,2130,2066, 173,4328,1879,7386,7387,1583, 264, # 3670 + 610,3630,4329,2439, 280, 154,7388,7389,7390,1739, 338,1282,3073, 693,2857,1411, # 3686 +1074,3747,2440,7391,4330,7392,7393,1240, 952,2394,7394,2900,1538,2679, 685,1483, # 3702 +4084,2468,1436, 953,4085,2054,4331, 671,2395, 79,4086,2441,3252, 608, 567,2680, # 3718 +3422,4087,4088,1691, 393,1261,1791,2396,7395,4332,7396,7397,7398,7399,1383,1672, # 3734 +3748,3182,1464, 522,1119, 661,1150, 216, 675,4333,3888,1432,3519, 609,4334,2681, # 3750 +2397,7400,7401,7402,4089,3025, 0,7403,2469, 315, 231,2442, 301,3319,4335,2380, # 3766 +7404, 233,4090,3631,1818,4336,4337,7405, 96,1776,1315,2082,7406, 257,7407,1809, # 3782 +3632,2709,1139,1819,4091,2021,1124,2163,2778,1777,2649,7408,3074, 363,1655,3183, # 3798 +7409,2975,7410,7411,7412,3889,1567,3890, 718, 103,3184, 849,1443, 341,3320,2934, # 3814 +1484,7413,1712, 127, 67, 339,4092,2398, 679,1412, 821,7414,7415, 834, 738, 351, # 3830 +2976,2146, 846, 235,1497,1880, 418,1992,3749,2710, 186,1100,2147,2746,3520,1545, # 3846 +1355,2935,2858,1377, 583,3891,4093,2573,2977,7416,1298,3633,1078,2549,3634,2358, # 3862 + 78,3750,3751, 267,1289,2099,2001,1594,4094, 348, 369,1274,2194,2175,1837,4338, # 3878 +1820,2817,3635,2747,2283,2002,4339,2936,2748, 144,3321, 882,4340,3892,2749,3423, # 3894 +4341,2901,7417,4095,1726, 320,7418,3893,3026, 788,2978,7419,2818,1773,1327,2859, # 3910 +3894,2819,7420,1306,4342,2003,1700,3752,3521,2359,2650, 787,2022, 506, 824,3636, # 3926 + 534, 323,4343,1044,3322,2023,1900, 946,3424,7421,1778,1500,1678,7422,1881,4344, # 3942 + 165, 243,4345,3637,2521, 123, 683,4096, 764,4346, 36,3895,1792, 589,2902, 816, # 3958 + 626,1667,3027,2233,1639,1555,1622,3753,3896,7423,3897,2860,1370,1228,1932, 891, # 3974 +2083,2903, 304,4097,7424, 292,2979,2711,3522, 691,2100,4098,1115,4347, 118, 662, # 3990 +7425, 611,1156, 854,2381,1316,2861, 2, 386, 515,2904,7426,7427,3253, 868,2234, # 4006 +1486, 855,2651, 785,2212,3028,7428,1040,3185,3523,7429,3121, 448,7430,1525,7431, # 4022 +2164,4348,7432,3754,7433,4099,2820,3524,3122, 503, 818,3898,3123,1568, 814, 676, # 4038 +1444, 306,1749,7434,3755,1416,1030, 197,1428, 805,2821,1501,4349,7435,7436,7437, # 4054 +1993,7438,4350,7439,7440,2195, 13,2779,3638,2980,3124,1229,1916,7441,3756,2131, # 4070 +7442,4100,4351,2399,3525,7443,2213,1511,1727,1120,7444,7445, 646,3757,2443, 307, # 4086 +7446,7447,1595,3186,7448,7449,7450,3639,1113,1356,3899,1465,2522,2523,7451, 519, # 4102 +7452, 128,2132, 92,2284,1979,7453,3900,1512, 342,3125,2196,7454,2780,2214,1980, # 4118 +3323,7455, 290,1656,1317, 789, 827,2360,7456,3758,4352, 562, 581,3901,7457, 401, # 4134 +4353,2248, 94,4354,1399,2781,7458,1463,2024,4355,3187,1943,7459, 828,1105,4101, # 4150 +1262,1394,7460,4102, 605,4356,7461,1783,2862,7462,2822, 819,2101, 578,2197,2937, # 4166 +7463,1502, 436,3254,4103,3255,2823,3902,2905,3425,3426,7464,2712,2315,7465,7466, # 4182 +2332,2067, 23,4357, 193, 826,3759,2102, 699,1630,4104,3075, 390,1793,1064,3526, # 4198 +7467,1579,3076,3077,1400,7468,4105,1838,1640,2863,7469,4358,4359, 137,4106, 598, # 4214 +3078,1966, 780, 104, 974,2938,7470, 278, 899, 253, 402, 572, 504, 493,1339,7471, # 4230 +3903,1275,4360,2574,2550,7472,3640,3029,3079,2249, 565,1334,2713, 863, 41,7473, # 4246 +7474,4361,7475,1657,2333, 19, 463,2750,4107, 606,7476,2981,3256,1087,2084,1323, # 4262 +2652,2982,7477,1631,1623,1750,4108,2682,7478,2864, 791,2714,2653,2334, 232,2416, # 4278 +7479,2983,1498,7480,2654,2620, 755,1366,3641,3257,3126,2025,1609, 119,1917,3427, # 4294 + 862,1026,4109,7481,3904,3760,4362,3905,4363,2260,1951,2470,7482,1125, 817,4110, # 4310 +4111,3906,1513,1766,2040,1487,4112,3030,3258,2824,3761,3127,7483,7484,1507,7485, # 4326 +2683, 733, 40,1632,1106,2865, 345,4113, 841,2524, 230,4364,2984,1846,3259,3428, # 4342 +7486,1263, 986,3429,7487, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562,3907, # 4358 +3908,2939, 967,2751,2655,1349, 592,2133,1692,3324,2985,1994,4114,1679,3909,1901, # 4374 +2185,7488, 739,3642,2715,1296,1290,7489,4115,2198,2199,1921,1563,2595,2551,1870, # 4390 +2752,2986,7490, 435,7491, 343,1108, 596, 17,1751,4365,2235,3430,3643,7492,4366, # 4406 + 294,3527,2940,1693, 477, 979, 281,2041,3528, 643,2042,3644,2621,2782,2261,1031, # 4422 +2335,2134,2298,3529,4367, 367,1249,2552,7493,3530,7494,4368,1283,3325,2004, 240, # 4438 +1762,3326,4369,4370, 836,1069,3128, 474,7495,2148,2525, 268,3531,7496,3188,1521, # 4454 +1284,7497,1658,1546,4116,7498,3532,3533,7499,4117,3327,2684,1685,4118, 961,1673, # 4470 +2622, 190,2005,2200,3762,4371,4372,7500, 570,2497,3645,1490,7501,4373,2623,3260, # 4486 +1956,4374, 584,1514, 396,1045,1944,7502,4375,1967,2444,7503,7504,4376,3910, 619, # 4502 +7505,3129,3261, 215,2006,2783,2553,3189,4377,3190,4378, 763,4119,3763,4379,7506, # 4518 +7507,1957,1767,2941,3328,3646,1174, 452,1477,4380,3329,3130,7508,2825,1253,2382, # 4534 +2186,1091,2285,4120, 492,7509, 638,1169,1824,2135,1752,3911, 648, 926,1021,1324, # 4550 +4381, 520,4382, 997, 847,1007, 892,4383,3764,2262,1871,3647,7510,2400,1784,4384, # 4566 +1952,2942,3080,3191,1728,4121,2043,3648,4385,2007,1701,3131,1551, 30,2263,4122, # 4582 +7511,2026,4386,3534,7512, 501,7513,4123, 594,3431,2165,1821,3535,3432,3536,3192, # 4598 + 829,2826,4124,7514,1680,3132,1225,4125,7515,3262,4387,4126,3133,2336,7516,4388, # 4614 +4127,7517,3912,3913,7518,1847,2383,2596,3330,7519,4389, 374,3914, 652,4128,4129, # 4630 + 375,1140, 798,7520,7521,7522,2361,4390,2264, 546,1659, 138,3031,2445,4391,7523, # 4646 +2250, 612,1848, 910, 796,3765,1740,1371, 825,3766,3767,7524,2906,2554,7525, 692, # 4662 + 444,3032,2624, 801,4392,4130,7526,1491, 244,1053,3033,4131,4132, 340,7527,3915, # 4678 +1041,2987, 293,1168, 87,1357,7528,1539, 959,7529,2236, 721, 694,4133,3768, 219, # 4694 +1478, 644,1417,3331,2656,1413,1401,1335,1389,3916,7530,7531,2988,2362,3134,1825, # 4710 + 730,1515, 184,2827, 66,4393,7532,1660,2943, 246,3332, 378,1457, 226,3433, 975, # 4726 +3917,2944,1264,3537, 674, 696,7533, 163,7534,1141,2417,2166, 713,3538,3333,4394, # 4742 +3918,7535,7536,1186, 15,7537,1079,1070,7538,1522,3193,3539, 276,1050,2716, 758, # 4758 +1126, 653,2945,3263,7539,2337, 889,3540,3919,3081,2989, 903,1250,4395,3920,3434, # 4774 +3541,1342,1681,1718, 766,3264, 286, 89,2946,3649,7540,1713,7541,2597,3334,2990, # 4790 +7542,2947,2215,3194,2866,7543,4396,2498,2526, 181, 387,1075,3921, 731,2187,3335, # 4806 +7544,3265, 310, 313,3435,2299, 770,4134, 54,3034, 189,4397,3082,3769,3922,7545, # 4822 +1230,1617,1849, 355,3542,4135,4398,3336, 111,4136,3650,1350,3135,3436,3035,4137, # 4838 +2149,3266,3543,7546,2784,3923,3924,2991, 722,2008,7547,1071, 247,1207,2338,2471, # 4854 +1378,4399,2009, 864,1437,1214,4400, 373,3770,1142,2216, 667,4401, 442,2753,2555, # 4870 +3771,3925,1968,4138,3267,1839, 837, 170,1107, 934,1336,1882,7548,7549,2118,4139, # 4886 +2828, 743,1569,7550,4402,4140, 582,2384,1418,3437,7551,1802,7552, 357,1395,1729, # 4902 +3651,3268,2418,1564,2237,7553,3083,3772,1633,4403,1114,2085,4141,1532,7554, 482, # 4918 +2446,4404,7555,7556,1492, 833,1466,7557,2717,3544,1641,2829,7558,1526,1272,3652, # 4934 +4142,1686,1794, 416,2556,1902,1953,1803,7559,3773,2785,3774,1159,2316,7560,2867, # 4950 +4405,1610,1584,3036,2419,2754, 443,3269,1163,3136,7561,7562,3926,7563,4143,2499, # 4966 +3037,4406,3927,3137,2103,1647,3545,2010,1872,4144,7564,4145, 431,3438,7565, 250, # 4982 + 97, 81,4146,7566,1648,1850,1558, 160, 848,7567, 866, 740,1694,7568,2201,2830, # 4998 +3195,4147,4407,3653,1687, 950,2472, 426, 469,3196,3654,3655,3928,7569,7570,1188, # 5014 + 424,1995, 861,3546,4148,3775,2202,2685, 168,1235,3547,4149,7571,2086,1674,4408, # 5030 +3337,3270, 220,2557,1009,7572,3776, 670,2992, 332,1208, 717,7573,7574,3548,2447, # 5046 +3929,3338,7575, 513,7576,1209,2868,3339,3138,4409,1080,7577,7578,7579,7580,2527, # 5062 +3656,3549, 815,1587,3930,3931,7581,3550,3439,3777,1254,4410,1328,3038,1390,3932, # 5078 +1741,3933,3778,3934,7582, 236,3779,2448,3271,7583,7584,3657,3780,1273,3781,4411, # 5094 +7585, 308,7586,4412, 245,4413,1851,2473,1307,2575, 430, 715,2136,2449,7587, 270, # 5110 + 199,2869,3935,7588,3551,2718,1753, 761,1754, 725,1661,1840,4414,3440,3658,7589, # 5126 +7590, 587, 14,3272, 227,2598, 326, 480,2265, 943,2755,3552, 291, 650,1883,7591, # 5142 +1702,1226, 102,1547, 62,3441, 904,4415,3442,1164,4150,7592,7593,1224,1548,2756, # 5158 + 391, 498,1493,7594,1386,1419,7595,2055,1177,4416, 813, 880,1081,2363, 566,1145, # 5174 +4417,2286,1001,1035,2558,2599,2238, 394,1286,7596,7597,2068,7598, 86,1494,1730, # 5190 +3936, 491,1588, 745, 897,2948, 843,3340,3937,2757,2870,3273,1768, 998,2217,2069, # 5206 + 397,1826,1195,1969,3659,2993,3341, 284,7599,3782,2500,2137,2119,1903,7600,3938, # 5222 +2150,3939,4151,1036,3443,1904, 114,2559,4152, 209,1527,7601,7602,2949,2831,2625, # 5238 +2385,2719,3139, 812,2560,7603,3274,7604,1559, 737,1884,3660,1210, 885, 28,2686, # 5254 +3553,3783,7605,4153,1004,1779,4418,7606, 346,1981,2218,2687,4419,3784,1742, 797, # 5270 +1642,3940,1933,1072,1384,2151, 896,3941,3275,3661,3197,2871,3554,7607,2561,1958, # 5286 +4420,2450,1785,7608,7609,7610,3942,4154,1005,1308,3662,4155,2720,4421,4422,1528, # 5302 +2600, 161,1178,4156,1982, 987,4423,1101,4157, 631,3943,1157,3198,2420,1343,1241, # 5318 +1016,2239,2562, 372, 877,2339,2501,1160, 555,1934, 911,3944,7611, 466,1170, 169, # 5334 +1051,2907,2688,3663,2474,2994,1182,2011,2563,1251,2626,7612, 992,2340,3444,1540, # 5350 +2721,1201,2070,2401,1996,2475,7613,4424, 528,1922,2188,1503,1873,1570,2364,3342, # 5366 +3276,7614, 557,1073,7615,1827,3445,2087,2266,3140,3039,3084, 767,3085,2786,4425, # 5382 +1006,4158,4426,2341,1267,2176,3664,3199, 778,3945,3200,2722,1597,2657,7616,4427, # 5398 +7617,3446,7618,7619,7620,3277,2689,1433,3278, 131, 95,1504,3946, 723,4159,3141, # 5414 +1841,3555,2758,2189,3947,2027,2104,3665,7621,2995,3948,1218,7622,3343,3201,3949, # 5430 +4160,2576, 248,1634,3785, 912,7623,2832,3666,3040,3786, 654, 53,7624,2996,7625, # 5446 +1688,4428, 777,3447,1032,3950,1425,7626, 191, 820,2120,2833, 971,4429, 931,3202, # 5462 + 135, 664, 783,3787,1997, 772,2908,1935,3951,3788,4430,2909,3203, 282,2723, 640, # 5478 +1372,3448,1127, 922, 325,3344,7627,7628, 711,2044,7629,7630,3952,2219,2787,1936, # 5494 +3953,3345,2220,2251,3789,2300,7631,4431,3790,1258,3279,3954,3204,2138,2950,3955, # 5510 +3956,7632,2221, 258,3205,4432, 101,1227,7633,3280,1755,7634,1391,3281,7635,2910, # 5526 +2056, 893,7636,7637,7638,1402,4161,2342,7639,7640,3206,3556,7641,7642, 878,1325, # 5542 +1780,2788,4433, 259,1385,2577, 744,1183,2267,4434,7643,3957,2502,7644, 684,1024, # 5558 +4162,7645, 472,3557,3449,1165,3282,3958,3959, 322,2152, 881, 455,1695,1152,1340, # 5574 + 660, 554,2153,4435,1058,4436,4163, 830,1065,3346,3960,4437,1923,7646,1703,1918, # 5590 +7647, 932,2268, 122,7648,4438, 947, 677,7649,3791,2627, 297,1905,1924,2269,4439, # 5606 +2317,3283,7650,7651,4164,7652,4165, 84,4166, 112, 989,7653, 547,1059,3961, 701, # 5622 +3558,1019,7654,4167,7655,3450, 942, 639, 457,2301,2451, 993,2951, 407, 851, 494, # 5638 +4440,3347, 927,7656,1237,7657,2421,3348, 573,4168, 680, 921,2911,1279,1874, 285, # 5654 + 790,1448,1983, 719,2167,7658,7659,4441,3962,3963,1649,7660,1541, 563,7661,1077, # 5670 +7662,3349,3041,3451, 511,2997,3964,3965,3667,3966,1268,2564,3350,3207,4442,4443, # 5686 +7663, 535,1048,1276,1189,2912,2028,3142,1438,1373,2834,2952,1134,2012,7664,4169, # 5702 +1238,2578,3086,1259,7665, 700,7666,2953,3143,3668,4170,7667,4171,1146,1875,1906, # 5718 +4444,2601,3967, 781,2422, 132,1589, 203, 147, 273,2789,2402, 898,1786,2154,3968, # 5734 +3969,7668,3792,2790,7669,7670,4445,4446,7671,3208,7672,1635,3793, 965,7673,1804, # 5750 +2690,1516,3559,1121,1082,1329,3284,3970,1449,3794, 65,1128,2835,2913,2759,1590, # 5766 +3795,7674,7675, 12,2658, 45, 976,2579,3144,4447, 517,2528,1013,1037,3209,7676, # 5782 +3796,2836,7677,3797,7678,3452,7679,2602, 614,1998,2318,3798,3087,2724,2628,7680, # 5798 +2580,4172, 599,1269,7681,1810,3669,7682,2691,3088, 759,1060, 489,1805,3351,3285, # 5814 +1358,7683,7684,2386,1387,1215,2629,2252, 490,7685,7686,4173,1759,2387,2343,7687, # 5830 +4448,3799,1907,3971,2630,1806,3210,4449,3453,3286,2760,2344, 874,7688,7689,3454, # 5846 +3670,1858, 91,2914,3671,3042,3800,4450,7690,3145,3972,2659,7691,3455,1202,1403, # 5862 +3801,2954,2529,1517,2503,4451,3456,2504,7692,4452,7693,2692,1885,1495,1731,3973, # 5878 +2365,4453,7694,2029,7695,7696,3974,2693,1216, 237,2581,4174,2319,3975,3802,4454, # 5894 +4455,2694,3560,3457, 445,4456,7697,7698,7699,7700,2761, 61,3976,3672,1822,3977, # 5910 +7701, 687,2045, 935, 925, 405,2660, 703,1096,1859,2725,4457,3978,1876,1367,2695, # 5926 +3352, 918,2105,1781,2476, 334,3287,1611,1093,4458, 564,3146,3458,3673,3353, 945, # 5942 +2631,2057,4459,7702,1925, 872,4175,7703,3459,2696,3089, 349,4176,3674,3979,4460, # 5958 +3803,4177,3675,2155,3980,4461,4462,4178,4463,2403,2046, 782,3981, 400, 251,4179, # 5974 +1624,7704,7705, 277,3676, 299,1265, 476,1191,3804,2121,4180,4181,1109, 205,7706, # 5990 +2582,1000,2156,3561,1860,7707,7708,7709,4464,7710,4465,2565, 107,2477,2157,3982, # 6006 +3460,3147,7711,1533, 541,1301, 158, 753,4182,2872,3562,7712,1696, 370,1088,4183, # 6022 +4466,3563, 579, 327, 440, 162,2240, 269,1937,1374,3461, 968,3043, 56,1396,3090, # 6038 +2106,3288,3354,7713,1926,2158,4467,2998,7714,3564,7715,7716,3677,4468,2478,7717, # 6054 +2791,7718,1650,4469,7719,2603,7720,7721,3983,2661,3355,1149,3356,3984,3805,3985, # 6070 +7722,1076, 49,7723, 951,3211,3289,3290, 450,2837, 920,7724,1811,2792,2366,4184, # 6086 +1908,1138,2367,3806,3462,7725,3212,4470,1909,1147,1518,2423,4471,3807,7726,4472, # 6102 +2388,2604, 260,1795,3213,7727,7728,3808,3291, 708,7729,3565,1704,7730,3566,1351, # 6118 +1618,3357,2999,1886, 944,4185,3358,4186,3044,3359,4187,7731,3678, 422, 413,1714, # 6134 +3292, 500,2058,2345,4188,2479,7732,1344,1910, 954,7733,1668,7734,7735,3986,2404, # 6150 +4189,3567,3809,4190,7736,2302,1318,2505,3091, 133,3092,2873,4473, 629, 31,2838, # 6166 +2697,3810,4474, 850, 949,4475,3987,2955,1732,2088,4191,1496,1852,7737,3988, 620, # 6182 +3214, 981,1242,3679,3360,1619,3680,1643,3293,2139,2452,1970,1719,3463,2168,7738, # 6198 +3215,7739,7740,3361,1828,7741,1277,4476,1565,2047,7742,1636,3568,3093,7743, 869, # 6214 +2839, 655,3811,3812,3094,3989,3000,3813,1310,3569,4477,7744,7745,7746,1733, 558, # 6230 +4478,3681, 335,1549,3045,1756,4192,3682,1945,3464,1829,1291,1192, 470,2726,2107, # 6246 +2793, 913,1054,3990,7747,1027,7748,3046,3991,4479, 982,2662,3362,3148,3465,3216, # 6262 +3217,1946,2794,7749, 571,4480,7750,1830,7751,3570,2583,1523,2424,7752,2089, 984, # 6278 +4481,3683,1959,7753,3684, 852, 923,2795,3466,3685, 969,1519, 999,2048,2320,1705, # 6294 +7754,3095, 615,1662, 151, 597,3992,2405,2321,1049, 275,4482,3686,4193, 568,3687, # 6310 +3571,2480,4194,3688,7755,2425,2270, 409,3218,7756,1566,2874,3467,1002, 769,2840, # 6326 + 194,2090,3149,3689,2222,3294,4195, 628,1505,7757,7758,1763,2177,3001,3993, 521, # 6342 +1161,2584,1787,2203,2406,4483,3994,1625,4196,4197, 412, 42,3096, 464,7759,2632, # 6358 +4484,3363,1760,1571,2875,3468,2530,1219,2204,3814,2633,2140,2368,4485,4486,3295, # 6374 +1651,3364,3572,7760,7761,3573,2481,3469,7762,3690,7763,7764,2271,2091, 460,7765, # 6390 +4487,7766,3002, 962, 588,3574, 289,3219,2634,1116, 52,7767,3047,1796,7768,7769, # 6406 +7770,1467,7771,1598,1143,3691,4198,1984,1734,1067,4488,1280,3365, 465,4489,1572, # 6422 + 510,7772,1927,2241,1812,1644,3575,7773,4490,3692,7774,7775,2663,1573,1534,7776, # 6438 +7777,4199, 536,1807,1761,3470,3815,3150,2635,7778,7779,7780,4491,3471,2915,1911, # 6454 +2796,7781,3296,1122, 377,3220,7782, 360,7783,7784,4200,1529, 551,7785,2059,3693, # 6470 +1769,2426,7786,2916,4201,3297,3097,2322,2108,2030,4492,1404, 136,1468,1479, 672, # 6486 +1171,3221,2303, 271,3151,7787,2762,7788,2049, 678,2727, 865,1947,4493,7789,2013, # 6502 +3995,2956,7790,2728,2223,1397,3048,3694,4494,4495,1735,2917,3366,3576,7791,3816, # 6518 + 509,2841,2453,2876,3817,7792,7793,3152,3153,4496,4202,2531,4497,2304,1166,1010, # 6534 + 552, 681,1887,7794,7795,2957,2958,3996,1287,1596,1861,3154, 358, 453, 736, 175, # 6550 + 478,1117, 905,1167,1097,7796,1853,1530,7797,1706,7798,2178,3472,2287,3695,3473, # 6566 +3577,4203,2092,4204,7799,3367,1193,2482,4205,1458,2190,2205,1862,1888,1421,3298, # 6582 +2918,3049,2179,3474, 595,2122,7800,3997,7801,7802,4206,1707,2636, 223,3696,1359, # 6598 + 751,3098, 183,3475,7803,2797,3003, 419,2369, 633, 704,3818,2389, 241,7804,7805, # 6614 +7806, 838,3004,3697,2272,2763,2454,3819,1938,2050,3998,1309,3099,2242,1181,7807, # 6630 +1136,2206,3820,2370,1446,4207,2305,4498,7808,7809,4208,1055,2605, 484,3698,7810, # 6646 +3999, 625,4209,2273,3368,1499,4210,4000,7811,4001,4211,3222,2274,2275,3476,7812, # 6662 +7813,2764, 808,2606,3699,3369,4002,4212,3100,2532, 526,3370,3821,4213, 955,7814, # 6678 +1620,4214,2637,2427,7815,1429,3700,1669,1831, 994, 928,7816,3578,1260,7817,7818, # 6694 +7819,1948,2288, 741,2919,1626,4215,2729,2455, 867,1184, 362,3371,1392,7820,7821, # 6710 +4003,4216,1770,1736,3223,2920,4499,4500,1928,2698,1459,1158,7822,3050,3372,2877, # 6726 +1292,1929,2506,2842,3701,1985,1187,2071,2014,2607,4217,7823,2566,2507,2169,3702, # 6742 +2483,3299,7824,3703,4501,7825,7826, 666,1003,3005,1022,3579,4218,7827,4502,1813, # 6758 +2253, 574,3822,1603, 295,1535, 705,3823,4219, 283, 858, 417,7828,7829,3224,4503, # 6774 +4504,3051,1220,1889,1046,2276,2456,4004,1393,1599, 689,2567, 388,4220,7830,2484, # 6790 + 802,7831,2798,3824,2060,1405,2254,7832,4505,3825,2109,1052,1345,3225,1585,7833, # 6806 + 809,7834,7835,7836, 575,2730,3477, 956,1552,1469,1144,2323,7837,2324,1560,2457, # 6822 +3580,3226,4005, 616,2207,3155,2180,2289,7838,1832,7839,3478,4506,7840,1319,3704, # 6838 +3705,1211,3581,1023,3227,1293,2799,7841,7842,7843,3826, 607,2306,3827, 762,2878, # 6854 +1439,4221,1360,7844,1485,3052,7845,4507,1038,4222,1450,2061,2638,4223,1379,4508, # 6870 +2585,7846,7847,4224,1352,1414,2325,2921,1172,7848,7849,3828,3829,7850,1797,1451, # 6886 +7851,7852,7853,7854,2922,4006,4007,2485,2346, 411,4008,4009,3582,3300,3101,4509, # 6902 +1561,2664,1452,4010,1375,7855,7856, 47,2959, 316,7857,1406,1591,2923,3156,7858, # 6918 +1025,2141,3102,3157, 354,2731, 884,2224,4225,2407, 508,3706, 726,3583, 996,2428, # 6934 +3584, 729,7859, 392,2191,1453,4011,4510,3707,7860,7861,2458,3585,2608,1675,2800, # 6950 + 919,2347,2960,2348,1270,4511,4012, 73,7862,7863, 647,7864,3228,2843,2255,1550, # 6966 +1346,3006,7865,1332, 883,3479,7866,7867,7868,7869,3301,2765,7870,1212, 831,1347, # 6982 +4226,4512,2326,3830,1863,3053, 720,3831,4513,4514,3832,7871,4227,7872,7873,4515, # 6998 +7874,7875,1798,4516,3708,2609,4517,3586,1645,2371,7876,7877,2924, 669,2208,2665, # 7014 +2429,7878,2879,7879,7880,1028,3229,7881,4228,2408,7882,2256,1353,7883,7884,4518, # 7030 +3158, 518,7885,4013,7886,4229,1960,7887,2142,4230,7888,7889,3007,2349,2350,3833, # 7046 + 516,1833,1454,4014,2699,4231,4519,2225,2610,1971,1129,3587,7890,2766,7891,2961, # 7062 +1422, 577,1470,3008,1524,3373,7892,7893, 432,4232,3054,3480,7894,2586,1455,2508, # 7078 +2226,1972,1175,7895,1020,2732,4015,3481,4520,7896,2733,7897,1743,1361,3055,3482, # 7094 +2639,4016,4233,4521,2290, 895, 924,4234,2170, 331,2243,3056, 166,1627,3057,1098, # 7110 +7898,1232,2880,2227,3374,4522, 657, 403,1196,2372, 542,3709,3375,1600,4235,3483, # 7126 +7899,4523,2767,3230, 576, 530,1362,7900,4524,2533,2666,3710,4017,7901, 842,3834, # 7142 +7902,2801,2031,1014,4018, 213,2700,3376, 665, 621,4236,7903,3711,2925,2430,7904, # 7158 +2431,3302,3588,3377,7905,4237,2534,4238,4525,3589,1682,4239,3484,1380,7906, 724, # 7174 +2277, 600,1670,7907,1337,1233,4526,3103,2244,7908,1621,4527,7909, 651,4240,7910, # 7190 +1612,4241,2611,7911,2844,7912,2734,2307,3058,7913, 716,2459,3059, 174,1255,2701, # 7206 +4019,3590, 548,1320,1398, 728,4020,1574,7914,1890,1197,3060,4021,7915,3061,3062, # 7222 +3712,3591,3713, 747,7916, 635,4242,4528,7917,7918,7919,4243,7920,7921,4529,7922, # 7238 +3378,4530,2432, 451,7923,3714,2535,2072,4244,2735,4245,4022,7924,1764,4531,7925, # 7254 +4246, 350,7926,2278,2390,2486,7927,4247,4023,2245,1434,4024, 488,4532, 458,4248, # 7270 +4025,3715, 771,1330,2391,3835,2568,3159,2159,2409,1553,2667,3160,4249,7928,2487, # 7286 +2881,2612,1720,2702,4250,3379,4533,7929,2536,4251,7930,3231,4252,2768,7931,2015, # 7302 +2736,7932,1155,1017,3716,3836,7933,3303,2308, 201,1864,4253,1430,7934,4026,7935, # 7318 +7936,7937,7938,7939,4254,1604,7940, 414,1865, 371,2587,4534,4535,3485,2016,3104, # 7334 +4536,1708, 960,4255, 887, 389,2171,1536,1663,1721,7941,2228,4027,2351,2926,1580, # 7350 +7942,7943,7944,1744,7945,2537,4537,4538,7946,4539,7947,2073,7948,7949,3592,3380, # 7366 +2882,4256,7950,4257,2640,3381,2802, 673,2703,2460, 709,3486,4028,3593,4258,7951, # 7382 +1148, 502, 634,7952,7953,1204,4540,3594,1575,4541,2613,3717,7954,3718,3105, 948, # 7398 +3232, 121,1745,3837,1110,7955,4259,3063,2509,3009,4029,3719,1151,1771,3838,1488, # 7414 +4030,1986,7956,2433,3487,7957,7958,2093,7959,4260,3839,1213,1407,2803, 531,2737, # 7430 +2538,3233,1011,1537,7960,2769,4261,3106,1061,7961,3720,3721,1866,2883,7962,2017, # 7446 + 120,4262,4263,2062,3595,3234,2309,3840,2668,3382,1954,4542,7963,7964,3488,1047, # 7462 +2704,1266,7965,1368,4543,2845, 649,3383,3841,2539,2738,1102,2846,2669,7966,7967, # 7478 +1999,7968,1111,3596,2962,7969,2488,3842,3597,2804,1854,3384,3722,7970,7971,3385, # 7494 +2410,2884,3304,3235,3598,7972,2569,7973,3599,2805,4031,1460, 856,7974,3600,7975, # 7510 +2885,2963,7976,2886,3843,7977,4264, 632,2510, 875,3844,1697,3845,2291,7978,7979, # 7526 +4544,3010,1239, 580,4545,4265,7980, 914, 936,2074,1190,4032,1039,2123,7981,7982, # 7542 +7983,3386,1473,7984,1354,4266,3846,7985,2172,3064,4033, 915,3305,4267,4268,3306, # 7558 +1605,1834,7986,2739, 398,3601,4269,3847,4034, 328,1912,2847,4035,3848,1331,4270, # 7574 +3011, 937,4271,7987,3602,4036,4037,3387,2160,4546,3388, 524, 742, 538,3065,1012, # 7590 +7988,7989,3849,2461,7990, 658,1103, 225,3850,7991,7992,4547,7993,4548,7994,3236, # 7606 +1243,7995,4038, 963,2246,4549,7996,2705,3603,3161,7997,7998,2588,2327,7999,4550, # 7622 +8000,8001,8002,3489,3307, 957,3389,2540,2032,1930,2927,2462, 870,2018,3604,1746, # 7638 +2770,2771,2434,2463,8003,3851,8004,3723,3107,3724,3490,3390,3725,8005,1179,3066, # 7654 +8006,3162,2373,4272,3726,2541,3163,3108,2740,4039,8007,3391,1556,2542,2292, 977, # 7670 +2887,2033,4040,1205,3392,8008,1765,3393,3164,2124,1271,1689, 714,4551,3491,8009, # 7686 +2328,3852, 533,4273,3605,2181, 617,8010,2464,3308,3492,2310,8011,8012,3165,8013, # 7702 +8014,3853,1987, 618, 427,2641,3493,3394,8015,8016,1244,1690,8017,2806,4274,4552, # 7718 +8018,3494,8019,8020,2279,1576, 473,3606,4275,3395, 972,8021,3607,8022,3067,8023, # 7734 +8024,4553,4554,8025,3727,4041,4042,8026, 153,4555, 356,8027,1891,2888,4276,2143, # 7750 + 408, 803,2352,8028,3854,8029,4277,1646,2570,2511,4556,4557,3855,8030,3856,4278, # 7766 +8031,2411,3396, 752,8032,8033,1961,2964,8034, 746,3012,2465,8035,4279,3728, 698, # 7782 +4558,1892,4280,3608,2543,4559,3609,3857,8036,3166,3397,8037,1823,1302,4043,2706, # 7798 +3858,1973,4281,8038,4282,3167, 823,1303,1288,1236,2848,3495,4044,3398, 774,3859, # 7814 +8039,1581,4560,1304,2849,3860,4561,8040,2435,2161,1083,3237,4283,4045,4284, 344, # 7830 +1173, 288,2311, 454,1683,8041,8042,1461,4562,4046,2589,8043,8044,4563, 985, 894, # 7846 +8045,3399,3168,8046,1913,2928,3729,1988,8047,2110,1974,8048,4047,8049,2571,1194, # 7862 + 425,8050,4564,3169,1245,3730,4285,8051,8052,2850,8053, 636,4565,1855,3861, 760, # 7878 +1799,8054,4286,2209,1508,4566,4048,1893,1684,2293,8055,8056,8057,4287,4288,2210, # 7894 + 479,8058,8059, 832,8060,4049,2489,8061,2965,2490,3731, 990,3109, 627,1814,2642, # 7910 +4289,1582,4290,2125,2111,3496,4567,8062, 799,4291,3170,8063,4568,2112,1737,3013, # 7926 +1018, 543, 754,4292,3309,1676,4569,4570,4050,8064,1489,8065,3497,8066,2614,2889, # 7942 +4051,8067,8068,2966,8069,8070,8071,8072,3171,4571,4572,2182,1722,8073,3238,3239, # 7958 +1842,3610,1715, 481, 365,1975,1856,8074,8075,1962,2491,4573,8076,2126,3611,3240, # 7974 + 433,1894,2063,2075,8077, 602,2741,8078,8079,8080,8081,8082,3014,1628,3400,8083, # 7990 +3172,4574,4052,2890,4575,2512,8084,2544,2772,8085,8086,8087,3310,4576,2891,8088, # 8006 +4577,8089,2851,4578,4579,1221,2967,4053,2513,8090,8091,8092,1867,1989,8093,8094, # 8022 +8095,1895,8096,8097,4580,1896,4054, 318,8098,2094,4055,4293,8099,8100, 485,8101, # 8038 + 938,3862, 553,2670, 116,8102,3863,3612,8103,3498,2671,2773,3401,3311,2807,8104, # 8054 +3613,2929,4056,1747,2930,2968,8105,8106, 207,8107,8108,2672,4581,2514,8109,3015, # 8070 + 890,3614,3864,8110,1877,3732,3402,8111,2183,2353,3403,1652,8112,8113,8114, 941, # 8086 +2294, 208,3499,4057,2019, 330,4294,3865,2892,2492,3733,4295,8115,8116,8117,8118, # 8102 +) + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 0000000..7dbc136 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTW_SM_MODEL + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + super(EUCTWProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-TW" + + @property + def language(self): + return "Taiwan" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 0000000..a0167b3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,283 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 0000000..7cae6b5 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312_SM_MODEL + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + super(GB2312Prober, self).__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "GB2312" + + @property + def language(self): + return "Chinese" diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 0000000..10b8122 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,292 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + +class HebrewProber(CharSetProber): + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xea + NORMAL_KAF = 0xeb + FINAL_MEM = 0xed + NORMAL_MEM = 0xee + FINAL_NUN = 0xef + NORMAL_NUN = 0xf0 + FINAL_PE = 0xf3 + NORMAL_PE = 0xf4 + FINAL_TSADI = 0xf5 + NORMAL_TSADI = 0xf6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self): + super(HebrewProber, self).__init__() + self._final_char_logical_score = None + self._final_char_visual_score = None + self._prev = None + self._before_prev = None + self._logical_prober = None + self._visual_prober = None + self.reset() + + def reset(self): + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = ' ' + self._before_prev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._logical_prober = logicalProber + self._visual_prober = visualProber + + def is_final(self, c): + return c in [self.FINAL_KAF, self.FINAL_MEM, self.FINAL_NUN, + self.FINAL_PE, self.FINAL_TSADI] + + def is_non_final(self, c): + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, + self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str): + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == ' ': + # We stand on a space - a word just ended + if self._before_prev != ' ': + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ((self._before_prev == ' ') and + (self.is_final(self._prev)) and (cur != ' ')): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self): + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = (self._logical_prober.get_confidence() + - self._visual_prober.get_confidence()) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self): + return 'Hebrew' + + @property + def state(self): + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and \ + (self._visual_prober.state == ProbingState.NOT_ME): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 0000000..510b940 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) + + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 0000000..624d534 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1), +(2,4,0,4,0,3,0,4,0,3,4,4,4,2,4,3,3,4,3,2,3,3,4,2,3,3,3,2,4,1,4,3,3,1,5,4,3,4,3,4,3,5,3,0,3,5,4,2,0,3,1,0,3,3,0,3,3,0,1,1,0,4,3,0,3,3,0,4,0,2,0,3,5,5,5,5,4,0,4,1,0,3,4), +(0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2), +(0,4,0,5,0,5,0,4,0,4,5,4,4,3,5,3,5,1,5,3,4,3,4,4,3,4,3,3,4,3,5,4,4,3,5,5,3,5,5,5,3,5,5,3,4,5,5,3,1,3,2,0,3,4,0,4,2,0,4,2,1,5,3,2,3,5,0,4,0,2,0,5,4,4,5,4,5,0,4,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,4,0,3,0,3,0,4,5,4,3,3,3,3,4,3,5,4,4,3,5,4,4,3,4,3,4,4,4,4,5,3,4,4,3,4,5,5,4,5,5,1,4,5,4,3,0,3,3,1,3,3,0,4,4,0,3,3,1,5,3,3,3,5,0,4,0,3,0,4,4,3,4,3,3,0,4,1,1,3,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,4,0,3,0,3,0,4,0,3,4,4,3,2,2,1,2,1,3,1,3,3,3,3,3,4,3,1,3,3,5,3,3,0,4,3,0,5,4,3,3,5,4,4,3,4,4,5,0,1,2,0,1,2,0,2,2,0,1,0,0,5,2,2,1,4,0,3,0,1,0,4,4,3,5,4,3,0,2,1,0,4,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,5,0,4,0,2,1,4,4,2,4,1,4,2,4,2,4,3,3,3,4,3,3,3,3,1,4,2,3,3,3,1,4,4,1,1,1,4,3,3,2,0,2,4,3,2,0,3,3,0,3,1,1,0,0,0,3,3,0,4,2,2,3,4,0,4,0,3,0,4,4,5,3,4,4,0,3,0,0,1,4), +(1,4,0,4,0,4,0,4,0,3,5,4,4,3,4,3,5,4,3,3,4,3,5,4,4,4,4,3,4,2,4,3,3,1,5,4,3,2,4,5,4,5,5,4,4,5,4,4,0,3,2,2,3,3,0,4,3,1,3,2,1,4,3,3,4,5,0,3,0,2,0,4,5,5,4,5,4,0,4,0,0,5,4), +(0,5,0,5,0,4,0,3,0,4,4,3,4,3,3,3,4,0,4,4,4,3,4,3,4,3,3,1,4,2,4,3,4,0,5,4,1,4,5,4,4,5,3,2,4,3,4,3,2,4,1,3,3,3,2,3,2,0,4,3,3,4,3,3,3,4,0,4,0,3,0,4,5,4,4,4,3,0,4,1,0,1,3), +(0,3,1,4,0,3,0,2,0,3,4,4,3,1,4,2,3,3,4,3,4,3,4,3,4,4,3,2,3,1,5,4,4,1,4,4,3,5,4,4,3,5,5,4,3,4,4,3,1,2,3,1,2,2,0,3,2,0,3,1,0,5,3,3,3,4,3,3,3,3,4,4,4,4,5,4,2,0,3,3,2,4,3), +(0,2,0,3,0,1,0,1,0,0,3,2,0,0,2,0,1,0,2,1,3,3,3,1,2,3,1,0,1,0,4,2,1,1,3,3,0,4,3,3,1,4,3,3,0,3,3,2,0,0,0,0,1,0,0,2,0,0,0,0,0,4,1,0,2,3,2,2,2,1,3,3,3,4,4,3,2,0,3,1,0,3,3), +(0,4,0,4,0,3,0,3,0,4,4,4,3,3,3,3,3,3,4,3,4,2,4,3,4,3,3,2,4,3,4,5,4,1,4,5,3,5,4,5,3,5,4,0,3,5,5,3,1,3,3,2,2,3,0,3,4,1,3,3,2,4,3,3,3,4,0,4,0,3,0,4,5,4,4,5,3,0,4,1,0,3,4), +(0,2,0,3,0,3,0,0,0,2,2,2,1,0,1,0,0,0,3,0,3,0,3,0,1,3,1,0,3,1,3,3,3,1,3,3,3,0,1,3,1,3,4,0,0,3,1,1,0,3,2,0,0,0,0,1,3,0,1,0,0,3,3,2,0,3,0,0,0,0,0,3,4,3,4,3,3,0,3,0,0,2,3), +(2,3,0,3,0,2,0,1,0,3,3,4,3,1,3,1,1,1,3,1,4,3,4,3,3,3,0,0,3,1,5,4,3,1,4,3,2,5,5,4,4,4,4,3,3,4,4,4,0,2,1,1,3,2,0,1,2,0,0,1,0,4,1,3,3,3,0,3,0,1,0,4,4,4,5,5,3,0,2,0,0,4,4), +(0,2,0,1,0,3,1,3,0,2,3,3,3,0,3,1,0,0,3,0,3,2,3,1,3,2,1,1,0,0,4,2,1,0,2,3,1,4,3,2,0,4,4,3,1,3,1,3,0,1,0,0,1,0,0,0,1,0,0,0,0,4,1,1,1,2,0,3,0,0,0,3,4,2,4,3,2,0,1,0,0,3,3), +(0,1,0,4,0,5,0,4,0,2,4,4,2,3,3,2,3,3,5,3,3,3,4,3,4,2,3,0,4,3,3,3,4,1,4,3,2,1,5,5,3,4,5,1,3,5,4,2,0,3,3,0,1,3,0,4,2,0,1,3,1,4,3,3,3,3,0,3,0,1,0,3,4,4,4,5,5,0,3,0,1,4,5), +(0,2,0,3,0,3,0,0,0,2,3,1,3,0,4,0,1,1,3,0,3,4,3,2,3,1,0,3,3,2,3,1,3,0,2,3,0,2,1,4,1,2,2,0,0,3,3,0,0,2,0,0,0,1,0,0,0,0,2,2,0,3,2,1,3,3,0,2,0,2,0,0,3,3,1,2,4,0,3,0,2,2,3), +(2,4,0,5,0,4,0,4,0,2,4,4,4,3,4,3,3,3,1,2,4,3,4,3,4,4,5,0,3,3,3,3,2,0,4,3,1,4,3,4,1,4,4,3,3,4,4,3,1,2,3,0,4,2,0,4,1,0,3,3,0,4,3,3,3,4,0,4,0,2,0,3,5,3,4,5,2,0,3,0,0,4,5), +(0,3,0,4,0,1,0,1,0,1,3,2,2,1,3,0,3,0,2,0,2,0,3,0,2,0,0,0,1,0,1,1,0,0,3,1,0,0,0,4,0,3,1,0,2,1,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,2,2,3,1,0,3,0,0,0,1,4,4,4,3,0,0,4,0,0,1,4), +(1,4,1,5,0,3,0,3,0,4,5,4,4,3,5,3,3,4,4,3,4,1,3,3,3,3,2,1,4,1,5,4,3,1,4,4,3,5,4,4,3,5,4,3,3,4,4,4,0,3,3,1,2,3,0,3,1,0,3,3,0,5,4,4,4,4,4,4,3,3,5,4,4,3,3,5,4,0,3,2,0,4,4), +(0,2,0,3,0,1,0,0,0,1,3,3,3,2,4,1,3,0,3,1,3,0,2,2,1,1,0,0,2,0,4,3,1,0,4,3,0,4,4,4,1,4,3,1,1,3,3,1,0,2,0,0,1,3,0,0,0,0,2,0,0,4,3,2,4,3,5,4,3,3,3,4,3,3,4,3,3,0,2,1,0,3,3), +(0,2,0,4,0,3,0,2,0,2,5,5,3,4,4,4,4,1,4,3,3,0,4,3,4,3,1,3,3,2,4,3,0,3,4,3,0,3,4,4,2,4,4,0,4,5,3,3,2,2,1,1,1,2,0,1,5,0,3,3,2,4,3,3,3,4,0,3,0,2,0,4,4,3,5,5,0,0,3,0,2,3,3), +(0,3,0,4,0,3,0,1,0,3,4,3,3,1,3,3,3,0,3,1,3,0,4,3,3,1,1,0,3,0,3,3,0,0,4,4,0,1,5,4,3,3,5,0,3,3,4,3,0,2,0,1,1,1,0,1,3,0,1,2,1,3,3,2,3,3,0,3,0,1,0,1,3,3,4,4,1,0,1,2,2,1,3), +(0,1,0,4,0,4,0,3,0,1,3,3,3,2,3,1,1,0,3,0,3,3,4,3,2,4,2,0,1,0,4,3,2,0,4,3,0,5,3,3,2,4,4,4,3,3,3,4,0,1,3,0,0,1,0,0,1,0,0,0,0,4,2,3,3,3,0,3,0,0,0,4,4,4,5,3,2,0,3,3,0,3,5), +(0,2,0,3,0,0,0,3,0,1,3,0,2,0,0,0,1,0,3,1,1,3,3,0,0,3,0,0,3,0,2,3,1,0,3,1,0,3,3,2,0,4,2,2,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,1,0,1,0,0,0,1,3,1,2,0,0,0,1,0,0,1,4), +(0,3,0,3,0,5,0,1,0,2,4,3,1,3,3,2,1,1,5,2,1,0,5,1,2,0,0,0,3,3,2,2,3,2,4,3,0,0,3,3,1,3,3,0,2,5,3,4,0,3,3,0,1,2,0,2,2,0,3,2,0,2,2,3,3,3,0,2,0,1,0,3,4,4,2,5,4,0,3,0,0,3,5), +(0,3,0,3,0,3,0,1,0,3,3,3,3,0,3,0,2,0,2,1,1,0,2,0,1,0,0,0,2,1,0,0,1,0,3,2,0,0,3,3,1,2,3,1,0,3,3,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,3,1,2,3,0,3,0,1,0,3,2,1,0,4,3,0,1,1,0,3,3), +(0,4,0,5,0,3,0,3,0,4,5,5,4,3,5,3,4,3,5,3,3,2,5,3,4,4,4,3,4,3,4,5,5,3,4,4,3,4,4,5,4,4,4,3,4,5,5,4,2,3,4,2,3,4,0,3,3,1,4,3,2,4,3,3,5,5,0,3,0,3,0,5,5,5,5,4,4,0,4,0,1,4,4), +(0,4,0,4,0,3,0,3,0,3,5,4,4,2,3,2,5,1,3,2,5,1,4,2,3,2,3,3,4,3,3,3,3,2,5,4,1,3,3,5,3,4,4,0,4,4,3,1,1,3,1,0,2,3,0,2,3,0,3,0,0,4,3,1,3,4,0,3,0,2,0,4,4,4,3,4,5,0,4,0,0,3,4), +(0,3,0,3,0,3,1,2,0,3,4,4,3,3,3,0,2,2,4,3,3,1,3,3,3,1,1,0,3,1,4,3,2,3,4,4,2,4,4,4,3,4,4,3,2,4,4,3,1,3,3,1,3,3,0,4,1,0,2,2,1,4,3,2,3,3,5,4,3,3,5,4,4,3,3,0,4,0,3,2,2,4,4), +(0,2,0,1,0,0,0,0,0,1,2,1,3,0,0,0,0,0,2,0,1,2,1,0,0,1,0,0,0,0,3,0,0,1,0,1,1,3,1,0,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,2,2,0,3,4,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1), +(0,1,0,0,0,1,0,0,0,0,4,0,4,1,4,0,3,0,4,0,3,0,4,0,3,0,3,0,4,1,5,1,4,0,0,3,0,5,0,5,2,0,1,0,0,0,2,1,4,0,1,3,0,0,3,0,0,3,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0), +(1,4,0,5,0,3,0,2,0,3,5,4,4,3,4,3,5,3,4,3,3,0,4,3,3,3,3,3,3,2,4,4,3,1,3,4,4,5,4,4,3,4,4,1,3,5,4,3,3,3,1,2,2,3,3,1,3,1,3,3,3,5,3,3,4,5,0,3,0,3,0,3,4,3,4,4,3,0,3,0,2,4,3), +(0,1,0,4,0,0,0,0,0,1,4,0,4,1,4,2,4,0,3,0,1,0,1,0,0,0,0,0,2,0,3,1,1,1,0,3,0,0,0,1,2,1,0,0,1,1,1,1,0,1,0,0,0,1,0,0,3,0,0,0,0,3,2,0,2,2,0,1,0,0,0,2,3,2,3,3,0,0,0,0,2,1,0), +(0,5,1,5,0,3,0,3,0,5,4,4,5,1,5,3,3,0,4,3,4,3,5,3,4,3,3,2,4,3,4,3,3,0,3,3,1,4,4,3,4,4,4,3,4,5,5,3,2,3,1,1,3,3,1,3,1,1,3,3,2,4,5,3,3,5,0,4,0,3,0,4,4,3,5,3,3,0,3,4,0,4,3), +(0,5,0,5,0,3,0,2,0,4,4,3,5,2,4,3,3,3,4,4,4,3,5,3,5,3,3,1,4,0,4,3,3,0,3,3,0,4,4,4,4,5,4,3,3,5,5,3,2,3,1,2,3,2,0,1,0,0,3,2,2,4,4,3,1,5,0,4,0,3,0,4,3,1,3,2,1,0,3,3,0,3,3), +(0,4,0,5,0,5,0,4,0,4,5,5,5,3,4,3,3,2,5,4,4,3,5,3,5,3,4,0,4,3,4,4,3,2,4,4,3,4,5,4,4,5,5,0,3,5,5,4,1,3,3,2,3,3,1,3,1,0,4,3,1,4,4,3,4,5,0,4,0,2,0,4,3,4,4,3,3,0,4,0,0,5,5), +(0,4,0,4,0,5,0,1,1,3,3,4,4,3,4,1,3,0,5,1,3,0,3,1,3,1,1,0,3,0,3,3,4,0,4,3,0,4,4,4,3,4,4,0,3,5,4,1,0,3,0,0,2,3,0,3,1,0,3,1,0,3,2,1,3,5,0,3,0,1,0,3,2,3,3,4,4,0,2,2,0,4,4), +(2,4,0,5,0,4,0,3,0,4,5,5,4,3,5,3,5,3,5,3,5,2,5,3,4,3,3,4,3,4,5,3,2,1,5,4,3,2,3,4,5,3,4,1,2,5,4,3,0,3,3,0,3,2,0,2,3,0,4,1,0,3,4,3,3,5,0,3,0,1,0,4,5,5,5,4,3,0,4,2,0,3,5), +(0,5,0,4,0,4,0,2,0,5,4,3,4,3,4,3,3,3,4,3,4,2,5,3,5,3,4,1,4,3,4,4,4,0,3,5,0,4,4,4,4,5,3,1,3,4,5,3,3,3,3,3,3,3,0,2,2,0,3,3,2,4,3,3,3,5,3,4,1,3,3,5,3,2,0,0,0,0,4,3,1,3,3), +(0,1,0,3,0,3,0,1,0,1,3,3,3,2,3,3,3,0,3,0,0,0,3,1,3,0,0,0,2,2,2,3,0,0,3,2,0,1,2,4,1,3,3,0,0,3,3,3,0,1,0,0,2,1,0,0,3,0,3,1,0,3,0,0,1,3,0,2,0,1,0,3,3,1,3,3,0,0,1,1,0,3,3), +(0,2,0,3,0,2,1,4,0,2,2,3,1,1,3,1,1,0,2,0,3,1,2,3,1,3,0,0,1,0,4,3,2,3,3,3,1,4,2,3,3,3,3,1,0,3,1,4,0,1,1,0,1,2,0,1,1,0,1,1,0,3,1,3,2,2,0,1,0,0,0,2,3,3,3,1,0,0,0,0,0,2,3), +(0,5,0,4,0,5,0,2,0,4,5,5,3,3,4,3,3,1,5,4,4,2,4,4,4,3,4,2,4,3,5,5,4,3,3,4,3,3,5,5,4,5,5,1,3,4,5,3,1,4,3,1,3,3,0,3,3,1,4,3,1,4,5,3,3,5,0,4,0,3,0,5,3,3,1,4,3,0,4,0,1,5,3), +(0,5,0,5,0,4,0,2,0,4,4,3,4,3,3,3,3,3,5,4,4,4,4,4,4,5,3,3,5,2,4,4,4,3,4,4,3,3,4,4,5,5,3,3,4,3,4,3,3,4,3,3,3,3,1,2,2,1,4,3,3,5,4,4,3,4,0,4,0,3,0,4,4,4,4,4,1,0,4,2,0,2,4), +(0,4,0,4,0,3,0,1,0,3,5,2,3,0,3,0,2,1,4,2,3,3,4,1,4,3,3,2,4,1,3,3,3,0,3,3,0,0,3,3,3,5,3,3,3,3,3,2,0,2,0,0,2,0,0,2,0,0,1,0,0,3,1,2,2,3,0,3,0,2,0,4,4,3,3,4,1,0,3,0,0,2,4), +(0,0,0,4,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,3,1,3,0,3,2,0,0,0,1,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0,2), +(0,2,1,3,0,2,0,2,0,3,3,3,3,1,3,1,3,3,3,3,3,3,4,2,2,1,2,1,4,0,4,3,1,3,3,3,2,4,3,5,4,3,3,3,3,3,3,3,0,1,3,0,2,0,0,1,0,0,1,0,0,4,2,0,2,3,0,3,3,0,3,3,4,2,3,1,4,0,1,2,0,2,3), +(0,3,0,3,0,1,0,3,0,2,3,3,3,0,3,1,2,0,3,3,2,3,3,2,3,2,3,1,3,0,4,3,2,0,3,3,1,4,3,3,2,3,4,3,1,3,3,1,1,0,1,1,0,1,0,1,0,1,0,0,0,4,1,1,0,3,0,3,1,0,2,3,3,3,3,3,1,0,0,2,0,3,3), +(0,0,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,0,0,0,0,0,0,0,0,3), +(0,2,0,3,1,3,0,3,0,2,3,3,3,1,3,1,3,1,3,1,3,3,3,1,3,0,2,3,1,1,4,3,3,2,3,3,1,2,2,4,1,3,3,0,1,4,2,3,0,1,3,0,3,0,0,1,3,0,2,0,0,3,3,2,1,3,0,3,0,2,0,3,4,4,4,3,1,0,3,0,0,3,3), +(0,2,0,1,0,2,0,0,0,1,3,2,2,1,3,0,1,1,3,0,3,2,3,1,2,0,2,0,1,1,3,3,3,0,3,3,1,1,2,3,2,3,3,1,2,3,2,0,0,1,0,0,0,0,0,0,3,0,1,0,0,2,1,2,1,3,0,3,0,0,0,3,4,4,4,3,2,0,2,0,0,2,4), +(0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,3), +(0,3,0,3,0,2,0,3,0,3,3,3,2,3,2,2,2,0,3,1,3,3,3,2,3,3,0,0,3,0,3,2,2,0,2,3,1,4,3,4,3,3,2,3,1,5,4,4,0,3,1,2,1,3,0,3,1,1,2,0,2,3,1,3,1,3,0,3,0,1,0,3,3,4,4,2,1,0,2,1,0,2,4), +(0,1,0,3,0,1,0,2,0,1,4,2,5,1,4,0,2,0,2,1,3,1,4,0,2,1,0,0,2,1,4,1,1,0,3,3,0,5,1,3,2,3,3,1,0,3,2,3,0,1,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,3,0,2,0,1,0,3,3,3,4,3,3,0,0,0,0,2,3), +(0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,3), +(0,1,0,3,0,4,0,3,0,2,4,3,1,0,3,2,2,1,3,1,2,2,3,1,1,1,2,1,3,0,1,2,0,1,3,2,1,3,0,5,5,1,0,0,1,3,2,1,0,3,0,0,1,0,0,0,0,0,3,4,0,1,1,1,3,2,0,2,0,1,0,2,3,3,1,2,3,0,1,0,1,0,4), +(0,0,0,1,0,3,0,3,0,2,2,1,0,0,4,0,3,0,3,1,3,0,3,0,3,0,1,0,3,0,3,1,3,0,3,3,0,0,1,2,1,1,1,0,1,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2,2,1,2,0,0,2,0,0,0,0,2,3,3,3,3,0,0,0,0,1,4), +(0,0,0,3,0,3,0,0,0,0,3,1,1,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,3,0,2,0,2,3,0,0,2,2,3,1,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,2,3), +(2,4,0,5,0,5,0,4,0,3,4,3,3,3,4,3,3,3,4,3,4,4,5,4,5,5,5,2,3,0,5,5,4,1,5,4,3,1,5,4,3,4,4,3,3,4,3,3,0,3,2,0,2,3,0,3,0,0,3,3,0,5,3,2,3,3,0,3,0,3,0,3,4,5,4,5,3,0,4,3,0,3,4), +(0,3,0,3,0,3,0,3,0,3,3,4,3,2,3,2,3,0,4,3,3,3,3,3,3,3,3,0,3,2,4,3,3,1,3,4,3,4,4,4,3,4,4,3,2,4,4,1,0,2,0,0,1,1,0,2,0,0,3,1,0,5,3,2,1,3,0,3,0,1,2,4,3,2,4,3,3,0,3,2,0,4,4), +(0,3,0,3,0,1,0,0,0,1,4,3,3,2,3,1,3,1,4,2,3,2,4,2,3,4,3,0,2,2,3,3,3,0,3,3,3,0,3,4,1,3,3,0,3,4,3,3,0,1,1,0,1,0,0,0,4,0,3,0,0,3,1,2,1,3,0,4,0,1,0,4,3,3,4,3,3,0,2,0,0,3,3), +(0,3,0,4,0,1,0,3,0,3,4,3,3,0,3,3,3,1,3,1,3,3,4,3,3,3,0,0,3,1,5,3,3,1,3,3,2,5,4,3,3,4,5,3,2,5,3,4,0,1,0,0,0,0,0,2,0,0,1,1,0,4,2,2,1,3,0,3,0,2,0,4,4,3,5,3,2,0,1,1,0,3,4), +(0,5,0,4,0,5,0,2,0,4,4,3,3,2,3,3,3,1,4,3,4,1,5,3,4,3,4,0,4,2,4,3,4,1,5,4,0,4,4,4,4,5,4,1,3,5,4,2,1,4,1,1,3,2,0,3,1,0,3,2,1,4,3,3,3,4,0,4,0,3,0,4,4,4,3,3,3,0,4,2,0,3,4), +(1,4,0,4,0,3,0,1,0,3,3,3,1,1,3,3,2,2,3,3,1,0,3,2,2,1,2,0,3,1,2,1,2,0,3,2,0,2,2,3,3,4,3,0,3,3,1,2,0,1,1,3,1,2,0,0,3,0,1,1,0,3,2,2,3,3,0,3,0,0,0,2,3,3,4,3,3,0,1,0,0,1,4), +(0,4,0,4,0,4,0,0,0,3,4,4,3,1,4,2,3,2,3,3,3,1,4,3,4,0,3,0,4,2,3,3,2,2,5,4,2,1,3,4,3,4,3,1,3,3,4,2,0,2,1,0,3,3,0,0,2,0,3,1,0,4,4,3,4,3,0,4,0,1,0,2,4,4,4,4,4,0,3,2,0,3,3), +(0,0,0,1,0,4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2), +(0,2,0,3,0,4,0,4,0,1,3,3,3,0,4,0,2,1,2,1,1,1,2,0,3,1,1,0,1,0,3,1,0,0,3,3,2,0,1,1,0,0,0,0,0,1,0,2,0,2,2,0,3,1,0,0,1,0,1,1,0,1,2,0,3,0,0,0,0,1,0,0,3,3,4,3,1,0,1,0,3,0,2), +(0,0,0,3,0,5,0,0,0,0,1,0,2,0,3,1,0,1,3,0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,4,0,0,0,2,3,0,1,4,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,3), +(0,2,0,5,0,5,0,1,0,2,4,3,3,2,5,1,3,2,3,3,3,0,4,1,2,0,3,0,4,0,2,2,1,1,5,3,0,0,1,4,2,3,2,0,3,3,3,2,0,2,4,1,1,2,0,1,1,0,3,1,0,1,3,1,2,3,0,2,0,0,0,1,3,5,4,4,4,0,3,0,0,1,3), +(0,4,0,5,0,4,0,4,0,4,5,4,3,3,4,3,3,3,4,3,4,4,5,3,4,5,4,2,4,2,3,4,3,1,4,4,1,3,5,4,4,5,5,4,4,5,5,5,2,3,3,1,4,3,1,3,3,0,3,3,1,4,3,4,4,4,0,3,0,4,0,3,3,4,4,5,0,0,4,3,0,4,5), +(0,4,0,4,0,3,0,3,0,3,4,4,4,3,3,2,4,3,4,3,4,3,5,3,4,3,2,1,4,2,4,4,3,1,3,4,2,4,5,5,3,4,5,4,1,5,4,3,0,3,2,2,3,2,1,3,1,0,3,3,3,5,3,3,3,5,4,4,2,3,3,4,3,3,3,2,1,0,3,2,1,4,3), +(0,4,0,5,0,4,0,3,0,3,5,5,3,2,4,3,4,0,5,4,4,1,4,4,4,3,3,3,4,3,5,5,2,3,3,4,1,2,5,5,3,5,5,2,3,5,5,4,0,3,2,0,3,3,1,1,5,1,4,1,0,4,3,2,3,5,0,4,0,3,0,5,4,3,4,3,0,0,4,1,0,4,4), +(1,3,0,4,0,2,0,2,0,2,5,5,3,3,3,3,3,0,4,2,3,4,4,4,3,4,0,0,3,4,5,4,3,3,3,3,2,5,5,4,5,5,5,4,3,5,5,5,1,3,1,0,1,0,0,3,2,0,4,2,0,5,2,3,2,4,1,3,0,3,0,4,5,4,5,4,3,0,4,2,0,5,4), +(0,3,0,4,0,5,0,3,0,3,4,4,3,2,3,2,3,3,3,3,3,2,4,3,3,2,2,0,3,3,3,3,3,1,3,3,3,0,4,4,3,4,4,1,1,4,4,2,0,3,1,0,1,1,0,4,1,0,2,3,1,3,3,1,3,4,0,3,0,1,0,3,1,3,0,0,1,0,2,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,3,0,2,0,3,0,1,5,4,3,3,3,1,4,2,1,2,3,4,4,2,4,4,5,0,3,1,4,3,4,0,4,3,3,3,2,3,2,5,3,4,3,2,2,3,0,0,3,0,2,1,0,1,2,0,0,0,0,2,1,1,3,1,0,2,0,4,0,3,4,4,4,5,2,0,2,0,0,1,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,4,2,1,1,0,1,0,3,2,0,0,3,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,2,0,0,0,1,4,0,4,2,1,0,0,0,0,0,1), +(0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,3,1,0,0,0,2,0,2,1,0,0,1,2,1,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,2), +(0,4,0,4,0,4,0,3,0,4,4,3,4,2,4,3,2,0,4,4,4,3,5,3,5,3,3,2,4,2,4,3,4,3,1,4,0,2,3,4,4,4,3,3,3,4,4,4,3,4,1,3,4,3,2,1,2,1,3,3,3,4,4,3,3,5,0,4,0,3,0,4,3,3,3,2,1,0,3,0,0,3,3), +(0,4,0,3,0,3,0,3,0,3,5,5,3,3,3,3,4,3,4,3,3,3,4,4,4,3,3,3,3,4,3,5,3,3,1,3,2,4,5,5,5,5,4,3,4,5,5,3,2,2,3,3,3,3,2,3,3,1,2,3,2,4,3,3,3,4,0,4,0,2,0,4,3,2,2,1,2,0,3,0,0,4,1), +) + +class JapaneseContextAnalysis(object): + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self): + self._total_rel = None + self._rel_sample = None + self._need_to_skip_char_num = None + self._last_char_order = None + self._done = None + self.reset() + + def reset(self): + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str, num_bytes): + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i:i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[jp2CharContext[self._last_char_order][order]] += 1 + self._last_char_order = order + + def got_enough_data(self): + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + else: + return self.DONT_KNOW + + def get_order(self, byte_str): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self): + super(SJISContextAnalysis, self).__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self): + return self._charset_name + + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len + + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 0000000..77bf9a3 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +BULGARIAN_LANG_MODEL = { + 63: { # 'e' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 45: { # '\xad' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 31: { # 'А' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 2, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 0, # 'и' + 26: 2, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 32: { # 'Б' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 2, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 35: { # 'В' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 2, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 43: { # 'Г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 37: { # 'Д' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 2, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 44: { # 'Е' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 2, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 0, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 55: { # 'Ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 47: { # 'З' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 40: { # 'И' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 2, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 3, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 59: { # 'Й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 33: { # 'К' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 46: { # 'Л' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 38: { # 'М' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 36: { # 'Н' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 41: { # 'О' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 30: { # 'П' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 2, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 39: { # 'Р' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 28: { # 'С' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 3, # 'А' + 32: 2, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 34: { # 'Т' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 51: { # 'У' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 48: { # 'Ф' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 49: { # 'Х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 53: { # 'Ц' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 50: { # 'Ч' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 54: { # 'Ш' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 57: { # 'Щ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 61: { # 'Ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 60: { # 'Ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 2, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 56: { # 'Я' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 1: { # 'а' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 18: { # 'б' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 3, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 9: { # 'в' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 20: { # 'г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 11: { # 'д' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 3: { # 'е' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 23: { # 'ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 15: { # 'з' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 2: { # 'и' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 26: { # 'й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 12: { # 'к' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 10: { # 'л' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 3, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 14: { # 'м' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 6: { # 'н' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 2, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 4: { # 'о' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 13: { # 'п' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 7: { # 'р' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 3, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 8: { # 'с' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 5: { # 'т' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 19: { # 'у' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 2, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 29: { # 'ф' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 2, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 25: { # 'х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 22: { # 'ц' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 21: { # 'ч' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 27: { # 'ш' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 24: { # 'щ' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 17: { # 'ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 52: { # 'ь' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 42: { # 'ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 16: { # 'я' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 1, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 3, # 'х' + 22: 2, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 58: { # 'є' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 62: { # '№' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 194, # '\x80' + 129: 195, # '\x81' + 130: 196, # '\x82' + 131: 197, # '\x83' + 132: 198, # '\x84' + 133: 199, # '\x85' + 134: 200, # '\x86' + 135: 201, # '\x87' + 136: 202, # '\x88' + 137: 203, # '\x89' + 138: 204, # '\x8a' + 139: 205, # '\x8b' + 140: 206, # '\x8c' + 141: 207, # '\x8d' + 142: 208, # '\x8e' + 143: 209, # '\x8f' + 144: 210, # '\x90' + 145: 211, # '\x91' + 146: 212, # '\x92' + 147: 213, # '\x93' + 148: 214, # '\x94' + 149: 215, # '\x95' + 150: 216, # '\x96' + 151: 217, # '\x97' + 152: 218, # '\x98' + 153: 219, # '\x99' + 154: 220, # '\x9a' + 155: 221, # '\x9b' + 156: 222, # '\x9c' + 157: 223, # '\x9d' + 158: 224, # '\x9e' + 159: 225, # '\x9f' + 160: 81, # '\xa0' + 161: 226, # 'Ё' + 162: 227, # 'Ђ' + 163: 228, # 'Ѓ' + 164: 229, # 'Є' + 165: 230, # 'Ѕ' + 166: 105, # 'І' + 167: 231, # 'Ї' + 168: 232, # 'Ј' + 169: 233, # 'Љ' + 170: 234, # 'Њ' + 171: 235, # 'Ћ' + 172: 236, # 'Ќ' + 173: 45, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 31, # 'А' + 177: 32, # 'Б' + 178: 35, # 'В' + 179: 43, # 'Г' + 180: 37, # 'Д' + 181: 44, # 'Е' + 182: 55, # 'Ж' + 183: 47, # 'З' + 184: 40, # 'И' + 185: 59, # 'Й' + 186: 33, # 'К' + 187: 46, # 'Л' + 188: 38, # 'М' + 189: 36, # 'Н' + 190: 41, # 'О' + 191: 30, # 'П' + 192: 39, # 'Р' + 193: 28, # 'С' + 194: 34, # 'Т' + 195: 51, # 'У' + 196: 48, # 'Ф' + 197: 49, # 'Х' + 198: 53, # 'Ц' + 199: 50, # 'Ч' + 200: 54, # 'Ш' + 201: 57, # 'Щ' + 202: 61, # 'Ъ' + 203: 239, # 'Ы' + 204: 67, # 'Ь' + 205: 240, # 'Э' + 206: 60, # 'Ю' + 207: 56, # 'Я' + 208: 1, # 'а' + 209: 18, # 'б' + 210: 9, # 'в' + 211: 20, # 'г' + 212: 11, # 'д' + 213: 3, # 'е' + 214: 23, # 'ж' + 215: 15, # 'з' + 216: 2, # 'и' + 217: 26, # 'й' + 218: 12, # 'к' + 219: 10, # 'л' + 220: 14, # 'м' + 221: 6, # 'н' + 222: 4, # 'о' + 223: 13, # 'п' + 224: 7, # 'р' + 225: 8, # 'с' + 226: 5, # 'т' + 227: 19, # 'у' + 228: 29, # 'ф' + 229: 25, # 'х' + 230: 22, # 'ц' + 231: 21, # 'ч' + 232: 27, # 'ш' + 233: 24, # 'щ' + 234: 17, # 'ъ' + 235: 75, # 'ы' + 236: 52, # 'ь' + 237: 241, # 'э' + 238: 42, # 'ю' + 239: 16, # 'я' + 240: 62, # '№' + 241: 242, # 'ё' + 242: 243, # 'ђ' + 243: 244, # 'ѓ' + 244: 58, # 'є' + 245: 245, # 'ѕ' + 246: 98, # 'і' + 247: 246, # 'ї' + 248: 247, # 'ј' + 249: 248, # 'љ' + 250: 249, # 'њ' + 251: 250, # 'ћ' + 252: 251, # 'ќ' + 253: 91, # '§' + 254: 252, # 'ў' + 255: 253, # 'џ' +} + +ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-5', + language='Bulgarian', + char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet='АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя') + +WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 206, # 'Ђ' + 129: 207, # 'Ѓ' + 130: 208, # '‚' + 131: 209, # 'ѓ' + 132: 210, # '„' + 133: 211, # '…' + 134: 212, # '†' + 135: 213, # '‡' + 136: 120, # '€' + 137: 214, # '‰' + 138: 215, # 'Љ' + 139: 216, # '‹' + 140: 217, # 'Њ' + 141: 218, # 'Ќ' + 142: 219, # 'Ћ' + 143: 220, # 'Џ' + 144: 221, # 'ђ' + 145: 78, # '‘' + 146: 64, # '’' + 147: 83, # '“' + 148: 121, # '”' + 149: 98, # '•' + 150: 117, # '–' + 151: 105, # '—' + 152: 222, # None + 153: 223, # '™' + 154: 224, # 'љ' + 155: 225, # '›' + 156: 226, # 'њ' + 157: 227, # 'ќ' + 158: 228, # 'ћ' + 159: 229, # 'џ' + 160: 88, # '\xa0' + 161: 230, # 'Ў' + 162: 231, # 'ў' + 163: 232, # 'Ј' + 164: 233, # '¤' + 165: 122, # 'Ґ' + 166: 89, # '¦' + 167: 106, # '§' + 168: 234, # 'Ё' + 169: 235, # '©' + 170: 236, # 'Є' + 171: 237, # '«' + 172: 238, # '¬' + 173: 45, # '\xad' + 174: 239, # '®' + 175: 240, # 'Ї' + 176: 73, # '°' + 177: 80, # '±' + 178: 118, # 'І' + 179: 114, # 'і' + 180: 241, # 'ґ' + 181: 242, # 'µ' + 182: 243, # '¶' + 183: 244, # '·' + 184: 245, # 'ё' + 185: 62, # '№' + 186: 58, # 'є' + 187: 246, # '»' + 188: 247, # 'ј' + 189: 248, # 'Ѕ' + 190: 249, # 'ѕ' + 191: 250, # 'ї' + 192: 31, # 'А' + 193: 32, # 'Б' + 194: 35, # 'В' + 195: 43, # 'Г' + 196: 37, # 'Д' + 197: 44, # 'Е' + 198: 55, # 'Ж' + 199: 47, # 'З' + 200: 40, # 'И' + 201: 59, # 'Й' + 202: 33, # 'К' + 203: 46, # 'Л' + 204: 38, # 'М' + 205: 36, # 'Н' + 206: 41, # 'О' + 207: 30, # 'П' + 208: 39, # 'Р' + 209: 28, # 'С' + 210: 34, # 'Т' + 211: 51, # 'У' + 212: 48, # 'Ф' + 213: 49, # 'Х' + 214: 53, # 'Ц' + 215: 50, # 'Ч' + 216: 54, # 'Ш' + 217: 57, # 'Щ' + 218: 61, # 'Ъ' + 219: 251, # 'Ы' + 220: 67, # 'Ь' + 221: 252, # 'Э' + 222: 60, # 'Ю' + 223: 56, # 'Я' + 224: 1, # 'а' + 225: 18, # 'б' + 226: 9, # 'в' + 227: 20, # 'г' + 228: 11, # 'д' + 229: 3, # 'е' + 230: 23, # 'ж' + 231: 15, # 'з' + 232: 2, # 'и' + 233: 26, # 'й' + 234: 12, # 'к' + 235: 10, # 'л' + 236: 14, # 'м' + 237: 6, # 'н' + 238: 4, # 'о' + 239: 13, # 'п' + 240: 7, # 'р' + 241: 8, # 'с' + 242: 5, # 'т' + 243: 19, # 'у' + 244: 29, # 'ф' + 245: 25, # 'х' + 246: 22, # 'ц' + 247: 21, # 'ч' + 248: 27, # 'ш' + 249: 24, # 'щ' + 250: 17, # 'ъ' + 251: 75, # 'ы' + 252: 52, # 'ь' + 253: 253, # 'э' + 254: 42, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1251', + language='Bulgarian', + char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet='АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 0000000..4b8698d --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4398 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +GREEK_LANG_MODEL = { + 60: { # 'e' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 55: { # 'o' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 58: { # 't' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 1, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 36: { # '·' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 61: { # 'Ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 1, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 1, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 46: { # 'Έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 1, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 54: { # 'Ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 31: { # 'Α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 2, # 'Β' + 43: 2, # 'Γ' + 41: 1, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 51: { # 'Β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 1, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 43: { # 'Γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 1, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 41: { # 'Δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 34: { # 'Ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 0, # 'ώ' + }, + 40: { # 'Η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 52: { # 'Θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 1, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 47: { # 'Ι' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 1, # 'Β' + 43: 1, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 1, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 44: { # 'Κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 1, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 53: { # 'Λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 1, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 38: { # 'Μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 2, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 2, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 49: { # 'Ν' + 60: 2, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 59: { # 'Ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 39: { # 'Ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 1, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 2, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 35: { # 'Π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 1, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 48: { # 'Ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 37: { # 'Σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 2, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 33: { # 'Τ' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 2, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 45: { # 'Υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 2, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 1, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 56: { # 'Φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 1, # 'ώ' + }, + 50: { # 'Χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 1, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 57: { # 'Ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 17: { # 'ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 18: { # 'έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 22: { # 'ή' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 15: { # 'ί' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 1: { # 'α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 3, # 'ζ' + 13: 1, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 29: { # 'β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 20: { # 'γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 21: { # 'δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 3: { # 'ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 32: { # 'ζ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 13: { # 'η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 25: { # 'θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 5: { # 'ι' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 11: { # 'κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 16: { # 'λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 1, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 10: { # 'μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 3, # 'φ' + 23: 0, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 6: { # 'ν' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 30: { # 'ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 1, # 'ώ' + }, + 4: { # 'ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 9: { # 'π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 8: { # 'ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 14: { # 'ς' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 7: { # 'σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 2: { # 'τ' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 12: { # 'υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 28: { # 'φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 1, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 23: { # 'χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 42: { # 'ψ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 24: { # 'ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 1, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 19: { # 'ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 1, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 26: { # 'ύ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 27: { # 'ώ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 1, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 1, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1253_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '€' + 129: 255, # None + 130: 255, # '‚' + 131: 255, # 'ƒ' + 132: 255, # '„' + 133: 255, # '…' + 134: 255, # '†' + 135: 255, # '‡' + 136: 255, # None + 137: 255, # '‰' + 138: 255, # None + 139: 255, # '‹' + 140: 255, # None + 141: 255, # None + 142: 255, # None + 143: 255, # None + 144: 255, # None + 145: 255, # '‘' + 146: 255, # '’' + 147: 255, # '“' + 148: 255, # '”' + 149: 255, # '•' + 150: 255, # '–' + 151: 255, # '—' + 152: 255, # None + 153: 255, # '™' + 154: 255, # None + 155: 255, # '›' + 156: 255, # None + 157: 255, # None + 158: 255, # None + 159: 255, # None + 160: 253, # '\xa0' + 161: 233, # '΅' + 162: 61, # 'Ά' + 163: 253, # '£' + 164: 253, # '¤' + 165: 253, # '¥' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # None + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # '®' + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 253, # 'µ' + 182: 253, # '¶' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel(charset_name='windows-1253', + language='Greek', + char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet='ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ') + +ISO_8859_7_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '\x80' + 129: 255, # '\x81' + 130: 255, # '\x82' + 131: 255, # '\x83' + 132: 255, # '\x84' + 133: 255, # '\x85' + 134: 255, # '\x86' + 135: 255, # '\x87' + 136: 255, # '\x88' + 137: 255, # '\x89' + 138: 255, # '\x8a' + 139: 255, # '\x8b' + 140: 255, # '\x8c' + 141: 255, # '\x8d' + 142: 255, # '\x8e' + 143: 255, # '\x8f' + 144: 255, # '\x90' + 145: 255, # '\x91' + 146: 255, # '\x92' + 147: 255, # '\x93' + 148: 255, # '\x94' + 149: 255, # '\x95' + 150: 255, # '\x96' + 151: 255, # '\x97' + 152: 255, # '\x98' + 153: 255, # '\x99' + 154: 255, # '\x9a' + 155: 255, # '\x9b' + 156: 255, # '\x9c' + 157: 255, # '\x9d' + 158: 255, # '\x9e' + 159: 255, # '\x9f' + 160: 253, # '\xa0' + 161: 233, # '‘' + 162: 90, # '’' + 163: 253, # '£' + 164: 253, # '€' + 165: 253, # '₯' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # 'ͺ' + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # None + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 248, # '΅' + 182: 61, # 'Ά' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-7', + language='Greek', + char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet='ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 0000000..f1a8c05 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HEBREW_LANG_MODEL = { + 50: { # 'a' + 50: 0, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 0, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 60: { # 'c' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 61: { # 'd' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 42: { # 'e' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 2, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 53: { # 'i' + 50: 1, # 'a' + 60: 2, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 0, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 56: { # 'l' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 2, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 54: { # 'n' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 49: { # 'o' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 51: { # 'r' + 50: 2, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 43: { # 's' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 2, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 44: { # 't' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 63: { # 'u' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 34: { # '\xa0' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 2, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 55: { # '´' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 48: { # '¼' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 39: { # '½' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 57: { # '¾' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 30: { # 'ְ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 59: { # 'ֱ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 41: { # 'ֲ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 33: { # 'ִ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 37: { # 'ֵ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 1, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 36: { # 'ֶ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 2, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 31: { # 'ַ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 29: { # 'ָ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 35: { # 'ֹ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 62: { # 'ֻ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 28: { # 'ּ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 3, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 3, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 2, # 'ׁ' + 45: 1, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 1, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 38: { # 'ׁ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 45: { # 'ׂ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 9: { # 'א' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 2, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 8: { # 'ב' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 1, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 20: { # 'ג' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 16: { # 'ד' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 3: { # 'ה' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 2: { # 'ו' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 3, # 'ֹ' + 62: 0, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 24: { # 'ז' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 1, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 14: { # 'ח' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 1, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 22: { # 'ט' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 1, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 2, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 1: { # 'י' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 25: { # 'ך' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 15: { # 'כ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 4: { # 'ל' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 11: { # 'ם' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 6: { # 'מ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 23: { # 'ן' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 12: { # 'נ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 19: { # 'ס' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 2, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 13: { # 'ע' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 1, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 26: { # 'ף' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 18: { # 'פ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 27: { # 'ץ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 21: { # 'צ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 1, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 0, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 17: { # 'ק' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 7: { # 'ר' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 10: { # 'ש' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 3, # 'ׁ' + 45: 2, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 5: { # 'ת' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 1, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 32: { # '–' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 52: { # '’' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 47: { # '“' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 46: { # '”' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 58: { # '†' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 2, # '†' + 40: 0, # '…' + }, + 40: { # '…' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 69, # 'A' + 66: 91, # 'B' + 67: 79, # 'C' + 68: 80, # 'D' + 69: 92, # 'E' + 70: 89, # 'F' + 71: 97, # 'G' + 72: 90, # 'H' + 73: 68, # 'I' + 74: 111, # 'J' + 75: 112, # 'K' + 76: 82, # 'L' + 77: 73, # 'M' + 78: 95, # 'N' + 79: 85, # 'O' + 80: 78, # 'P' + 81: 121, # 'Q' + 82: 86, # 'R' + 83: 71, # 'S' + 84: 67, # 'T' + 85: 102, # 'U' + 86: 107, # 'V' + 87: 84, # 'W' + 88: 114, # 'X' + 89: 103, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 50, # 'a' + 98: 74, # 'b' + 99: 60, # 'c' + 100: 61, # 'd' + 101: 42, # 'e' + 102: 76, # 'f' + 103: 70, # 'g' + 104: 64, # 'h' + 105: 53, # 'i' + 106: 105, # 'j' + 107: 93, # 'k' + 108: 56, # 'l' + 109: 65, # 'm' + 110: 54, # 'n' + 111: 49, # 'o' + 112: 66, # 'p' + 113: 110, # 'q' + 114: 51, # 'r' + 115: 43, # 's' + 116: 44, # 't' + 117: 63, # 'u' + 118: 81, # 'v' + 119: 77, # 'w' + 120: 98, # 'x' + 121: 75, # 'y' + 122: 108, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 124, # '€' + 129: 202, # None + 130: 203, # '‚' + 131: 204, # 'ƒ' + 132: 205, # '„' + 133: 40, # '…' + 134: 58, # '†' + 135: 206, # '‡' + 136: 207, # 'ˆ' + 137: 208, # '‰' + 138: 209, # None + 139: 210, # '‹' + 140: 211, # None + 141: 212, # None + 142: 213, # None + 143: 214, # None + 144: 215, # None + 145: 83, # '‘' + 146: 52, # '’' + 147: 47, # '“' + 148: 46, # '”' + 149: 72, # '•' + 150: 32, # '–' + 151: 94, # '—' + 152: 216, # '˜' + 153: 113, # '™' + 154: 217, # None + 155: 109, # '›' + 156: 218, # None + 157: 219, # None + 158: 220, # None + 159: 221, # None + 160: 34, # '\xa0' + 161: 116, # '¡' + 162: 222, # '¢' + 163: 118, # '£' + 164: 100, # '₪' + 165: 223, # '¥' + 166: 224, # '¦' + 167: 117, # '§' + 168: 119, # '¨' + 169: 104, # '©' + 170: 125, # '×' + 171: 225, # '«' + 172: 226, # '¬' + 173: 87, # '\xad' + 174: 99, # '®' + 175: 227, # '¯' + 176: 106, # '°' + 177: 122, # '±' + 178: 123, # '²' + 179: 228, # '³' + 180: 55, # '´' + 181: 229, # 'µ' + 182: 230, # '¶' + 183: 101, # '·' + 184: 231, # '¸' + 185: 232, # '¹' + 186: 120, # '÷' + 187: 233, # '»' + 188: 48, # '¼' + 189: 39, # '½' + 190: 57, # '¾' + 191: 234, # '¿' + 192: 30, # 'ְ' + 193: 59, # 'ֱ' + 194: 41, # 'ֲ' + 195: 88, # 'ֳ' + 196: 33, # 'ִ' + 197: 37, # 'ֵ' + 198: 36, # 'ֶ' + 199: 31, # 'ַ' + 200: 29, # 'ָ' + 201: 35, # 'ֹ' + 202: 235, # None + 203: 62, # 'ֻ' + 204: 28, # 'ּ' + 205: 236, # 'ֽ' + 206: 126, # '־' + 207: 237, # 'ֿ' + 208: 238, # '׀' + 209: 38, # 'ׁ' + 210: 45, # 'ׂ' + 211: 239, # '׃' + 212: 240, # 'װ' + 213: 241, # 'ױ' + 214: 242, # 'ײ' + 215: 243, # '׳' + 216: 127, # '״' + 217: 244, # None + 218: 245, # None + 219: 246, # None + 220: 247, # None + 221: 248, # None + 222: 249, # None + 223: 250, # None + 224: 9, # 'א' + 225: 8, # 'ב' + 226: 20, # 'ג' + 227: 16, # 'ד' + 228: 3, # 'ה' + 229: 2, # 'ו' + 230: 24, # 'ז' + 231: 14, # 'ח' + 232: 22, # 'ט' + 233: 1, # 'י' + 234: 25, # 'ך' + 235: 15, # 'כ' + 236: 4, # 'ל' + 237: 11, # 'ם' + 238: 6, # 'מ' + 239: 23, # 'ן' + 240: 12, # 'נ' + 241: 19, # 'ס' + 242: 13, # 'ע' + 243: 26, # 'ף' + 244: 18, # 'פ' + 245: 27, # 'ץ' + 246: 21, # 'צ' + 247: 17, # 'ק' + 248: 7, # 'ר' + 249: 10, # 'ש' + 250: 5, # 'ת' + 251: 251, # None + 252: 252, # None + 253: 128, # '\u200e' + 254: 96, # '\u200f' + 255: 253, # None +} + +WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel(charset_name='windows-1255', + language='Hebrew', + char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, + language_model=HEBREW_LANG_MODEL, + typical_positive_ratio=0.984004, + keep_ascii_letters=False, + alphabet='אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 0000000..d2639fb --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HUNGARIAN_LANG_MODEL = { + 28: { # 'A' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 2, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 40: { # 'B' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 3, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 54: { # 'C' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 3, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 45: { # 'D' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 32: { # 'E' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 50: { # 'F' + 28: 1, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 0, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 49: { # 'G' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 38: { # 'H' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 39: { # 'I' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 53: { # 'J' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 36: { # 'K' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 2, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 41: { # 'L' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 34: { # 'M' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 35: { # 'N' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 47: { # 'O' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 46: { # 'P' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 43: { # 'R' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 2, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 2, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 33: { # 'S' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 3, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 37: { # 'T' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 57: { # 'U' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 48: { # 'V' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 55: { # 'Y' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 52: { # 'Z' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 2: { # 'a' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 18: { # 'b' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 26: { # 'c' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 17: { # 'd' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 1: { # 'e' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 2, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 27: { # 'f' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 3, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 12: { # 'g' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 20: { # 'h' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 9: { # 'i' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 1, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 22: { # 'j' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 7: { # 'k' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 3, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 6: { # 'l' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 3, # 'ő' + 56: 1, # 'ű' + }, + 13: { # 'm' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 4: { # 'n' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 1, # 'x' + 16: 3, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 8: { # 'o' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 23: { # 'p' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 10: { # 'r' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 2, # 'ű' + }, + 5: { # 's' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 3: { # 't' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 3, # 'ő' + 56: 2, # 'ű' + }, + 21: { # 'u' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 19: { # 'v' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 62: { # 'x' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 16: { # 'y' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 11: { # 'z' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 51: { # 'Á' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 44: { # 'É' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 61: { # 'Í' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 58: { # 'Ó' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 2, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 59: { # 'Ö' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 60: { # 'Ú' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 2, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 63: { # 'Ü' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 14: { # 'á' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 15: { # 'é' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 30: { # 'í' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 25: { # 'ó' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 24: { # 'ö' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 31: { # 'ú' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 3, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 29: { # 'ü' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 42: { # 'ő' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 56: { # 'ű' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 72, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 161, # '€' + 129: 162, # None + 130: 163, # '‚' + 131: 164, # None + 132: 165, # '„' + 133: 166, # '…' + 134: 167, # '†' + 135: 168, # '‡' + 136: 169, # None + 137: 170, # '‰' + 138: 171, # 'Š' + 139: 172, # '‹' + 140: 173, # 'Ś' + 141: 174, # 'Ť' + 142: 175, # 'Ž' + 143: 176, # 'Ź' + 144: 177, # None + 145: 178, # '‘' + 146: 179, # '’' + 147: 180, # '“' + 148: 78, # '”' + 149: 181, # '•' + 150: 69, # '–' + 151: 182, # '—' + 152: 183, # None + 153: 184, # '™' + 154: 185, # 'š' + 155: 186, # '›' + 156: 187, # 'ś' + 157: 188, # 'ť' + 158: 189, # 'ž' + 159: 190, # 'ź' + 160: 191, # '\xa0' + 161: 192, # 'ˇ' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ą' + 166: 197, # '¦' + 167: 76, # '§' + 168: 198, # '¨' + 169: 199, # '©' + 170: 200, # 'Ş' + 171: 201, # '«' + 172: 202, # '¬' + 173: 203, # '\xad' + 174: 204, # '®' + 175: 205, # 'Ż' + 176: 81, # '°' + 177: 206, # '±' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'µ' + 182: 211, # '¶' + 183: 212, # '·' + 184: 213, # '¸' + 185: 214, # 'ą' + 186: 215, # 'ş' + 187: 216, # '»' + 188: 217, # 'Ľ' + 189: 218, # '˝' + 190: 219, # 'ľ' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 83, # 'Â' + 195: 222, # 'Ă' + 196: 80, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 70, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 84, # 'ŕ' + 225: 14, # 'á' + 226: 75, # 'â' + 227: 242, # 'ă' + 228: 71, # 'ä' + 229: 82, # 'ĺ' + 230: 243, # 'ć' + 231: 73, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 85, # 'ę' + 235: 79, # 'ë' + 236: 86, # 'ě' + 237: 30, # 'í' + 238: 77, # 'î' + 239: 87, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 74, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1250', + language='Hungarian', + char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű') + +ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 71, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 159, # '\x80' + 129: 160, # '\x81' + 130: 161, # '\x82' + 131: 162, # '\x83' + 132: 163, # '\x84' + 133: 164, # '\x85' + 134: 165, # '\x86' + 135: 166, # '\x87' + 136: 167, # '\x88' + 137: 168, # '\x89' + 138: 169, # '\x8a' + 139: 170, # '\x8b' + 140: 171, # '\x8c' + 141: 172, # '\x8d' + 142: 173, # '\x8e' + 143: 174, # '\x8f' + 144: 175, # '\x90' + 145: 176, # '\x91' + 146: 177, # '\x92' + 147: 178, # '\x93' + 148: 179, # '\x94' + 149: 180, # '\x95' + 150: 181, # '\x96' + 151: 182, # '\x97' + 152: 183, # '\x98' + 153: 184, # '\x99' + 154: 185, # '\x9a' + 155: 186, # '\x9b' + 156: 187, # '\x9c' + 157: 188, # '\x9d' + 158: 189, # '\x9e' + 159: 190, # '\x9f' + 160: 191, # '\xa0' + 161: 192, # 'Ą' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ľ' + 166: 197, # 'Ś' + 167: 75, # '§' + 168: 198, # '¨' + 169: 199, # 'Š' + 170: 200, # 'Ş' + 171: 201, # 'Ť' + 172: 202, # 'Ź' + 173: 203, # '\xad' + 174: 204, # 'Ž' + 175: 205, # 'Ż' + 176: 79, # '°' + 177: 206, # 'ą' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'ľ' + 182: 211, # 'ś' + 183: 212, # 'ˇ' + 184: 213, # '¸' + 185: 214, # 'š' + 186: 215, # 'ş' + 187: 216, # 'ť' + 188: 217, # 'ź' + 189: 218, # '˝' + 190: 219, # 'ž' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 81, # 'Â' + 195: 222, # 'Ă' + 196: 78, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 69, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 82, # 'ŕ' + 225: 14, # 'á' + 226: 74, # 'â' + 227: 242, # 'ă' + 228: 70, # 'ä' + 229: 80, # 'ĺ' + 230: 243, # 'ć' + 231: 72, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 83, # 'ę' + 235: 77, # 'ë' + 236: 84, # 'ě' + 237: 30, # 'í' + 238: 76, # 'î' + 239: 85, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 73, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-2', + language='Hungarian', + char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 0000000..d64023c --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5718 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +RUSSIAN_LANG_MODEL = { + 37: { # 'А' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 44: { # 'Б' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 33: { # 'В' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 46: { # 'Г' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 41: { # 'Д' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 3, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 48: { # 'Е' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 56: { # 'Ж' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 0, # 'я' + }, + 51: { # 'З' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 42: { # 'И' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 60: { # 'Й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 36: { # 'К' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 49: { # 'Л' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 38: { # 'М' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 31: { # 'Н' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 34: { # 'О' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 2, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 2, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 35: { # 'П' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 1, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 45: { # 'Р' + 37: 2, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 32: { # 'С' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 2, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 40: { # 'Т' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 52: { # 'У' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 53: { # 'Ф' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 55: { # 'Х' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 58: { # 'Ц' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 50: { # 'Ч' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 57: { # 'Ш' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 63: { # 'Щ' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 62: { # 'Ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 61: { # 'Ь' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 47: { # 'Э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 59: { # 'Ю' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 43: { # 'Я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 3: { # 'а' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 21: { # 'б' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 10: { # 'в' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 19: { # 'г' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 13: { # 'д' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 2: { # 'е' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 24: { # 'ж' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 20: { # 'з' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 4: { # 'и' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 23: { # 'й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 11: { # 'к' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 8: { # 'л' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 12: { # 'м' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 5: { # 'н' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 1: { # 'о' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 15: { # 'п' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 9: { # 'р' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 7: { # 'с' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 6: { # 'т' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 14: { # 'у' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 2, # 'я' + }, + 39: { # 'ф' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 26: { # 'х' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 28: { # 'ц' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 22: { # 'ч' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 25: { # 'ш' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 29: { # 'щ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 2, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 54: { # 'ъ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 18: { # 'ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 1, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 17: { # 'ь' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 0, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 30: { # 'э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 27: { # 'ю' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 16: { # 'я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 2, # 'я' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +IBM866_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 3, # 'а' + 161: 21, # 'б' + 162: 10, # 'в' + 163: 19, # 'г' + 164: 13, # 'д' + 165: 2, # 'е' + 166: 24, # 'ж' + 167: 20, # 'з' + 168: 4, # 'и' + 169: 23, # 'й' + 170: 11, # 'к' + 171: 8, # 'л' + 172: 12, # 'м' + 173: 5, # 'н' + 174: 1, # 'о' + 175: 15, # 'п' + 176: 191, # '░' + 177: 192, # '▒' + 178: 193, # '▓' + 179: 194, # '│' + 180: 195, # '┤' + 181: 196, # '╡' + 182: 197, # '╢' + 183: 198, # '╖' + 184: 199, # '╕' + 185: 200, # '╣' + 186: 201, # '║' + 187: 202, # '╗' + 188: 203, # '╝' + 189: 204, # '╜' + 190: 205, # '╛' + 191: 206, # '┐' + 192: 207, # '└' + 193: 208, # '┴' + 194: 209, # '┬' + 195: 210, # '├' + 196: 211, # '─' + 197: 212, # '┼' + 198: 213, # '╞' + 199: 214, # '╟' + 200: 215, # '╚' + 201: 216, # '╔' + 202: 217, # '╩' + 203: 218, # '╦' + 204: 219, # '╠' + 205: 220, # '═' + 206: 221, # '╬' + 207: 222, # '╧' + 208: 223, # '╨' + 209: 224, # '╤' + 210: 225, # '╥' + 211: 226, # '╙' + 212: 227, # '╘' + 213: 228, # '╒' + 214: 229, # '╓' + 215: 230, # '╫' + 216: 231, # '╪' + 217: 232, # '┘' + 218: 233, # '┌' + 219: 234, # '█' + 220: 235, # '▄' + 221: 236, # '▌' + 222: 237, # '▐' + 223: 238, # '▀' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # 'Ё' + 241: 68, # 'ё' + 242: 240, # 'Є' + 243: 241, # 'є' + 244: 242, # 'Ї' + 245: 243, # 'ї' + 246: 244, # 'Ў' + 247: 245, # 'ў' + 248: 246, # '°' + 249: 247, # '∙' + 250: 248, # '·' + 251: 249, # '√' + 252: 250, # '№' + 253: 251, # '¤' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM866_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='IBM866', + language='Russian', + char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'Ђ' + 129: 192, # 'Ѓ' + 130: 193, # '‚' + 131: 194, # 'ѓ' + 132: 195, # '„' + 133: 196, # '…' + 134: 197, # '†' + 135: 198, # '‡' + 136: 199, # '€' + 137: 200, # '‰' + 138: 201, # 'Љ' + 139: 202, # '‹' + 140: 203, # 'Њ' + 141: 204, # 'Ќ' + 142: 205, # 'Ћ' + 143: 206, # 'Џ' + 144: 207, # 'ђ' + 145: 208, # '‘' + 146: 209, # '’' + 147: 210, # '“' + 148: 211, # '”' + 149: 212, # '•' + 150: 213, # '–' + 151: 214, # '—' + 152: 215, # None + 153: 216, # '™' + 154: 217, # 'љ' + 155: 218, # '›' + 156: 219, # 'њ' + 157: 220, # 'ќ' + 158: 221, # 'ћ' + 159: 222, # 'џ' + 160: 223, # '\xa0' + 161: 224, # 'Ў' + 162: 225, # 'ў' + 163: 226, # 'Ј' + 164: 227, # '¤' + 165: 228, # 'Ґ' + 166: 229, # '¦' + 167: 230, # '§' + 168: 231, # 'Ё' + 169: 232, # '©' + 170: 233, # 'Є' + 171: 234, # '«' + 172: 235, # '¬' + 173: 236, # '\xad' + 174: 237, # '®' + 175: 238, # 'Ї' + 176: 239, # '°' + 177: 240, # '±' + 178: 241, # 'І' + 179: 242, # 'і' + 180: 243, # 'ґ' + 181: 244, # 'µ' + 182: 245, # '¶' + 183: 246, # '·' + 184: 68, # 'ё' + 185: 247, # '№' + 186: 248, # 'є' + 187: 249, # '»' + 188: 250, # 'ј' + 189: 251, # 'Ѕ' + 190: 252, # 'ѕ' + 191: 253, # 'ї' + 192: 37, # 'А' + 193: 44, # 'Б' + 194: 33, # 'В' + 195: 46, # 'Г' + 196: 41, # 'Д' + 197: 48, # 'Е' + 198: 56, # 'Ж' + 199: 51, # 'З' + 200: 42, # 'И' + 201: 60, # 'Й' + 202: 36, # 'К' + 203: 49, # 'Л' + 204: 38, # 'М' + 205: 31, # 'Н' + 206: 34, # 'О' + 207: 35, # 'П' + 208: 45, # 'Р' + 209: 32, # 'С' + 210: 40, # 'Т' + 211: 52, # 'У' + 212: 53, # 'Ф' + 213: 55, # 'Х' + 214: 58, # 'Ц' + 215: 50, # 'Ч' + 216: 57, # 'Ш' + 217: 63, # 'Щ' + 218: 70, # 'Ъ' + 219: 62, # 'Ы' + 220: 61, # 'Ь' + 221: 47, # 'Э' + 222: 59, # 'Ю' + 223: 43, # 'Я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1251', + language='Russian', + char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +IBM855_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'ђ' + 129: 192, # 'Ђ' + 130: 193, # 'ѓ' + 131: 194, # 'Ѓ' + 132: 68, # 'ё' + 133: 195, # 'Ё' + 134: 196, # 'є' + 135: 197, # 'Є' + 136: 198, # 'ѕ' + 137: 199, # 'Ѕ' + 138: 200, # 'і' + 139: 201, # 'І' + 140: 202, # 'ї' + 141: 203, # 'Ї' + 142: 204, # 'ј' + 143: 205, # 'Ј' + 144: 206, # 'љ' + 145: 207, # 'Љ' + 146: 208, # 'њ' + 147: 209, # 'Њ' + 148: 210, # 'ћ' + 149: 211, # 'Ћ' + 150: 212, # 'ќ' + 151: 213, # 'Ќ' + 152: 214, # 'ў' + 153: 215, # 'Ў' + 154: 216, # 'џ' + 155: 217, # 'Џ' + 156: 27, # 'ю' + 157: 59, # 'Ю' + 158: 54, # 'ъ' + 159: 70, # 'Ъ' + 160: 3, # 'а' + 161: 37, # 'А' + 162: 21, # 'б' + 163: 44, # 'Б' + 164: 28, # 'ц' + 165: 58, # 'Ц' + 166: 13, # 'д' + 167: 41, # 'Д' + 168: 2, # 'е' + 169: 48, # 'Е' + 170: 39, # 'ф' + 171: 53, # 'Ф' + 172: 19, # 'г' + 173: 46, # 'Г' + 174: 218, # '«' + 175: 219, # '»' + 176: 220, # '░' + 177: 221, # '▒' + 178: 222, # '▓' + 179: 223, # '│' + 180: 224, # '┤' + 181: 26, # 'х' + 182: 55, # 'Х' + 183: 4, # 'и' + 184: 42, # 'И' + 185: 225, # '╣' + 186: 226, # '║' + 187: 227, # '╗' + 188: 228, # '╝' + 189: 23, # 'й' + 190: 60, # 'Й' + 191: 229, # '┐' + 192: 230, # '└' + 193: 231, # '┴' + 194: 232, # '┬' + 195: 233, # '├' + 196: 234, # '─' + 197: 235, # '┼' + 198: 11, # 'к' + 199: 36, # 'К' + 200: 236, # '╚' + 201: 237, # '╔' + 202: 238, # '╩' + 203: 239, # '╦' + 204: 240, # '╠' + 205: 241, # '═' + 206: 242, # '╬' + 207: 243, # '¤' + 208: 8, # 'л' + 209: 49, # 'Л' + 210: 12, # 'м' + 211: 38, # 'М' + 212: 5, # 'н' + 213: 31, # 'Н' + 214: 1, # 'о' + 215: 34, # 'О' + 216: 15, # 'п' + 217: 244, # '┘' + 218: 245, # '┌' + 219: 246, # '█' + 220: 247, # '▄' + 221: 35, # 'П' + 222: 16, # 'я' + 223: 248, # '▀' + 224: 43, # 'Я' + 225: 9, # 'р' + 226: 45, # 'Р' + 227: 7, # 'с' + 228: 32, # 'С' + 229: 6, # 'т' + 230: 40, # 'Т' + 231: 14, # 'у' + 232: 52, # 'У' + 233: 24, # 'ж' + 234: 56, # 'Ж' + 235: 10, # 'в' + 236: 33, # 'В' + 237: 17, # 'ь' + 238: 61, # 'Ь' + 239: 249, # '№' + 240: 250, # '\xad' + 241: 18, # 'ы' + 242: 62, # 'Ы' + 243: 20, # 'з' + 244: 51, # 'З' + 245: 25, # 'ш' + 246: 57, # 'Ш' + 247: 30, # 'э' + 248: 47, # 'Э' + 249: 29, # 'щ' + 250: 63, # 'Щ' + 251: 22, # 'ч' + 252: 50, # 'Ч' + 253: 251, # '§' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM855_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='IBM855', + language='Russian', + char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +KOI8_R_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '─' + 129: 192, # '│' + 130: 193, # '┌' + 131: 194, # '┐' + 132: 195, # '└' + 133: 196, # '┘' + 134: 197, # '├' + 135: 198, # '┤' + 136: 199, # '┬' + 137: 200, # '┴' + 138: 201, # '┼' + 139: 202, # '▀' + 140: 203, # '▄' + 141: 204, # '█' + 142: 205, # '▌' + 143: 206, # '▐' + 144: 207, # '░' + 145: 208, # '▒' + 146: 209, # '▓' + 147: 210, # '⌠' + 148: 211, # '■' + 149: 212, # '∙' + 150: 213, # '√' + 151: 214, # '≈' + 152: 215, # '≤' + 153: 216, # '≥' + 154: 217, # '\xa0' + 155: 218, # '⌡' + 156: 219, # '°' + 157: 220, # '²' + 158: 221, # '·' + 159: 222, # '÷' + 160: 223, # '═' + 161: 224, # '║' + 162: 225, # '╒' + 163: 68, # 'ё' + 164: 226, # '╓' + 165: 227, # '╔' + 166: 228, # '╕' + 167: 229, # '╖' + 168: 230, # '╗' + 169: 231, # '╘' + 170: 232, # '╙' + 171: 233, # '╚' + 172: 234, # '╛' + 173: 235, # '╜' + 174: 236, # '╝' + 175: 237, # '╞' + 176: 238, # '╟' + 177: 239, # '╠' + 178: 240, # '╡' + 179: 241, # 'Ё' + 180: 242, # '╢' + 181: 243, # '╣' + 182: 244, # '╤' + 183: 245, # '╥' + 184: 246, # '╦' + 185: 247, # '╧' + 186: 248, # '╨' + 187: 249, # '╩' + 188: 250, # '╪' + 189: 251, # '╫' + 190: 252, # '╬' + 191: 253, # '©' + 192: 27, # 'ю' + 193: 3, # 'а' + 194: 21, # 'б' + 195: 28, # 'ц' + 196: 13, # 'д' + 197: 2, # 'е' + 198: 39, # 'ф' + 199: 19, # 'г' + 200: 26, # 'х' + 201: 4, # 'и' + 202: 23, # 'й' + 203: 11, # 'к' + 204: 8, # 'л' + 205: 12, # 'м' + 206: 5, # 'н' + 207: 1, # 'о' + 208: 15, # 'п' + 209: 16, # 'я' + 210: 9, # 'р' + 211: 7, # 'с' + 212: 6, # 'т' + 213: 14, # 'у' + 214: 24, # 'ж' + 215: 10, # 'в' + 216: 17, # 'ь' + 217: 18, # 'ы' + 218: 20, # 'з' + 219: 25, # 'ш' + 220: 30, # 'э' + 221: 29, # 'щ' + 222: 22, # 'ч' + 223: 54, # 'ъ' + 224: 59, # 'Ю' + 225: 37, # 'А' + 226: 44, # 'Б' + 227: 58, # 'Ц' + 228: 41, # 'Д' + 229: 48, # 'Е' + 230: 53, # 'Ф' + 231: 46, # 'Г' + 232: 55, # 'Х' + 233: 42, # 'И' + 234: 60, # 'Й' + 235: 36, # 'К' + 236: 49, # 'Л' + 237: 38, # 'М' + 238: 31, # 'Н' + 239: 34, # 'О' + 240: 35, # 'П' + 241: 43, # 'Я' + 242: 45, # 'Р' + 243: 32, # 'С' + 244: 40, # 'Т' + 245: 52, # 'У' + 246: 56, # 'Ж' + 247: 33, # 'В' + 248: 61, # 'Ь' + 249: 62, # 'Ы' + 250: 51, # 'З' + 251: 57, # 'Ш' + 252: 47, # 'Э' + 253: 63, # 'Щ' + 254: 50, # 'Ч' + 255: 70, # 'Ъ' +} + +KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='KOI8-R', + language='Russian', + char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 191, # '†' + 161: 192, # '°' + 162: 193, # 'Ґ' + 163: 194, # '£' + 164: 195, # '§' + 165: 196, # '•' + 166: 197, # '¶' + 167: 198, # 'І' + 168: 199, # '®' + 169: 200, # '©' + 170: 201, # '™' + 171: 202, # 'Ђ' + 172: 203, # 'ђ' + 173: 204, # '≠' + 174: 205, # 'Ѓ' + 175: 206, # 'ѓ' + 176: 207, # '∞' + 177: 208, # '±' + 178: 209, # '≤' + 179: 210, # '≥' + 180: 211, # 'і' + 181: 212, # 'µ' + 182: 213, # 'ґ' + 183: 214, # 'Ј' + 184: 215, # 'Є' + 185: 216, # 'є' + 186: 217, # 'Ї' + 187: 218, # 'ї' + 188: 219, # 'Љ' + 189: 220, # 'љ' + 190: 221, # 'Њ' + 191: 222, # 'њ' + 192: 223, # 'ј' + 193: 224, # 'Ѕ' + 194: 225, # '¬' + 195: 226, # '√' + 196: 227, # 'ƒ' + 197: 228, # '≈' + 198: 229, # '∆' + 199: 230, # '«' + 200: 231, # '»' + 201: 232, # '…' + 202: 233, # '\xa0' + 203: 234, # 'Ћ' + 204: 235, # 'ћ' + 205: 236, # 'Ќ' + 206: 237, # 'ќ' + 207: 238, # 'ѕ' + 208: 239, # '–' + 209: 240, # '—' + 210: 241, # '“' + 211: 242, # '”' + 212: 243, # '‘' + 213: 244, # '’' + 214: 245, # '÷' + 215: 246, # '„' + 216: 247, # 'Ў' + 217: 248, # 'ў' + 218: 249, # 'Џ' + 219: 250, # 'џ' + 220: 251, # '№' + 221: 252, # 'Ё' + 222: 68, # 'ё' + 223: 16, # 'я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 255, # '€' +} + +MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='MacCyrillic', + language='Russian', + char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '\x80' + 129: 192, # '\x81' + 130: 193, # '\x82' + 131: 194, # '\x83' + 132: 195, # '\x84' + 133: 196, # '\x85' + 134: 197, # '\x86' + 135: 198, # '\x87' + 136: 199, # '\x88' + 137: 200, # '\x89' + 138: 201, # '\x8a' + 139: 202, # '\x8b' + 140: 203, # '\x8c' + 141: 204, # '\x8d' + 142: 205, # '\x8e' + 143: 206, # '\x8f' + 144: 207, # '\x90' + 145: 208, # '\x91' + 146: 209, # '\x92' + 147: 210, # '\x93' + 148: 211, # '\x94' + 149: 212, # '\x95' + 150: 213, # '\x96' + 151: 214, # '\x97' + 152: 215, # '\x98' + 153: 216, # '\x99' + 154: 217, # '\x9a' + 155: 218, # '\x9b' + 156: 219, # '\x9c' + 157: 220, # '\x9d' + 158: 221, # '\x9e' + 159: 222, # '\x9f' + 160: 223, # '\xa0' + 161: 224, # 'Ё' + 162: 225, # 'Ђ' + 163: 226, # 'Ѓ' + 164: 227, # 'Є' + 165: 228, # 'Ѕ' + 166: 229, # 'І' + 167: 230, # 'Ї' + 168: 231, # 'Ј' + 169: 232, # 'Љ' + 170: 233, # 'Њ' + 171: 234, # 'Ћ' + 172: 235, # 'Ќ' + 173: 236, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 37, # 'А' + 177: 44, # 'Б' + 178: 33, # 'В' + 179: 46, # 'Г' + 180: 41, # 'Д' + 181: 48, # 'Е' + 182: 56, # 'Ж' + 183: 51, # 'З' + 184: 42, # 'И' + 185: 60, # 'Й' + 186: 36, # 'К' + 187: 49, # 'Л' + 188: 38, # 'М' + 189: 31, # 'Н' + 190: 34, # 'О' + 191: 35, # 'П' + 192: 45, # 'Р' + 193: 32, # 'С' + 194: 40, # 'Т' + 195: 52, # 'У' + 196: 53, # 'Ф' + 197: 55, # 'Х' + 198: 58, # 'Ц' + 199: 50, # 'Ч' + 200: 57, # 'Ш' + 201: 63, # 'Щ' + 202: 70, # 'Ъ' + 203: 62, # 'Ы' + 204: 61, # 'Ь' + 205: 47, # 'Э' + 206: 59, # 'Ю' + 207: 43, # 'Я' + 208: 3, # 'а' + 209: 21, # 'б' + 210: 10, # 'в' + 211: 19, # 'г' + 212: 13, # 'д' + 213: 2, # 'е' + 214: 24, # 'ж' + 215: 20, # 'з' + 216: 4, # 'и' + 217: 23, # 'й' + 218: 11, # 'к' + 219: 8, # 'л' + 220: 12, # 'м' + 221: 5, # 'н' + 222: 1, # 'о' + 223: 15, # 'п' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # '№' + 241: 68, # 'ё' + 242: 240, # 'ђ' + 243: 241, # 'ѓ' + 244: 242, # 'є' + 245: 243, # 'ѕ' + 246: 244, # 'і' + 247: 245, # 'ї' + 248: 246, # 'ј' + 249: 247, # 'љ' + 250: 248, # 'њ' + 251: 249, # 'ћ' + 252: 250, # 'ќ' + 253: 251, # '§' + 254: 252, # 'ў' + 255: 255, # 'џ' +} + +ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-5', + language='Russian', + char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 0000000..1db1b94 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +THAI_LANG_MODEL = { + 5: { # 'ก' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 3, # 'ฎ' + 57: 2, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 1, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 30: { # 'ข' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 2, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 24: { # 'ค' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 3, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 8: { # 'ง' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 1, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 2, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 3, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 26: { # 'จ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 52: { # 'ฉ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 34: { # 'ช' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 1, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 51: { # 'ซ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 47: { # 'ญ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 58: { # 'ฎ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 57: { # 'ฏ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 49: { # 'ฐ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 53: { # 'ฑ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 55: { # 'ฒ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 43: { # 'ณ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 3, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 3, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 20: { # 'ด' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 2, # '็' + 6: 1, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 19: { # 'ต' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 2, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 44: { # 'ถ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 14: { # 'ท' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 3, # 'ศ' + 46: 1, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 48: { # 'ธ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 2, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 3: { # 'น' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 1, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 3, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 3, # 'โ' + 29: 3, # 'ใ' + 33: 3, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 17: { # 'บ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 25: { # 'ป' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 1, # 'ฎ' + 57: 3, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 1, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 2, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 39: { # 'ผ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 0, # 'ุ' + 35: 3, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 62: { # 'ฝ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 2, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 31: { # 'พ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 3, # 'ื' + 32: 1, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 0, # '่' + 7: 1, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 54: { # 'ฟ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 45: { # 'ภ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 9: { # 'ม' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 2, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 16: { # 'ย' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 2: { # 'ร' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 3, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 3, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 3, # 'เ' + 28: 3, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 61: { # 'ฤ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 2, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 15: { # 'ล' + 5: 2, # 'ก' + 30: 3, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 2, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 12: { # 'ว' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 42: { # 'ศ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 3, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 46: { # 'ษ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 2, # 'ฎ' + 57: 1, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 18: { # 'ส' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 3, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 21: { # 'ห' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 4: { # 'อ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 63: { # 'ฯ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 22: { # 'ะ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 10: { # 'ั' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 3, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 1: { # 'า' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 1, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 2, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 36: { # 'ำ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 23: { # 'ิ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 3, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 13: { # 'ี' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 40: { # 'ึ' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 27: { # 'ื' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 32: { # 'ุ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 1, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 35: { # 'ู' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 11: { # 'เ' + 5: 3, # 'ก' + 30: 3, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 3, # 'ฉ' + 34: 3, # 'ช' + 51: 2, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 3, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 28: { # 'แ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 3, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 41: { # 'โ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 29: { # 'ใ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 33: { # 'ไ' + 5: 1, # 'ก' + 30: 2, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 50: { # 'ๆ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 37: { # '็' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 6: { # '่' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 7: { # '้' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 38: { # '์' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 56: { # '๑' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 1, # '๕' + }, + 59: { # '๒' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 1, # '๑' + 59: 1, # '๒' + 60: 3, # '๕' + }, + 60: { # '๕' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 0, # '๕' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +TIS_620_THAI_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 182, # 'A' + 66: 106, # 'B' + 67: 107, # 'C' + 68: 100, # 'D' + 69: 183, # 'E' + 70: 184, # 'F' + 71: 185, # 'G' + 72: 101, # 'H' + 73: 94, # 'I' + 74: 186, # 'J' + 75: 187, # 'K' + 76: 108, # 'L' + 77: 109, # 'M' + 78: 110, # 'N' + 79: 111, # 'O' + 80: 188, # 'P' + 81: 189, # 'Q' + 82: 190, # 'R' + 83: 89, # 'S' + 84: 95, # 'T' + 85: 112, # 'U' + 86: 113, # 'V' + 87: 191, # 'W' + 88: 192, # 'X' + 89: 193, # 'Y' + 90: 194, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 64, # 'a' + 98: 72, # 'b' + 99: 73, # 'c' + 100: 114, # 'd' + 101: 74, # 'e' + 102: 115, # 'f' + 103: 116, # 'g' + 104: 102, # 'h' + 105: 81, # 'i' + 106: 201, # 'j' + 107: 117, # 'k' + 108: 90, # 'l' + 109: 103, # 'm' + 110: 78, # 'n' + 111: 82, # 'o' + 112: 96, # 'p' + 113: 202, # 'q' + 114: 91, # 'r' + 115: 79, # 's' + 116: 84, # 't' + 117: 104, # 'u' + 118: 105, # 'v' + 119: 97, # 'w' + 120: 98, # 'x' + 121: 92, # 'y' + 122: 203, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 209, # '\x80' + 129: 210, # '\x81' + 130: 211, # '\x82' + 131: 212, # '\x83' + 132: 213, # '\x84' + 133: 88, # '\x85' + 134: 214, # '\x86' + 135: 215, # '\x87' + 136: 216, # '\x88' + 137: 217, # '\x89' + 138: 218, # '\x8a' + 139: 219, # '\x8b' + 140: 220, # '\x8c' + 141: 118, # '\x8d' + 142: 221, # '\x8e' + 143: 222, # '\x8f' + 144: 223, # '\x90' + 145: 224, # '\x91' + 146: 99, # '\x92' + 147: 85, # '\x93' + 148: 83, # '\x94' + 149: 225, # '\x95' + 150: 226, # '\x96' + 151: 227, # '\x97' + 152: 228, # '\x98' + 153: 229, # '\x99' + 154: 230, # '\x9a' + 155: 231, # '\x9b' + 156: 232, # '\x9c' + 157: 233, # '\x9d' + 158: 234, # '\x9e' + 159: 235, # '\x9f' + 160: 236, # None + 161: 5, # 'ก' + 162: 30, # 'ข' + 163: 237, # 'ฃ' + 164: 24, # 'ค' + 165: 238, # 'ฅ' + 166: 75, # 'ฆ' + 167: 8, # 'ง' + 168: 26, # 'จ' + 169: 52, # 'ฉ' + 170: 34, # 'ช' + 171: 51, # 'ซ' + 172: 119, # 'ฌ' + 173: 47, # 'ญ' + 174: 58, # 'ฎ' + 175: 57, # 'ฏ' + 176: 49, # 'ฐ' + 177: 53, # 'ฑ' + 178: 55, # 'ฒ' + 179: 43, # 'ณ' + 180: 20, # 'ด' + 181: 19, # 'ต' + 182: 44, # 'ถ' + 183: 14, # 'ท' + 184: 48, # 'ธ' + 185: 3, # 'น' + 186: 17, # 'บ' + 187: 25, # 'ป' + 188: 39, # 'ผ' + 189: 62, # 'ฝ' + 190: 31, # 'พ' + 191: 54, # 'ฟ' + 192: 45, # 'ภ' + 193: 9, # 'ม' + 194: 16, # 'ย' + 195: 2, # 'ร' + 196: 61, # 'ฤ' + 197: 15, # 'ล' + 198: 239, # 'ฦ' + 199: 12, # 'ว' + 200: 42, # 'ศ' + 201: 46, # 'ษ' + 202: 18, # 'ส' + 203: 21, # 'ห' + 204: 76, # 'ฬ' + 205: 4, # 'อ' + 206: 66, # 'ฮ' + 207: 63, # 'ฯ' + 208: 22, # 'ะ' + 209: 10, # 'ั' + 210: 1, # 'า' + 211: 36, # 'ำ' + 212: 23, # 'ิ' + 213: 13, # 'ี' + 214: 40, # 'ึ' + 215: 27, # 'ื' + 216: 32, # 'ุ' + 217: 35, # 'ู' + 218: 86, # 'ฺ' + 219: 240, # None + 220: 241, # None + 221: 242, # None + 222: 243, # None + 223: 244, # '฿' + 224: 11, # 'เ' + 225: 28, # 'แ' + 226: 41, # 'โ' + 227: 29, # 'ใ' + 228: 33, # 'ไ' + 229: 245, # 'ๅ' + 230: 50, # 'ๆ' + 231: 37, # '็' + 232: 6, # '่' + 233: 7, # '้' + 234: 67, # '๊' + 235: 77, # '๋' + 236: 38, # '์' + 237: 93, # 'ํ' + 238: 246, # '๎' + 239: 247, # '๏' + 240: 68, # '๐' + 241: 56, # '๑' + 242: 59, # '๒' + 243: 65, # '๓' + 244: 69, # '๔' + 245: 60, # '๕' + 246: 70, # '๖' + 247: 80, # '๗' + 248: 71, # '๘' + 249: 87, # '๙' + 250: 248, # '๚' + 251: 249, # '๛' + 252: 250, # None + 253: 251, # None + 254: 252, # None + 255: 253, # None +} + +TIS_620_THAI_MODEL = SingleByteCharSetModel(charset_name='TIS-620', + language='Thai', + char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, + language_model=THAI_LANG_MODEL, + typical_positive_ratio=0.926386, + keep_ascii_letters=False, + alphabet='กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 0000000..0adb78f --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +TURKISH_LANG_MODEL = { + 23: { # 'A' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 37: { # 'B' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 47: { # 'C' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 39: { # 'D' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 29: { # 'E' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 52: { # 'F' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 36: { # 'G' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 45: { # 'H' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 2, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 2, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 53: { # 'I' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 60: { # 'J' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 16: { # 'K' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 49: { # 'L' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 2, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 20: { # 'M' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 46: { # 'N' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 42: { # 'O' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 48: { # 'P' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 44: { # 'R' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 35: { # 'S' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 31: { # 'T' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 51: { # 'U' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 38: { # 'V' + 23: 1, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 62: { # 'W' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 43: { # 'Y' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 56: { # 'Z' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 1: { # 'a' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 21: { # 'b' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 28: { # 'c' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 3, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 1, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 12: { # 'd' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 2: { # 'e' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 18: { # 'f' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 1, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 27: { # 'g' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 25: { # 'h' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 3: { # 'i' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 24: { # 'j' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 10: { # 'k' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 5: { # 'l' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 13: { # 'm' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 4: { # 'n' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 15: { # 'o' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 2, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 2, # 'ş' + }, + 26: { # 'p' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 7: { # 'r' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 8: { # 's' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 9: { # 't' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 14: { # 'u' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 32: { # 'v' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 57: { # 'w' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 1, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 58: { # 'x' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 11: { # 'y' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 22: { # 'z' + 23: 2, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 2, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 3, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 2, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 63: { # '·' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 54: { # 'Ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 50: { # 'Ö' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 55: { # 'Ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 59: { # 'â' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 33: { # 'ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 61: { # 'î' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 34: { # 'ö' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 3, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 17: { # 'ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 30: { # 'ğ' + 23: 0, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 41: { # 'İ' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 6: { # 'ı' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 40: { # 'Ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 2, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 3, # 'f' + 27: 0, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 1, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 19: { # 'ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_9_TURKISH_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 255, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 255, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 255, # ' ' + 33: 255, # '!' + 34: 255, # '"' + 35: 255, # '#' + 36: 255, # '$' + 37: 255, # '%' + 38: 255, # '&' + 39: 255, # "'" + 40: 255, # '(' + 41: 255, # ')' + 42: 255, # '*' + 43: 255, # '+' + 44: 255, # ',' + 45: 255, # '-' + 46: 255, # '.' + 47: 255, # '/' + 48: 255, # '0' + 49: 255, # '1' + 50: 255, # '2' + 51: 255, # '3' + 52: 255, # '4' + 53: 255, # '5' + 54: 255, # '6' + 55: 255, # '7' + 56: 255, # '8' + 57: 255, # '9' + 58: 255, # ':' + 59: 255, # ';' + 60: 255, # '<' + 61: 255, # '=' + 62: 255, # '>' + 63: 255, # '?' + 64: 255, # '@' + 65: 23, # 'A' + 66: 37, # 'B' + 67: 47, # 'C' + 68: 39, # 'D' + 69: 29, # 'E' + 70: 52, # 'F' + 71: 36, # 'G' + 72: 45, # 'H' + 73: 53, # 'I' + 74: 60, # 'J' + 75: 16, # 'K' + 76: 49, # 'L' + 77: 20, # 'M' + 78: 46, # 'N' + 79: 42, # 'O' + 80: 48, # 'P' + 81: 69, # 'Q' + 82: 44, # 'R' + 83: 35, # 'S' + 84: 31, # 'T' + 85: 51, # 'U' + 86: 38, # 'V' + 87: 62, # 'W' + 88: 65, # 'X' + 89: 43, # 'Y' + 90: 56, # 'Z' + 91: 255, # '[' + 92: 255, # '\\' + 93: 255, # ']' + 94: 255, # '^' + 95: 255, # '_' + 96: 255, # '`' + 97: 1, # 'a' + 98: 21, # 'b' + 99: 28, # 'c' + 100: 12, # 'd' + 101: 2, # 'e' + 102: 18, # 'f' + 103: 27, # 'g' + 104: 25, # 'h' + 105: 3, # 'i' + 106: 24, # 'j' + 107: 10, # 'k' + 108: 5, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 15, # 'o' + 112: 26, # 'p' + 113: 64, # 'q' + 114: 7, # 'r' + 115: 8, # 's' + 116: 9, # 't' + 117: 14, # 'u' + 118: 32, # 'v' + 119: 57, # 'w' + 120: 58, # 'x' + 121: 11, # 'y' + 122: 22, # 'z' + 123: 255, # '{' + 124: 255, # '|' + 125: 255, # '}' + 126: 255, # '~' + 127: 255, # '\x7f' + 128: 180, # '\x80' + 129: 179, # '\x81' + 130: 178, # '\x82' + 131: 177, # '\x83' + 132: 176, # '\x84' + 133: 175, # '\x85' + 134: 174, # '\x86' + 135: 173, # '\x87' + 136: 172, # '\x88' + 137: 171, # '\x89' + 138: 170, # '\x8a' + 139: 169, # '\x8b' + 140: 168, # '\x8c' + 141: 167, # '\x8d' + 142: 166, # '\x8e' + 143: 165, # '\x8f' + 144: 164, # '\x90' + 145: 163, # '\x91' + 146: 162, # '\x92' + 147: 161, # '\x93' + 148: 160, # '\x94' + 149: 159, # '\x95' + 150: 101, # '\x96' + 151: 158, # '\x97' + 152: 157, # '\x98' + 153: 156, # '\x99' + 154: 155, # '\x9a' + 155: 154, # '\x9b' + 156: 153, # '\x9c' + 157: 152, # '\x9d' + 158: 151, # '\x9e' + 159: 106, # '\x9f' + 160: 150, # '\xa0' + 161: 149, # '¡' + 162: 148, # '¢' + 163: 147, # '£' + 164: 146, # '¤' + 165: 145, # '¥' + 166: 144, # '¦' + 167: 100, # '§' + 168: 143, # '¨' + 169: 142, # '©' + 170: 141, # 'ª' + 171: 140, # '«' + 172: 139, # '¬' + 173: 138, # '\xad' + 174: 137, # '®' + 175: 136, # '¯' + 176: 94, # '°' + 177: 80, # '±' + 178: 93, # '²' + 179: 135, # '³' + 180: 105, # '´' + 181: 134, # 'µ' + 182: 133, # '¶' + 183: 63, # '·' + 184: 132, # '¸' + 185: 131, # '¹' + 186: 130, # 'º' + 187: 129, # '»' + 188: 128, # '¼' + 189: 127, # '½' + 190: 126, # '¾' + 191: 125, # '¿' + 192: 124, # 'À' + 193: 104, # 'Á' + 194: 73, # 'Â' + 195: 99, # 'Ã' + 196: 79, # 'Ä' + 197: 85, # 'Å' + 198: 123, # 'Æ' + 199: 54, # 'Ç' + 200: 122, # 'È' + 201: 98, # 'É' + 202: 92, # 'Ê' + 203: 121, # 'Ë' + 204: 120, # 'Ì' + 205: 91, # 'Í' + 206: 103, # 'Î' + 207: 119, # 'Ï' + 208: 68, # 'Ğ' + 209: 118, # 'Ñ' + 210: 117, # 'Ò' + 211: 97, # 'Ó' + 212: 116, # 'Ô' + 213: 115, # 'Õ' + 214: 50, # 'Ö' + 215: 90, # '×' + 216: 114, # 'Ø' + 217: 113, # 'Ù' + 218: 112, # 'Ú' + 219: 111, # 'Û' + 220: 55, # 'Ü' + 221: 41, # 'İ' + 222: 40, # 'Ş' + 223: 86, # 'ß' + 224: 89, # 'à' + 225: 70, # 'á' + 226: 59, # 'â' + 227: 78, # 'ã' + 228: 71, # 'ä' + 229: 82, # 'å' + 230: 88, # 'æ' + 231: 33, # 'ç' + 232: 77, # 'è' + 233: 66, # 'é' + 234: 84, # 'ê' + 235: 83, # 'ë' + 236: 110, # 'ì' + 237: 75, # 'í' + 238: 61, # 'î' + 239: 96, # 'ï' + 240: 30, # 'ğ' + 241: 67, # 'ñ' + 242: 109, # 'ò' + 243: 74, # 'ó' + 244: 87, # 'ô' + 245: 102, # 'õ' + 246: 34, # 'ö' + 247: 95, # '÷' + 248: 81, # 'ø' + 249: 108, # 'ù' + 250: 76, # 'ú' + 251: 72, # 'û' + 252: 17, # 'ü' + 253: 6, # 'ı' + 254: 19, # 'ş' + 255: 107, # 'ÿ' +} + +ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-9', + language='Turkish', + char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, + language_model=TURKISH_LANG_MODEL, + typical_positive_ratio=0.97029, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş') + diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 0000000..7c37520 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + super(Latin1Prober, self).__init__() + self._last_char_class = None + self._freq_counter = None + self.reset() + + def reset(self): + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + @property + def charset_name(self): + return "ISO-8859-1" + + @property + def language(self): + return "" + + def feed(self, byte_str): + byte_str = self.filter_with_english_letters(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self): + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._freq_counter[3] - self._freq_counter[1] * 20.0) + / total) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.73 + return confidence diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 0000000..4609154 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,91 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter=None): + super(MultiByteCharSetProber, self).__init__(lang_filter=lang_filter) + self.distribution_analyzer = None + self.coding_sm = None + self._last_char = [0, 0] + + def reset(self): + super(MultiByteCharSetProber, self).reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = [0, 0] + + @property + def charset_name(self): + raise NotImplementedError + + @property + def language(self): + raise NotImplementedError + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.distribution_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + return self.distribution_analyzer.get_confidence() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 0000000..4b04929 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,54 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .cp949prober import CP949Prober +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter=None): + super(MBCSGroupProber, self).__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 0000000..d68f6f6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,572 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +# BIG5 + +BIG5_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 4,4,4,4,4,4,4,4, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 4,3,3,3,3,3,3,3, # a0 - a7 + 3,3,3,3,3,3,3,3, # a8 - af + 3,3,3,3,3,3,3,3, # b0 - b7 + 3,3,3,3,3,3,3,3, # b8 - bf + 3,3,3,3,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL = {'class_table': BIG5_CLS, + 'class_factor': 5, + 'state_table': BIG5_ST, + 'char_len_table': BIG5_CHAR_LEN_TABLE, + 'name': 'Big5'} + +# CP949 + +CP949_CLS = ( + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,0,0, # 00 - 0f + 1,1,1,1,1,1,1,1, 1,1,1,0,1,1,1,1, # 10 - 1f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 20 - 2f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 30 - 3f + 1,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4, # 40 - 4f + 4,4,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 50 - 5f + 1,5,5,5,5,5,5,5, 5,5,5,5,5,5,5,5, # 60 - 6f + 5,5,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 70 - 7f + 0,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 80 - 8f + 6,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 90 - 9f + 6,7,7,7,7,7,7,7, 7,7,7,7,7,8,8,8, # a0 - af + 7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7, # b0 - bf + 7,7,7,7,7,7,9,2, 2,3,2,2,2,2,2,2, # c0 - cf + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # d0 - df + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # e0 - ef + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL = {'class_table': CP949_CLS, + 'class_factor': 10, + 'state_table': CP949_ST, + 'char_len_table': CP949_CHAR_LEN_TABLE, + 'name': 'CP949'} + +# EUC-JP + +EUCJP_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,5,5, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,5,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,4,4,4,4,4,4,4, # 30 - 37 + 4,4,4,4,4,4,4,4, # 38 - 3f + 4,4,4,4,4,4,4,4, # 40 - 47 + 4,4,4,4,4,4,4,4, # 48 - 4f + 4,4,4,4,4,4,4,4, # 50 - 57 + 4,4,4,4,4,4,4,4, # 58 - 5f + 4,4,4,4,4,4,4,4, # 60 - 67 + 4,4,4,4,4,4,4,4, # 68 - 6f + 4,4,4,4,4,4,4,4, # 70 - 77 + 4,4,4,4,4,4,4,4, # 78 - 7f + 5,5,5,5,5,5,5,5, # 80 - 87 + 5,5,5,5,5,5,1,3, # 88 - 8f + 5,5,5,5,5,5,5,5, # 90 - 97 + 5,5,5,5,5,5,5,5, # 98 - 9f + 5,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,0,5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL = {'class_table': EUCJP_CLS, + 'class_factor': 6, + 'state_table': EUCJP_ST, + 'char_len_table': EUCJP_CHAR_LEN_TABLE, + 'name': 'EUC-JP'} + +# EUC-KR + +EUCKR_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,3,3,3, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,3,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 2,2,2,2,2,2,2,2, # e0 - e7 + 2,2,2,2,2,2,2,2, # e8 - ef + 2,2,2,2,2,2,2,2, # f0 - f7 + 2,2,2,2,2,2,2,0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL = {'class_table': EUCKR_CLS, + 'class_factor': 4, + 'state_table': EUCKR_ST, + 'char_len_table': EUCKR_CHAR_LEN_TABLE, + 'name': 'EUC-KR'} + +# EUC-TW + +EUCTW_CLS = ( + 2,2,2,2,2,2,2,2, # 00 - 07 + 2,2,2,2,2,2,0,0, # 08 - 0f + 2,2,2,2,2,2,2,2, # 10 - 17 + 2,2,2,0,2,2,2,2, # 18 - 1f + 2,2,2,2,2,2,2,2, # 20 - 27 + 2,2,2,2,2,2,2,2, # 28 - 2f + 2,2,2,2,2,2,2,2, # 30 - 37 + 2,2,2,2,2,2,2,2, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,2, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,6,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,3,4,4,4,4,4,4, # a0 - a7 + 5,5,1,1,1,1,1,1, # a8 - af + 1,1,1,1,1,1,1,1, # b0 - b7 + 1,1,1,1,1,1,1,1, # b8 - bf + 1,1,3,1,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL = {'class_table': EUCTW_CLS, + 'class_factor': 7, + 'state_table': EUCTW_ST, + 'char_len_table': EUCTW_CHAR_LEN_TABLE, + 'name': 'x-euc-tw'} + +# GB2312 + +GB2312_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 3,3,3,3,3,3,3,3, # 30 - 37 + 3,3,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,4, # 78 - 7f + 5,6,6,6,6,6,6,6, # 80 - 87 + 6,6,6,6,6,6,6,6, # 88 - 8f + 6,6,6,6,6,6,6,6, # 90 - 97 + 6,6,6,6,6,6,6,6, # 98 - 9f + 6,6,6,6,6,6,6,6, # a0 - a7 + 6,6,6,6,6,6,6,6, # a8 - af + 6,6,6,6,6,6,6,6, # b0 - b7 + 6,6,6,6,6,6,6,6, # b8 - bf + 6,6,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 6,6,6,6,6,6,6,6, # e0 - e7 + 6,6,6,6,6,6,6,6, # e8 - ef + 6,6,6,6,6,6,6,6, # f0 - f7 + 6,6,6,6,6,6,6,0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL = {'class_table': GB2312_CLS, + 'class_factor': 7, + 'state_table': GB2312_ST, + 'char_len_table': GB2312_CHAR_LEN_TABLE, + 'name': 'GB2312'} + +# Shift_JIS + +SJIS_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 3,3,3,3,3,2,2,3, # 80 - 87 + 3,3,3,3,3,3,3,3, # 88 - 8f + 3,3,3,3,3,3,3,3, # 90 - 97 + 3,3,3,3,3,3,3,3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,4,4,4, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,0,0,0) # f8 - ff + + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL = {'class_table': SJIS_CLS, + 'class_factor': 6, + 'state_table': SJIS_ST, + 'char_len_table': SJIS_CHAR_LEN_TABLE, + 'name': 'Shift_JIS'} + +# UCS2-BE + +UCS2BE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL = {'class_table': UCS2BE_CLS, + 'class_factor': 6, + 'state_table': UCS2BE_ST, + 'char_len_table': UCS2BE_CHAR_LEN_TABLE, + 'name': 'UTF-16BE'} + +# UCS2-LE + +UCS2LE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL = {'class_table': UCS2LE_CLS, + 'class_factor': 6, + 'state_table': UCS2LE_ST, + 'char_len_table': UCS2LE_CHAR_LEN_TABLE, + 'name': 'UTF-16LE'} + +# UTF-8 + +UTF8_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as a legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 2,2,2,2,3,3,3,3, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 5,5,5,5,5,5,5,5, # a0 - a7 + 5,5,5,5,5,5,5,5, # a8 - af + 5,5,5,5,5,5,5,5, # b0 - b7 + 5,5,5,5,5,5,5,5, # b8 - bf + 0,0,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 7,8,8,8,8,8,8,8, # e0 - e7 + 8,8,8,8,8,9,8,8, # e8 - ef + 10,11,11,11,11,11,11,11, # f0 - f7 + 12,13,13,13,14,15,0,0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL = {'class_table': UTF8_CLS, + 'class_factor': 16, + 'state_table': UTF8_ST, + 'char_len_table': UTF8_CHAR_LEN_TABLE, + 'name': 'UTF-8'} diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..585d1dcbc2cae474bc28752f722aff75aca92874 GIT binary patch literal 192 zcmYe~<>g{vU|^WXFgqPYKL!!Vn2~{j!GVE+p_qk%fgyz$697b4GFJcq literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a6a246b36d4ddd9e3f66fe277c5fa722d2c7834 GIT binary patch literal 7923 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 self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, we have a winner', + charset_name, confidence) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, below negative ' + 'shortcut threshhold %s', charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self): + r = 0.01 + if self._total_seqs > 0: + r = ((1.0 * self._seq_counters[SequenceLikelihood.POSITIVE]) / + self._total_seqs / self._model.typical_positive_ratio) + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 0000000..c6c91d6 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,83 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .hebrewprober import HebrewProber +from .langbulgarianmodel import (ISO_8859_5_BULGARIAN_MODEL, + WINDOWS_1251_BULGARIAN_MODEL) +from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL +from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL +# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, +# WINDOWS_1250_HUNGARIAN_MODEL) +from .langrussianmodel import (IBM855_RUSSIAN_MODEL, IBM866_RUSSIAN_MODEL, + ISO_8859_5_RUSSIAN_MODEL, KOI8_R_RUSSIAN_MODEL, + MACCYRILLIC_RUSSIAN_MODEL, + WINDOWS_1251_RUSSIAN_MODEL) +from .langthaimodel import TIS_620_THAI_MODEL +from .langturkishmodel import ISO_8859_9_TURKISH_MODEL +from .sbcharsetprober import SingleByteCharSetProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self): + super(SBCSGroupProber, self).__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + False, hebrew_prober) + # TODO: See if using ISO-8859-8 Hebrew model works better here, since + # it's actually the visual one + visual_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + True, hebrew_prober) + hebrew_prober.set_model_probers(logical_hebrew_prober, + visual_hebrew_prober) + # TODO: ORDER MATTERS HERE. I changed the order vs what was in master + # and several tests failed that did not before. Some thought + # should be put into the ordering, and we should consider making + # order not matter here, because that is very counter-intuitive. + self.probers = [ + SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), + SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), + SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), + SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), + SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), + SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), + # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), + SingleByteCharSetProber(TIS_620_THAI_MODEL), + SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), + hebrew_prober, + logical_hebrew_prober, + visual_hebrew_prober, + ] + self.reset() diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 0000000..683add0 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJIS_SM_MODEL +from .enums import ProbingState, MachineState + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + super(SJISProber, self).__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + super(SJISProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return self.context_analyzer.charset_name + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char[2 - char_len:], + char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i + 1 - char_len:i + 3 + - char_len], char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 0000000..177a415 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,286 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re + +from .charsetgroupprober import CharSetGroupProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .mbcsgroupprober import MBCSGroupProber +from .sbcsgroupprober import SBCSGroupProber + + +class UniversalDetector(object): + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b'[\x80-\xFF]') + ESC_DETECTOR = re.compile(b'(\033|~{)') + WIN_BYTE_DETECTOR = re.compile(b'[\x80-\x9F]') + ISO_WIN_MAP = {'iso-8859-1': 'Windows-1252', + 'iso-8859-2': 'Windows-1250', + 'iso-8859-5': 'Windows-1251', + 'iso-8859-6': 'Windows-1256', + 'iso-8859-7': 'Windows-1253', + 'iso-8859-8': 'Windows-1255', + 'iso-8859-9': 'Windows-1254', + 'iso-8859-13': 'Windows-1257'} + + def __init__(self, lang_filter=LanguageFilter.ALL): + self._esc_charset_prober = None + self._charset_probers = [] + self.result = None + self.done = None + self._got_data = None + self._input_state = None + self._last_char = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = None + self.reset() + + def reset(self): + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {'encoding': None, 'confidence': 0.0, 'language': None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b'' + if self._esc_charset_prober: + self._esc_charset_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str): + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not len(byte_str): + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = {'encoding': "UTF-8-SIG", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_UTF32_LE, + codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {'encoding': "UTF-32", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\xFE\xFF\x00\x00'): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = {'encoding': "X-ISO-10646-UCS-4-3412", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\x00\x00\xFF\xFE'): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = {'encoding': "X-ISO-10646-UCS-4-2143", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {'encoding': "UTF-16", + 'confidence': 1.0, + 'language': ''} + + self._got_data = True + if self.result['encoding'] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif self._input_state == InputState.PURE_ASCII and \ + self.ESC_DETECTOR.search(self._last_char + byte_str): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': + self._esc_charset_prober.charset_name, + 'confidence': + self._esc_charset_prober.get_confidence(), + 'language': + self._esc_charset_prober.language} + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': prober.charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language} + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self): + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug('no data received!') + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {'encoding': 'ascii', + 'confidence': 1.0, + 'language': ''} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + lower_charset_name = max_prober.charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + self.result = {'encoding': charset_name, + 'confidence': confidence, + 'language': max_prober.language} + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() <= logging.DEBUG: + if self.result['encoding'] is None: + self.logger.debug('no probers hit minimum threshold') + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug('%s %s confidence = %s', + prober.charset_name, + prober.language, + prober.get_confidence()) + else: + self.logger.debug('%s %s confidence = %s', + group_prober.charset_name, + group_prober.language, + group_prober.get_confidence()) + return self.result diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 0000000..4573267 --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8_SM_MODEL + + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self): + super(UTF8Prober, self).__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = None + self.reset() + + def reset(self): + super(UTF8Prober, self).reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self): + return "utf-8" + + @property + def language(self): + return "" + + def feed(self, byte_str): + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB ** self._num_mb_chars + return 1.0 - unlike + else: + return unlike diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/version.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 0000000..73283cd --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setup.py and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "4.0.0" +VERSION = __version__.split('.') diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 0000000..9c7ecab --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,6 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.4' diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab1e086e4dd881b62f38da30868b9961d3807275 GIT binary patch literal 435 zcmYe~<>g{vU|^WXFgyJ#0|Ucj5C<7EF)%PVFfcF_yD%^?q%fo~<}l8tYO7hD=1{Q&W<`#E+d|7Hyab|vAeEdp= zB7Trk5b-NkKO;XkRX@Evv!uijN(H4BxprX&`7`1KA90 zr0NzVCTAz6rxxoMWESYhm!;;Vg{vU|^WXFgx9Wi-F-Wh=Yt-7#J8F7#J9e7cej|q%cG=q%cM?rZ7b@r7%Y^ zr?8~3wlGAoq_Cy1w=hJprbwi4rf{_|MzN(xrf{e5v@k}oyECNlrtq~er0}J3G&4tW zx-+EkrwFt#qzHidT<#1hf+<2R3@JjXoXyNp-0lo1!YLvx3@IXDK94&?ifD>h3qy(+ zn9rNa-OLchm&()35XGO$+sqIpkjmA}5G9x*9?YOARn@>1l95@gkei=Unv<%Ko|>0h zlvt8ltl;Pu?5U8Pkyw;oj{U{Rp3I08k{~uS0|SFIC@=*W7#K>TWQi@CU@NR#mv3&_ls3`Oh=3=F>_^)vEwQ}xr!GfPSgp;S<6LB76kW=dkQhp(@G zPG*vRL1jrsex9+OrG9Z{Nvdu^Vsdt3dTOzLL1uw|d|7HZ8eci?t-PBqtT@5eUJ-z`$^evpBUR9xTI;WG62J1H(&@9T*l94neOXkeZc@ zw^(xXQ!wn~NzO@4EQ&8qE=opxA&NPLIha9{#ZxR9}!qlBr3p@y-Usg|jP8N@1KsbOknY-VO;DC9_i zrM`Gg)?3UenMJp_ic1oUN{Y)fOEPY;r>B-AmXs9TVlRd;z)3=r`4&rYYEIfMmb}E= z)LX1&i8-Yhq0JE=pP83g5+5%G3II^3FtG42axro-Rtdp`6fOA&~BPi!UN^N*_ zGJ#8QX1`yI*0&fvz_x2LLu0h!7GouPNHYic2kRm^f)6R61N?*iG#QJO85kI_Q%qnv zFrmp&BoE3C3LrueM1Z2N2o$14AWs&7EGaSqNq|cx1Odv8MM?||3@RXJfEocDj9g3* z2o}f4IiU0n&N%_dIR}(yn4(xxn4?%zSfbccSfkie*rGU6*rPa8IHI^xIHR~zxT1Jc zxTAPec%t}Hc%%4J_@V?-_@e|<1fqme1fzsggn}6~g>P|y!oV%RDD@>Mhra~*>m|rv zFG2o#33BR7P?)>~Irt?g`Mw1C^<@;OvWNx|F(4uqM8tuJco2~QA`%%G82na>pas<} zRwo}vXYX6gL9Q;hSlxqMUHxvcMY{U<_=n$Oaq4s0Zd%LkT&7!Bg{fcYRRKst62ya;1-3fgH3BIif#VV!jm8WN42Ga+1O*ZYBMUlYMinUnsUMi=bxKUm zeyIV96HpR;sRd$z(&}`Pfe28M z;-|@uo)Fobf(cNEB3f zfUMMH1lz1Bbc;PcJ|#anKE4RlnlA$7^&)OiXmNrFP-CkI)ch#|H9l^!fLnl9KukbPfQ^k21Od6?a1;Ol literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64f01626daa240ae2a383fd963fca9348d910f90 GIT binary patch literal 7686 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03908c9a540504514904b4a7d9ac930110499d9b GIT binary patch literal 1702 zcmYe~<>g{vU|^WXFgyJ;I|IXG5C<8vFfcGUFfcF_moP9eq%fo~<}gG-XvQc;FrO)k zDTOJ8IfpryC5nZSA%!uKHH9&eErl_WJ%urmBZVcAGleyUt%V_qD@7=UBZaetF^W5d zD}}p-A&MuJF^e~aCxy3#p_ws?FNH6Kzl9-+KSdx#u!SK?AcZlQK~wl8$US~985tND zG#PJkJLVN@|22&IBj3-a}SGgA_aJ$!xjb25|k3o1)8^7D-KEcJ^sOHy?U5|gtN(^HG} z3o;AzQu2%Rlk;=(ixP7a^)vG_OEMF4GK*973Mz}(7#J9YK#m3lHUlFEBUmIP z8O(+H4#Wnj1ADH6fq|ihxmc=%p@yM`v4$y~xtXy@s)R9xv6-=nv4km$IgzD=DT_6c z4a81iC}k)zOJPW4&l4-*C}9EVs9~sKZf0d+C}E0cPGkqE1*?ilVMyczt71b_#hS=j z!d2W-!o7f}gm)n$BSQ*PA{QtyHJSaYbjpho3vAsIbBa?HlJoP@ax#-kiWSN;OEMG^ z^C}hcOEOZ66cUTlZ9|GmQ$sZQZZRk3Ro>zXOUx-vbuB8&FS^BCTv>dJ4H6GUte}_y zaZ-zl5HSSe@PRBUNKJvo7&nL?UtCg@nwWbFSrVj}JFz6SBC{kuB|k6q78`_fi=!wt zJ+rtZwFn%>nk=_C6H80-!4ZFpJvl$GEVZcQ7He@yQD(s{7Le(Pgiyo*au*9I?!-Z{ zB?pQcCLu-+RyIa9CN4%cX1@O%Fq(yhk&CfNl7WE%cN$edq)|Rl8jWWvVFssInG)s_ z#&{M`@D_n0UXv9ZCPmz!G|2-Z_&@|Nh=8Y4h(p0{WJ^f}xzZTqN{|33O|gN}l@z*r zK=}n^LOw{T4%j_444Diyj7u2%7#SI=1X38n7#JDCK{<$lks*(xgt3`{k--3*k05Si z0{gNEWV9yJEtbTh^x|7=+2tS_;v|sykg(&0Wq|mS)QS=-key)XG4U}nF>){!$)Y>z~&sYPgETO`21z~BW6QBcxgU}RxrVPyNy z#su;SSWc70&Cf4HQ?N)Fl#02M^YcJ)kdv7NPF1(K6Z48QOY+M>#VWXHgrqo-VMXA; z1P39glmcfQM4aE^gBq2an3tHIS_F>7B2dVItwnMsA{}tpn+a literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16cd3337f1327552a4728053846cb3641577b8f4 GIT binary patch literal 3934 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 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..ec2035b --- /dev/null +++ b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2019 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.2' + +class DistlibException(Exception): + pass + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + class NullHandler(logging.Handler): + def handle(self, record): pass + def emit(self, record): pass + def createLock(self): self.lock = None + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ee9ebf809e755a723eec231ce2d5aac5bb88bfa GIT binary patch literal 1048 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c2ebbf3ac27dfb57b72bcf5ea9613718b625be5 GIT binary patch literal 42472 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c318257e729845131c250b7c9c22f8528e03b1f3 GIT binary patch literal 17281 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..527bfd8be64239e7c4cb55aa0cc1d4aa0a9f731a GIT binary patch literal 38245 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 a90k+_WCWs_z%$iM|5=!r{;;vJF#`Z;*~@7F literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3173ce8a21f0a0bf831f42e0cfc95cba85ae849 GIT binary patch literal 10184 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 literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a31033713ae961a2fd7e9391a034b36b05f79063 GIT binary patch literal 4428 zcmYe~<>g{vU|^WXFgv|Ukb&Vbh=Yt-7#J8F7#J9es~8vVoqUBVaZ|1WsPEGWJqC7Va;L7WshRd<%r^7WJqC4XN=-ZVNc;`VTj^#XGq~p z;c8(>;Y#IhW{%=X;ZEUcVTj^Qy}PAyVM%P&$W$w*a5%`3|+%FoM9%_~vJO)SbzEh<*X%}g%J*Ud@HOD|1KPgO`s zP0P$nO;O0qQwVSkP%t&H(Bpau@}A#IMg|53O~zY1#U(|VdFk;bl?AEAnoPIYGxOrh zQuE4g@f3h;i-#C|i!(E?B(N?{CUs9{K9l4M9>E@KF0&}8v*D+1~H#iXvJ$#jb=vp6%axFj(zIkgC6j3(nP z#{88GMW8786|J9dO^>Z?l^b0CWGV=3`^(^&^ zGfPr+3lfvF6Vp?R^$Ri!^g$j;$uH7R$t*4bsfGBZSg)Y+7I%DRaePi@NorAIjs(c@ zY+F|sfg@h~tjB!jrfm=~4~(ij*RQW>HcQy4&TAH|%)l)~J?kir5cS-~V5m}Cc& z9AJ_YOmcxqZZOFMCV9amADHBy!xP1lB9J23!VtxpA{5M^DSV65wJb5GG_fSVsLGm4 zK|w(wBqOs}Avq_pxL6^xSfR8yHASH$Um+EuDixXx6jCb+Qj3c-^Ye=Jz`Bx|kh}t7 zgD^PGI2afhY8Yx5vzdY!Rx8sbK`wh^@_S}xowWPENRL3S&f@@`~w9>p}s{}~xS(I8>npuH4N3o<9WfT`lgZwE2BEU5Pm;hG?iVO@4hM-y+R3|X7axwBS@-cBR@-T8S@iB5R zg7_Sa9E=i-LQFi2Jd6U2$Q2XJIewaKw>aYC^AdAY}zQ`1m4ukV`;TL+U`VbHD`HO`ryWEXYluW)BA=3o9EVR``XDzX+rjr9}a1 zRe}V;C0GNfWyzSr)WT59P{L5cn8Mu5RHOlFM`bZ(F*h^TGL|rAF=esTGUaiku+%c9 zu+}nx@=ghB7E1}+0``RrC2R{gz$7P_@H?br>tu!Ym9;(t8zNZ)LbMbQ2U|~ znqaMaVW{cI0d$KGDhSnfi>J7EmJLXI76NZ3quKGr3)iNEej(W011`GxaHOxh6HO!#wk;0PAT$Bc`2N`OZVY*6~OIVs2LA6>@ zO%3Y;)*8lzjEtas&0fP)!@3aE17xfE1g=6nVLdTKb(ENw05)~k&t3pa@L26z~ zW?s5NejajHQI893id8{kQDQE%KC@B?$$)nrO7a!pojpiRWCiLR!j%@66d{|CT9KMu z3aS%ec?e<{G($nUD4-rID2*uOQDSBeC=^l>OApWisaM+kT;4zg?bUFP`}0R;_BuY>Jt+0?C%%i8WD1ft+XH|u_W~tC$vt^K%OlOCVJ?OKC}FP7yc{fjz|@ zAD@_$6CV$$m)Y`@vQm>vz?Bg=-4_Lbj0pk}AQvFH3huO995#?z(hk%HDF)TpEF7S! ZmV=3hQGkh!iGx)@pF^IFk%@_o2>{8k_~rlr literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..836a45bbf10ddbd8c087a42ed546196e1c7aca65 GIT binary patch literal 26579 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 Xu`sbQaWQl83e+>yGh~69hb+thhfIkB literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1fd1deb2973b8a67cc04137a4503ab4901009c94 GIT binary patch literal 11002 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 Y292+P@-`cz5F;Bi2MY@`ha?{}01^#}hyVZp literal 0 HcmV?d00001 diff --git a/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc b/MidasHMM/lib/python3.9/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ac90b31241b27b17cd7850fd3c3ebf30d1cf0d7 GIT binary patch literal 11085 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