From 26963eadcb60b9be223ec5b4a4482a3a21f386be Mon Sep 17 00:00:00 2001 From: artitsamchooosri <33492904+artitsamchooosri@users.noreply.github.com> Date: Mon, 19 Sep 2022 14:22:09 +0700 Subject: [PATCH 1/8] Update .gitignore --- .gitignore | 1 + .../site-packages/_distutils_hack/__init__.py | 128 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5108 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 214 bytes .../site-packages/_distutils_hack/override.py | 1 + .../site-packages/distutils-precedence.pth | 1 + .../pip-22.0.4.dist-info/INSTALLER | 1 + .../pip-22.0.4.dist-info/LICENSE.txt | 20 + .../pip-22.0.4.dist-info/METADATA | 92 + .../site-packages/pip-22.0.4.dist-info/RECORD | 1053 ++ .../pip-22.0.4.dist-info/REQUESTED | 0 .../site-packages/pip-22.0.4.dist-info/WHEEL | 5 + .../pip-22.0.4.dist-info/entry_points.txt | 5 + .../pip-22.0.4.dist-info/top_level.txt | 1 + env/Lib/site-packages/pip/__init__.py | 13 + env/Lib/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 607 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 569 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 728 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9572 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 8355 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11101 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 23100 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 593 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3512 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 4552 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9114 bytes .../site-packages/pip/_internal/build_env.py | 296 + env/Lib/site-packages/pip/_internal/cache.py | 264 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 248 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5283 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6323 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 22523 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1282 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1346 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2132 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9919 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 9208 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13509 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4922 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 327 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 223 + .../pip/_internal/cli/cmdoptions.py | 1018 ++ .../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 | 321 + .../pip/_internal/cli/req_command.py | 506 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 127 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3111 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6152 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1545 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 3112 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8294 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6661 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 3959 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2610 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2124 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1285 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4608 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17771 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10235 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5338 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6091 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3082 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4814 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 96 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 202 + .../pip/_internal/commands/download.py | 140 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 771 ++ .../pip/_internal/commands/list.py | 361 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 178 + .../pip/_internal/commands/uninstall.py | 105 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 366 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 775 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1832 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1209 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4421 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1576 bytes .../pip/_internal/distributions/base.py | 36 + .../pip/_internal/distributions/installed.py | 20 + .../pip/_internal/distributions/sdist.py | 127 + .../pip/_internal/distributions/wheel.py | 31 + .../site-packages/pip/_internal/exceptions.py | 658 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 18040 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 28096 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7095 bytes .../pip/_internal/index/collector.py | 610 ++ .../pip/_internal/index/package_finder.py | 1004 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 520 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 12362 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4630 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6213 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1512 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + env/Lib/site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 62 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2268 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 20822 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 9838 bytes .../pip/_internal/metadata/base.py | 546 ++ .../pip/_internal/metadata/pkg_resources.py | 256 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 236 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1388 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7265 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2713 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1205 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10137 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1004 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3459 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1666 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3421 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4312 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../pip/_internal/models/link.py | 288 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 129 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 110 + .../pip/_internal/models/wheel.py | 89 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 224 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7504 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2905 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5471 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8379 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 10710 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1420 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2037 bytes .../pip/_internal/network/auth.py | 323 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 185 + .../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-310.pyc | Bin 0 -> 172 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 3985 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6170 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14868 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 178 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1405 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1439 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2350 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1195 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1419 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2735 bytes .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 149 + .../pip/_internal/operations/freeze.py | 254 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 236 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1523 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3307 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21069 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 738 ++ .../pip/_internal/operations/prepare.py | 642 ++ .../site-packages/pip/_internal/pyproject.py | 168 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2572 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12137 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13467 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 22152 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 5814 bytes .../__pycache__/req_tracker.cpython-310.pyc | Bin 0 -> 4280 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 18922 bytes .../pip/_internal/req/constructors.py | 490 + .../pip/_internal/req/req_file.py | 536 ++ .../pip/_internal/req/req_install.py | 858 ++ .../pip/_internal/req/req_set.py | 189 + .../pip/_internal/req/req_tracker.py | 124 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 172 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1024 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 179 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 12266 bytes .../_internal/resolution/legacy/resolver.py | 467 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 183 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6426 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18337 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19191 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4843 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7685 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3152 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7441 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8203 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 547 ++ .../resolution/resolvelib/factory.py | 739 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 248 + .../resolution/resolvelib/reporter.py | 68 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 298 + .../pip/_internal/self_outdated_check.py | 189 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 167 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1495 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1593 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1483 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4052 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 490 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3292 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2058 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1074 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2123 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1280 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 1277 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 5135 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 917 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1646 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5169 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 962 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9608 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 18690 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1963 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2055 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4570 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5749 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7272 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6641 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1568 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3263 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4388 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/distutils_args.py | 42 + .../pip/_internal/utils/egg_link.py | 75 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 144 + .../_internal/utils/inject_securetransport.py | 35 + .../pip/_internal/utils/logging.py | 343 + .../site-packages/pip/_internal/utils/misc.py | 629 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 195 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 246 + .../pip/_internal/utils/unpacking.py | 258 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 136 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 490 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3317 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12520 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5036 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8424 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21119 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 101 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 377 + env/Lib/site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2890 bytes .../__pycache__/distro.cpython-310.pyc | Bin 0 -> 38208 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27561 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66573 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 618 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1556 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3132 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 1822 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 732 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8192 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2768 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4692 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4227 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 663 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 43 + .../_vendor/cachecontrol/caches/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 269 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 3343 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1549 bytes .../_vendor/cachecontrol/caches/file_cache.py | 150 + .../cachecontrol/caches/redis_cache.py | 37 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 415 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 186 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 251 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 430 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1525 bytes .../pip/_vendor/certifi/cacert.pem | 4362 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1875 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27154 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1105 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 5715 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2204 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3458 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2877 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 376 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1112 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2559 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2606 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8353 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2410 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12038 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1113 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27158 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1113 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19082 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1121 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 2998 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22110 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37617 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47898 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46088 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44537 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47858 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 60991 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44713 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44554 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4404 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2225 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1108 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 18735 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3054 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1677 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2448 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 5800 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 1957 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 414 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-310.pyc | Bin 0 -> 171 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2670 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-310.pyc | Bin 0 -> 176 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 7938 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-310.pyc | Bin 0 -> 419 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 2980 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 7878 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1666 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 3926 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4543 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-310.pyc | Bin 0 -> 1038 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31512 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 42592 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17293 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38359 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10206 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 4930 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26538 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11012 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11230 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 52550 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20127 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 27285 bytes .../pip/_vendor/distlib/_backport/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 459 bytes .../__pycache__/misc.cpython-310.pyc | Bin 0 -> 1081 bytes .../__pycache__/shutil.cpython-310.pyc | Bin 0 -> 21518 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 15873 bytes .../__pycache__/tarfile.cpython-310.pyc | Bin 0 -> 62456 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 | 1122 +++ .../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 | 147 + .../pip/_vendor/distlib/metadata.py | 1058 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 429 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 96768 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 180736 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 105984 bytes .../site-packages/pip/_vendor/distlib/util.py | 1969 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 90112 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 166400 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 99840 bytes .../pip/_vendor/distlib/wheel.py | 1053 ++ env/Lib/site-packages/pip/_vendor/distro.py | 1386 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1278 bytes .../__pycache__/_ihatexml.cpython-310.pyc | Bin 0 -> 13835 bytes .../__pycache__/_inputstream.cpython-310.pyc | Bin 0 -> 21654 bytes .../__pycache__/_tokenizer.cpython-310.pyc | Bin 0 -> 37336 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 4772 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 161237 bytes .../__pycache__/html5parser.cpython-310.pyc | Bin 0 -> 88495 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 10719 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 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 328 bytes .../_trie/__pycache__/_base.cpython-310.pyc | Bin 0 -> 1580 bytes .../_trie/__pycache__/py.cpython-310.pyc | Bin 0 -> 2243 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-310.pyc | Bin 0 -> 176 bytes .../alphabeticalattributes.cpython-310.pyc | Bin 0 -> 1306 bytes .../filters/__pycache__/base.cpython-310.pyc | Bin 0 -> 846 bytes .../inject_meta_charset.cpython-310.pyc | Bin 0 -> 1844 bytes .../filters/__pycache__/lint.cpython-310.pyc | Bin 0 -> 2552 bytes .../__pycache__/optionaltags.cpython-310.pyc | Bin 0 -> 2705 bytes .../__pycache__/sanitizer.cpython-310.pyc | Bin 0 -> 20010 bytes .../__pycache__/whitespace.cpython-310.pyc | Bin 0 -> 1352 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-310.pyc | Bin 0 -> 917 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1529 bytes .../__pycache__/sax.cpython-310.pyc | Bin 0 -> 1436 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3308 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11301 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 9388 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 11688 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 13007 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-310.pyc | Bin 0 -> 3958 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6919 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 1690 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 3448 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 6535 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1896 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-310.pyc | Bin 0 -> 823 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2794 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 723 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9566 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38201 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1960 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 187 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 150922 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 397 + .../pip/_vendor/idna/idnadata.py | 2137 +++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8512 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1403 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 194 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1784 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6292 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25421 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 | 1012 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 566 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 422 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7276 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4588 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2681 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9265 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3951 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21503 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12172 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3551 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12901 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 289 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3572 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4536 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 2940 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1513 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1331 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4354 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 2936 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12282 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 | 51 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 897 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 10044 bytes .../_vendor/pep517/in_process/_in_process.py | 363 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 375 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99866 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 636 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 331 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10452 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1212 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4244 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5178 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3166 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6867 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 271 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6410 bytes .../pip/_vendor/platformdirs/android.py | 119 + .../pip/_vendor/platformdirs/api.py | 156 + .../pip/_vendor/platformdirs/macos.py | 64 + .../pip/_vendor/platformdirs/unix.py | 181 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 182 + .../pip/_vendor/progress/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5708 bytes .../progress/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2671 bytes .../__pycache__/colors.cpython-310.pyc | Bin 0 -> 1464 bytes .../__pycache__/counter.cpython-310.pyc | Bin 0 -> 1535 bytes .../__pycache__/spinner.cpython-310.pyc | Bin 0 -> 1365 bytes .../site-packages/pip/_vendor/progress/bar.py | 93 + .../pip/_vendor/progress/colors.py | 79 + .../pip/_vendor/progress/counter.py | 47 + .../pip/_vendor/progress/spinner.py | 45 + .../pip/_vendor/pygments/__init__.py | 83 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2976 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 564 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15429 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1859 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2630 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 2986 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24342 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1168 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2020 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2932 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3533 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4518 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4555 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4627 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31181 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9138 bytes .../pip/_vendor/pygments/cmdline.py | 663 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 937 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29493 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 153 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4644 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 5511 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3061 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4334 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29047 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17473 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4564 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13470 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4780 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2080 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4110 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6308 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 3975 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9225 bytes .../_vendor/pygments/formatters/_mapping.py | 84 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 168 + .../pip/_vendor/pygments/formatters/html.py | 983 ++ .../pip/_vendor/pygments/formatters/img.py | 641 ++ .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 511 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 879 ++ .../pip/_vendor/pygments/lexers/__init__.py | 341 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9160 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 58098 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29359 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 580 ++ .../pip/_vendor/pygments/lexers/python.py | 1188 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 69 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 155 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 93 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3196 bytes .../pip/_vendor/pygments/token.py | 212 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 328 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7101 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7158 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10081 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 175275 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9048 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 34743 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24761 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12078 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9790 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8581 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5789 +++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 593 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 15633 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1069 +++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 332 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4014 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 531 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1283 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 17019 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6630 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8073 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 615 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1650 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18675 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5224 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2883 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 970 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24289 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 484 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19605 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4647 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4429 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24372 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 538 ++ .../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 | 77 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 133 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 973 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 771 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1060 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 582 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6633 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2553 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15106 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7139 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 177 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 353 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 482 + .../pip/_vendor/resolvelib/structs.py | 165 + .../pip/_vendor/rich/__init__.py | 172 + .../pip/_vendor/rich/__main__.py | 280 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5867 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7301 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7790 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360030 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1170 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 471 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 6588 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2616 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1268 bytes .../__pycache__/_lru_cache.cpython-310.pyc | Bin 0 -> 1551 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5073 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 616 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5135 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 15189 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 814 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 663 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1854 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1492 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1290 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7944 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 5993 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2959 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 7733 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3475 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 16731 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1413 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6173 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 70420 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1730 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6462 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 6805 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6005 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 331 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3243 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1503 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2240 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2592 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 5319 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4723 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3802 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14654 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11544 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3378 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9272 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5889 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5034 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4458 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1471 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3684 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 6367 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 25085 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 33313 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6683 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11277 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1347 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 503 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4016 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 3713 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2964 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1855 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20545 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4375 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4569 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20498 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1739 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 19014 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 26958 bytes .../rich/__pycache__/tabulate.cpython-310.pyc | Bin 0 -> 1732 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 1696 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 39272 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4676 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 269 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19515 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7293 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 210 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_lru_cache.py | 34 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 848 ++ .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_windows.py | 72 + .../site-packages/pip/_vendor/rich/_wrap.py | 55 + env/Lib/site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 312 + .../site-packages/pip/_vendor/rich/ansi.py | 228 + env/Lib/site-packages/pip/_vendor/rich/bar.py | 94 + env/Lib/site-packages/pip/_vendor/rich/box.py | 483 + .../site-packages/pip/_vendor/rich/cells.py | 147 + .../site-packages/pip/_vendor/rich/color.py | 581 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2211 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 175 + .../pip/_vendor/rich/default_styles.py | 183 + .../pip/_vendor/rich/diagnose.py | 6 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 54 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 147 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 92 + .../site-packages/pip/_vendor/rich/layout.py | 444 + .../site-packages/pip/_vendor/rich/live.py | 365 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 268 + .../site-packages/pip/_vendor/rich/markup.py | 244 + .../site-packages/pip/_vendor/rich/measure.py | 149 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 250 + .../site-packages/pip/_vendor/rich/pretty.py | 903 ++ .../pip/_vendor/rich/progress.py | 1036 ++ .../pip/_vendor/rich/progress_bar.py | 216 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 151 + .../site-packages/pip/_vendor/rich/rule.py | 115 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 720 ++ .../site-packages/pip/_vendor/rich/spinner.py | 134 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 785 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 735 ++ .../site-packages/pip/_vendor/rich/table.py | 968 ++ .../pip/_vendor/rich/tabulate.py | 51 + .../pip/_vendor/rich/terminal_theme.py | 55 + .../site-packages/pip/_vendor/rich/text.py | 1282 +++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 678 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + env/Lib/site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16350 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2590 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1203 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1207 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1085 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1387 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1175 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8405 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 3993 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1740 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 7937 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 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 355 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 16309 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2399 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/typing_extensions.py | 2296 +++++ .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2165 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10839 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13620 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25350 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 10970 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8161 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2726 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15178 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5602 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 20903 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 569 ++ .../pip/_vendor/urllib3/connectionpool.py | 1108 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 175 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1355 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8171 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3610 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15514 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21917 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5577 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10688 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9075 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../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 | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 176 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27636 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1286 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../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-310.pyc | Bin 0 -> 1085 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3413 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1320 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1040 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3448 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2333 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16118 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11287 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3257 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7375 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8917 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10660 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3069 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../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 | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 161 + .../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 + env/Lib/site-packages/pip/_vendor/vendor.txt | 25 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9722 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5212 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1917 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5019 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2568 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 + env/Lib/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3288 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100018 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 169 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20230 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198785 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 27 + .../_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 685 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 531 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1131 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2675 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1487 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9172 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4077 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20438 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17317 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1622 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13002 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-310.pyc | Bin 0 -> 2877 bytes .../__pycache__/setup.cpython-310.pyc | Bin 0 -> 297 bytes .../data/my-test-package-source/setup.py | 6 + .../setuptools-58.1.0.dist-info/INSTALLER | 1 + .../setuptools-58.1.0.dist-info/LICENSE | 19 + .../setuptools-58.1.0.dist-info/METADATA | 119 + .../setuptools-58.1.0.dist-info/RECORD | 296 + .../setuptools-58.1.0.dist-info/REQUESTED | 0 .../setuptools-58.1.0.dist-info/WHEEL | 5 + .../entry_points.txt | 56 + .../setuptools-58.1.0.dist-info/top_level.txt | 3 + env/Lib/site-packages/setuptools/__init__.py | 242 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8573 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 530 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2056 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 5826 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9098 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 20886 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 837 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5250 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 36233 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 830 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 1926 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3715 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2733 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 887 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4615 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42619 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3598 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32472 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 462 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15738 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1092 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 304 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7330 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1005 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 436 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13815 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6543 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6530 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33257 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13930 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3571 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 6638 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 8724 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 232 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2753 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5864 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34029 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 4974 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 6988 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10614 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 5958 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10804 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2289 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17544 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14763 bytes .../__pycache__/py35compat.cpython-310.pyc | Bin 0 -> 608 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 405 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2875 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12542 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8451 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 6809 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 14195 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7339 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5169 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-310.pyc | Bin 0 -> 511 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3645 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3626 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 19702 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12268 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8611 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3873 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4850 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16247 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9869 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 3992 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 4989 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2128 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10310 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 13844 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2327 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3068 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1750 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5152 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2179 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1024 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8663 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14479 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5355 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 | 392 + .../_distutils/command/build_scripts.py | 152 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 678 ++ .../_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 | 578 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 332 + .../setuptools/_distutils/util.py | 535 ++ .../setuptools/_distutils/version.py | 347 + .../setuptools/_distutils/versionpredicate.py | 166 + env/Lib/site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 166 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16302 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198782 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 247 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 109977 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 17947 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-310.pyc | Bin 0 -> 682 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 528 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1128 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2672 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1484 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9166 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4071 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20435 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17314 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1619 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12999 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 + env/Lib/site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes env/Lib/site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes env/Lib/site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 355 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2357 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13083 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1570 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2446 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9873 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 7850 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6133 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 1375 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 63707 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22001 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4032 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2409 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 4152 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2410 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4517 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 821 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2488 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 907 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6508 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4669 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8113 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 794 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6163 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 40 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 232 + .../setuptools/command/develop.py | 193 + .../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 | 149 + .../site-packages/setuptools/command/test.py | 252 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + env/Lib/site-packages/setuptools/config.py | 749 ++ env/Lib/site-packages/setuptools/dep_util.py | 25 + env/Lib/site-packages/setuptools/depends.py | 175 + env/Lib/site-packages/setuptools/dist.py | 1150 +++ env/Lib/site-packages/setuptools/errors.py | 16 + env/Lib/site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2916 bytes env/Lib/site-packages/setuptools/glob.py | 167 + env/Lib/site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes env/Lib/site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes env/Lib/site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes env/Lib/site-packages/setuptools/installer.py | 97 + env/Lib/site-packages/setuptools/launch.py | 36 + env/Lib/site-packages/setuptools/monkey.py | 177 + env/Lib/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 + env/Lib/site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + env/Lib/site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + env/Lib/site-packages/setuptools/version.py | 6 + env/Lib/site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + env/Scripts/Activate.ps1 | 420 + env/Scripts/activate | 69 + env/Scripts/activate.bat | 34 + env/Scripts/deactivate.bat | 22 + env/Scripts/pip.exe | Bin 0 -> 106354 bytes env/Scripts/pip3.10.exe | Bin 0 -> 106354 bytes env/Scripts/pip3.exe | Bin 0 -> 106354 bytes env/Scripts/python.exe | Bin 0 -> 263120 bytes env/Scripts/pythonw.exe | Bin 0 -> 251856 bytes env/pyvenv.cfg | 3 + 1357 files changed, 250677 insertions(+) create mode 100644 env/Lib/site-packages/_distutils_hack/__init__.py create mode 100644 env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 env/Lib/site-packages/_distutils_hack/override.py create mode 100644 env/Lib/site-packages/distutils-precedence.pth create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/INSTALLER create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/LICENSE.txt create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/METADATA create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/RECORD create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/REQUESTED create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/WHEEL create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/entry_points.txt create mode 100644 env/Lib/site-packages/pip-22.0.4.dist-info/top_level.txt create mode 100644 env/Lib/site-packages/pip/__init__.py create mode 100644 env/Lib/site-packages/pip/__main__.py create mode 100644 env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/build_env.py create mode 100644 env/Lib/site-packages/pip/_internal/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/configuration.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 env/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 env/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 env/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 env/Lib/site-packages/pip/_internal/main.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 env/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 env/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 env/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 env/Lib/site-packages/pip/_internal/models/index.py create mode 100644 env/Lib/site-packages/pip/_internal/models/link.py create mode 100644 env/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 env/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 env/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 env/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 env/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 env/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/network/download.py create mode 100644 env/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/network/session.py create mode 100644 env/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 env/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 env/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 env/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_tracker.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 env/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/egg_link.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/models.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 env/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 env/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/enums.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 env/Lib/site-packages/pip/_vendor/chardet/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/win32.py create mode 100644 env/Lib/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 env/Lib/site-packages/pip/_vendor/distro.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/build.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/check.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/meta.py create mode 100644 env/Lib/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__pycache__/colors.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/progress/bar.py create mode 100644 env/Lib/site-packages/pip/_vendor/progress/colors.py create mode 100644 env/Lib/site-packages/pip/_vendor/progress/counter.py create mode 100644 env/Lib/site-packages/pip/_vendor/progress/spinner.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/console.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filter.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/style.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/token.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/util.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_extension.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_loop.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_lru_cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_pick.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_stack.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_timer.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_windows.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/abc.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/align.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/ansi.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/bar.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/box.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/cells.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/color.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/columns.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/console.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/constrain.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/containers.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/control.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/emoji.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/errors.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/filesize.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/json.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/layout.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/live.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/live_render.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/logging.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/markup.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/measure.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/padding.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/pager.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/palette.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/panel.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/pretty.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/progress.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/prompt.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/protocol.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/region.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/repr.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/rule.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/scope.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/screen.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/segment.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/spinner.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/status.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/style.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/styled.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/syntax.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/table.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/tabulate.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/text.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/theme.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/themes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/traceback.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/tree.py create mode 100644 env/Lib/site-packages/pip/_vendor/six.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/after.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/before.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 env/Lib/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 env/Lib/site-packages/pip/_vendor/typing_extensions.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 env/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 env/Lib/site-packages/pip/py.typed create mode 100644 env/Lib/site-packages/pkg_resources/__init__.py create mode 100644 env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 env/Lib/site-packages/pkg_resources/extern/__init__.py create mode 100644 env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc create mode 100644 env/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/INSTALLER create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/LICENSE create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/METADATA create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/RECORD create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/REQUESTED create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/WHEEL create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/entry_points.txt create mode 100644 env/Lib/site-packages/setuptools-58.1.0.dist-info/top_level.txt create mode 100644 env/Lib/site-packages/setuptools/__init__.py create mode 100644 env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/config.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_deprecation_warning.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/__init__.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/archive_util.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/cmd.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/build.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/check.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/clean.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/config.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/register.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/command/upload.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/config.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/core.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/debug.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/dep_util.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/dir_util.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/dist.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/errors.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/extension.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/file_util.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/filelist.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/log.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/py35compat.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/py38compat.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/spawn.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/text_file.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/util.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/version.py create mode 100644 env/Lib/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 env/Lib/site-packages/setuptools/_imp.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/__init__.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/_compat.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/_typing.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 env/Lib/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 env/Lib/site-packages/setuptools/archive_util.py create mode 100644 env/Lib/site-packages/setuptools/build_meta.py create mode 100644 env/Lib/site-packages/setuptools/cli-32.exe create mode 100644 env/Lib/site-packages/setuptools/cli-64.exe create mode 100644 env/Lib/site-packages/setuptools/cli.exe create mode 100644 env/Lib/site-packages/setuptools/command/__init__.py create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/command/alias.py create mode 100644 env/Lib/site-packages/setuptools/command/bdist_egg.py create mode 100644 env/Lib/site-packages/setuptools/command/bdist_rpm.py create mode 100644 env/Lib/site-packages/setuptools/command/build_clib.py create mode 100644 env/Lib/site-packages/setuptools/command/build_ext.py create mode 100644 env/Lib/site-packages/setuptools/command/build_py.py create mode 100644 env/Lib/site-packages/setuptools/command/develop.py create mode 100644 env/Lib/site-packages/setuptools/command/dist_info.py create mode 100644 env/Lib/site-packages/setuptools/command/easy_install.py create mode 100644 env/Lib/site-packages/setuptools/command/egg_info.py create mode 100644 env/Lib/site-packages/setuptools/command/install.py create mode 100644 env/Lib/site-packages/setuptools/command/install_egg_info.py create mode 100644 env/Lib/site-packages/setuptools/command/install_lib.py create mode 100644 env/Lib/site-packages/setuptools/command/install_scripts.py create mode 100644 env/Lib/site-packages/setuptools/command/launcher manifest.xml create mode 100644 env/Lib/site-packages/setuptools/command/py36compat.py create mode 100644 env/Lib/site-packages/setuptools/command/register.py create mode 100644 env/Lib/site-packages/setuptools/command/rotate.py create mode 100644 env/Lib/site-packages/setuptools/command/saveopts.py create mode 100644 env/Lib/site-packages/setuptools/command/sdist.py create mode 100644 env/Lib/site-packages/setuptools/command/setopt.py create mode 100644 env/Lib/site-packages/setuptools/command/test.py create mode 100644 env/Lib/site-packages/setuptools/command/upload.py create mode 100644 env/Lib/site-packages/setuptools/command/upload_docs.py create mode 100644 env/Lib/site-packages/setuptools/config.py create mode 100644 env/Lib/site-packages/setuptools/dep_util.py create mode 100644 env/Lib/site-packages/setuptools/depends.py create mode 100644 env/Lib/site-packages/setuptools/dist.py create mode 100644 env/Lib/site-packages/setuptools/errors.py create mode 100644 env/Lib/site-packages/setuptools/extension.py create mode 100644 env/Lib/site-packages/setuptools/extern/__init__.py create mode 100644 env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 env/Lib/site-packages/setuptools/glob.py create mode 100644 env/Lib/site-packages/setuptools/gui-32.exe create mode 100644 env/Lib/site-packages/setuptools/gui-64.exe create mode 100644 env/Lib/site-packages/setuptools/gui.exe create mode 100644 env/Lib/site-packages/setuptools/installer.py create mode 100644 env/Lib/site-packages/setuptools/launch.py create mode 100644 env/Lib/site-packages/setuptools/monkey.py create mode 100644 env/Lib/site-packages/setuptools/msvc.py create mode 100644 env/Lib/site-packages/setuptools/namespaces.py create mode 100644 env/Lib/site-packages/setuptools/package_index.py create mode 100644 env/Lib/site-packages/setuptools/py34compat.py create mode 100644 env/Lib/site-packages/setuptools/sandbox.py create mode 100644 env/Lib/site-packages/setuptools/script (dev).tmpl create mode 100644 env/Lib/site-packages/setuptools/script.tmpl create mode 100644 env/Lib/site-packages/setuptools/unicode_utils.py create mode 100644 env/Lib/site-packages/setuptools/version.py create mode 100644 env/Lib/site-packages/setuptools/wheel.py create mode 100644 env/Lib/site-packages/setuptools/windows_support.py create mode 100644 env/Scripts/Activate.ps1 create mode 100644 env/Scripts/activate create mode 100644 env/Scripts/activate.bat create mode 100644 env/Scripts/deactivate.bat create mode 100644 env/Scripts/pip.exe create mode 100644 env/Scripts/pip3.10.exe create mode 100644 env/Scripts/pip3.exe create mode 100644 env/Scripts/python.exe create mode 100644 env/Scripts/pythonw.exe create mode 100644 env/pyvenv.cfg diff --git a/.gitignore b/.gitignore index 9bea433..ff14f3f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store +.env diff --git a/env/Lib/site-packages/_distutils_hack/__init__.py b/env/Lib/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..5f40996 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a09a5b6876b54b9c7d5907e3642e024689de9a2d GIT binary patch literal 5108 zcmbtYTXWmS72X9v2%;ofmL1n=(gv;5G@Qm%e2Xtt9VeEZy0z&vvf~Ly85ra)MMxk) zFF?s+rJ1(!Op=#Q`wygWu#i=v>1U{|${`f`_b@-Fc1czELyu-K?4VZq+PdNVZy7XEj?| zyA#3`mUQ+^&O|}jPgreIOb7?}qL>s#+^58pn8tlt%!m^1GoLYWM9e;6Vs^)+~e2|-j}Uv zI+-t2HlC5JXA@}r9nRR|5Q4km$8ON>MhXDjx@-cZyCjodH;JM!{=lvGlEM3+voiL^ z^}{%FmF$LoL&k2>lJ3KNy@zf)61`BmLC1Xhw*5^vl)iA2$nAB6 zj05G@F}*HZ{(2Cp*o~AcmBJIgh+Ka?3NX1PV~C97o&>OLtQQlkd|^C6nMt_$fh#+4 z4|_>ke&WXYhVVH+#fcw=*e~D_@I?6{NP?*2htS8S`@XEKRNPLKxPHf#c%{J&J}YDC zj+h6)w!bFbS1sa)kaSqJInqkmPEDvLofzmQod{yhmUMbusu*azpwo;}XTw(=Y%)$Q zdV0##G_0tb?{6+%S>A}$+VWRX7_DDCeKYjqwPo2^U%nmGm*XIjr@MY*&0mr6vX?LI zwJC%6Trw=c9K~v6vO*ikz2gPEz{x#cU~wO+DBFc136i*qH~a} zyCABjCVcJ*BO))d9lp)B*dqJd-qzIK;=f^!PH6HLs*1$*e?DR&87^bnK7&^pU~~Q> z95${cT=CmzR-w73w$dm2%@d-YvfhZcRC^-ndxXf;w|Wg(0jaFVNd7|t(Sir^{oLq!2j zO`$0pH47w&)f|oF*3DKsazLz$Ik`=We3m;L)_I|hV|<@YNG}$y>-511G^F)iLvUEa zAk7PNjkI9(KQ6lXeG-Pz20SH%|A2gM)EslG`X>BoJy21n4PLnGz6!`ED*DUX$)y|j z?tgyo?%mr<-uP1 zZXB~{2~j5ew2_kKaP<}*_HA1ppruM`!_}*qcXB-#>!I8no0xVGA)iKlqa+y(#b5O($;6P zM=x{p6e)p7<#{6}&{#7FF;+J83aLeM4=UtD7STMd%F&W%NIygx8$_V1XrAQi)ImL= z548;F@MAnAYzOp9xYm|IEu}7Ky6VJhA^LSR2P;gAoE+o78AG^q%9mV`2_K;Hlfuy zl^$Ch=G!|m@oxr5d8*nVQV)L=7O1At-g+JnTc}=oT-iiO!B?5E0#J8{{e%CNZ(9jS zy@h%P2-uFfUDzt@WW?@e1$pbR9hykNNDd#?W{9~SsQmU2XG50V~Vg2QrDa@3(x5Pk9xlLMnwLP2rjWI!*?Nn(mFkogUKv+AFpGI4-T6)rcL#0nojg7+qFS*L7u7j z^+sCC(@upB7^z8vb|xmZ^w4Z(0~NKANQf8%m1SbJ(`!5$%G_at{ejR>%ydwBoHS;g z{(Cvz*IIg?f06l!gx5)$i)IT1++zrLpkS7hvfzf?jgkelwEC+${!^(k$V*w08LLt@ zTC(G+UWdwMeXdY$H|S>Rfxe?eq_Yl2PhGnB(HWPriPA~LA67Fov3kf|U%|IAg5~j2 zy^sB@;8Ik&^v}LlJ%n$pP|RW_!sMHH;SJAap6DrT$*cE*Q0M|feFD*NQS!|(4BBYZ zxzR`lCS>L+Scrio-go~Oo_%|#edl?}MThFgkZr?AS%8A!465y^p5Gxu75aB`LoLb# z)ubCV$qrP(*Cm-|xGy??`8Z)>S8m);K{u(mU&y9=>g>4-7e;2&0kpc0KPHe+e2(dQ z7tNok(4Sd0w)r*+e56bECYAgMX?0cbqvHx4goekJ#N0Cm|7jpK5g!MqsB{v``(9Qg;BYQglFsHw5AWu!>f((rUIr_5 ze1S5h6|^5inod}ATz!t`Lx@O`wBeY1x<8p=0wT`Y16?>-I9F^QW z=%d~pe3;rwwyEg6OP%7Ee%O;Y=--W(qMOPlYk*s{w&oU}g`kf}gw^$vQy#F^GcTO2mI S`6;D2sdkJYSAxtJU;qFOg*xj1 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/_distutils_hack/override.py b/env/Lib/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/env/Lib/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/env/Lib/site-packages/distutils-precedence.pth b/env/Lib/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..6de4198 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip-22.0.4.dist-info/INSTALLER b/env/Lib/site-packages/pip-22.0.4.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/env/Lib/site-packages/pip-22.0.4.dist-info/LICENSE.txt b/env/Lib/site-packages/pip-22.0.4.dist-info/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present 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/env/Lib/site-packages/pip-22.0.4.dist-info/METADATA b/env/Lib/site-packages/pip-22.0.4.dist-info/METADATA new file mode 100644 index 0000000..4e68399 --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/METADATA @@ -0,0 +1,92 @@ +Metadata-Version: 2.1 +Name: pip +Version: 22.0.4 +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.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +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/env/Lib/site-packages/pip-22.0.4.dist-info/RECORD b/env/Lib/site-packages/pip-22.0.4.dist-info/RECORD new file mode 100644 index 0000000..58d18e5 --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/RECORD @@ -0,0 +1,1053 @@ +../../Scripts/pip.exe,sha256=O3D8s1kjv_1eadu5XA7lwG_QHAsnQXbXg0rl7OJA3cc,106354 +../../Scripts/pip3.10.exe,sha256=O3D8s1kjv_1eadu5XA7lwG_QHAsnQXbXg0rl7OJA3cc,106354 +../../Scripts/pip3.exe,sha256=O3D8s1kjv_1eadu5XA7lwG_QHAsnQXbXg0rl7OJA3cc,106354 +pip-22.0.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-22.0.4.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-22.0.4.dist-info/METADATA,sha256=bGtDzdgW1AF93Nx32ySc78yQHtHkOrRD146Dvsz85CM,4166 +pip-22.0.4.dist-info/RECORD,, +pip-22.0.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-22.0.4.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 +pip-22.0.4.dist-info/entry_points.txt,sha256=5ExSa1s54zSPNA_1epJn5SX06786S8k5YHwskMvVYzw,125 +pip-22.0.4.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=b_avKym1xgWv1_1CobpKDp59sdjm_9nwB7sencJQUEY,357 +pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198 +pip/__pycache__/__init__.cpython-310.pyc,, +pip/__pycache__/__main__.cpython-310.pyc,, +pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573 +pip/_internal/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/__pycache__/build_env.cpython-310.pyc,, +pip/_internal/__pycache__/cache.cpython-310.pyc,, +pip/_internal/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/__pycache__/exceptions.cpython-310.pyc,, +pip/_internal/__pycache__/main.cpython-310.pyc,, +pip/_internal/__pycache__/pyproject.cpython-310.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,, +pip/_internal/build_env.py,sha256=QAsnxJFvj74jS2cZUcxk7zXLvrtAYiRL0EkSPkpSJTo,9739 +pip/_internal/cache.py,sha256=71eaYwrls34HJ6gzbmmYiotiKhPNFTM_tqYJXD5nf3s,9441 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,, +pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676 +pip/_internal/cli/base_command.py,sha256=zYHdQssEkCvWHYf3dtIApaVaxOwAh3maA61nVxaZF2M,8152 +pip/_internal/cli/cmdoptions.py,sha256=TTYO0nxK9YyLwrXk1NHrn7X3dbGoqdV02Yb8kdVoVhc,28526 +pip/_internal/cli/command_context.py,sha256=a1pBBvvGLDiZ1Kw64_4tT6HmRTwYDoYy8JFgG5Czn7s,760 +pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472 +pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614 +pip/_internal/cli/parser.py,sha256=CDXTuFr2UD8ozOlZYf1KDziQdo9-X_IaYOiUcyJQwrA,10788 +pip/_internal/cli/progress_bars.py,sha256=_52w11WoZrvDSR3oItLWvLrEZFUKAfLf4Y6I6WtOnIU,10339 +pip/_internal/cli/req_command.py,sha256=VwqonOy18QwZsRsVjHhp-6w15fG9x3Ltwoa8yJqQno8,18669 +pip/_internal/cli/spinners.py,sha256=TFhjxtOnLeNJ5YmRvQm4eKPgPbJNkZiqO8jOXuxRaYU,5076 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=Vc1HjsLEtyCh7506OozPHPKXe2Hk-z9cFkFF3BMj1lM,3736 +pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-310.pyc,, +pip/_internal/commands/__pycache__/check.cpython-310.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-310.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-310.pyc,, +pip/_internal/commands/__pycache__/download.cpython-310.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-310.pyc,, +pip/_internal/commands/__pycache__/help.cpython-310.pyc,, +pip/_internal/commands/__pycache__/index.cpython-310.pyc,, +pip/_internal/commands/__pycache__/install.cpython-310.pyc,, +pip/_internal/commands/__pycache__/list.cpython-310.pyc,, +pip/_internal/commands/__pycache__/search.cpython-310.pyc,, +pip/_internal/commands/__pycache__/show.cpython-310.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/commands/cache.py,sha256=p9gvc6W_xgxE2zO0o8NXqO1gGJEinEK42qEC-a7Cnuk,7524 +pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685 +pip/_internal/commands/completion.py,sha256=kTG_I1VR3N5kGC4Ma9pQTSoY9Q1URCrNyseHSQ-rCL4,2958 +pip/_internal/commands/configuration.py,sha256=arE8vLstjBg-Ar1krXF-bBmT1qBtnL7Fpk-NVh38a0U,8944 +pip/_internal/commands/debug.py,sha256=krET-y45CnQzXwKR1qA3M_tJE4LE2vnQtm3yfGyDSnE,6629 +pip/_internal/commands/download.py,sha256=gVIAEOcpWolhRj9hl89Qzn52G2b_pcZ8naXhxaXobdo,4942 +pip/_internal/commands/freeze.py,sha256=gCjoD6foBZPBAAYx5t8zZLkJhsF_ZRtnb3dPuD7beO8,2951 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=8pYkICUJlccjm3E83b7UuZ5DtOfLh1N7ZHXAgkajjHo,4849 +pip/_internal/commands/install.py,sha256=YVygBF6vfrNi0jmdNBCM6bcoWb7vaALEGG1--8Mmf88,27893 +pip/_internal/commands/list.py,sha256=tTjZ7u0VIh3uhnX231Q9pwt6ObT_zrDfixRQvgpJAvM,12221 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=2VicM3jF0YWgn4O1jG_QF5oxOT0ln57VDu1NE6hqWcM,5859 +pip/_internal/commands/uninstall.py,sha256=DNTYAGJNljMO_YYBxrpcwj0FEl7lo_P55_98O6g2TNk,3526 +pip/_internal/commands/wheel.py,sha256=7HAjLclZxIzBrX6JmhmGBVxH5xrjaBYCtSdpQi1pWCE,6206 +pip/_internal/configuration.py,sha256=qmCX3uuVM73PQeAuWQHic22bhops8s31B8k02nFAoiQ,13171 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/distributions/base.py,sha256=3FUYD8Gb4YuSu3pggC_FRctZBDbpm5ZK89tPksIUjoE,1172 +pip/_internal/distributions/installed.py,sha256=HzfNRu3smoOm54m8H2iK6LHzBx6_DEnka4OPEsizbXg,680 +pip/_internal/distributions/sdist.py,sha256=0nJvU1RhZtbwaeYtLbzSwYrbGRcY6IgNsWdEhAHROK8,5499 +pip/_internal/distributions/wheel.py,sha256=-NgzdIs-w_hcer_U81yzgpVTljJRg5m79xufqvbjv0s,1115 +pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/index/__pycache__/collector.cpython-310.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,, +pip/_internal/index/__pycache__/sources.cpython-310.pyc,, +pip/_internal/index/collector.py,sha256=E4yZHzlzPtaXg2BxaugrNg1Jwtwgs4gC-Q_0bzYrBU4,19671 +pip/_internal/index/package_finder.py,sha256=9UVg-7582nYNEWa0cIIl8otzPm4mlfyrQVuozAcssLo,36783 +pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557 +pip/_internal/locations/__init__.py,sha256=ergvPwlfNTmQYFmaRYbj--ZwTN5izgTL9KE5d0FB7-8,17362 +pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,, +pip/_internal/locations/__pycache__/base.cpython-310.pyc,, +pip/_internal/locations/_distutils.py,sha256=Sk7tw8ZP1DWMYJ8MibABsa8IME2Ejv1PKeGlYQCBTZc,5871 +pip/_internal/locations/_sysconfig.py,sha256=LQNKTJKyjVqxXaPntlBwdUqTG1xwYf6GVCKMbyRJx5M,7918 +pip/_internal/locations/base.py,sha256=x5D1ONktmPJd8nnUTh-ELsAJ7fiXA-k-0a_vhfi2_Us,1579 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=iGoDbe_iTXQTIAEVy9f7dm-VQfZANO8kkwFr1CpqxqI,2036 +pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,, +pip/_internal/metadata/base.py,sha256=SCRPtShrtPy0lfFxuaFTgJJHsRXToGFToQUAZoBBbeA,19429 +pip/_internal/metadata/pkg_resources.py,sha256=wAnEtrcgH9YtV996MfoBjR2hGLHvi3uxk0vUOHbqBak,9456 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-310.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-310.pyc,, +pip/_internal/models/__pycache__/index.cpython-310.pyc,, +pip/_internal/models/__pycache__/link.cpython-310.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-310.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-310.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990 +pip/_internal/models/direct_url.py,sha256=7XtGQSLLDQb5ZywI2EMnnLcddtf5CJLx44lMtTHPxFw,6350 +pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/link.py,sha256=hoT_qsOBAgLBm9GKqpBrNF_mrEXeGXQE-aH_RX2cGgg,9817 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858 +pip/_internal/models/wheel.py,sha256=hN9Ub-m-cAJCajCcQHyQNsqpcDCbPPDlEzBDwaBMc14,3500 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/network/__pycache__/auth.cpython-310.pyc,, +pip/_internal/network/__pycache__/cache.cpython-310.pyc,, +pip/_internal/network/__pycache__/download.cpython-310.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,, +pip/_internal/network/__pycache__/session.cpython-310.pyc,, +pip/_internal/network/__pycache__/utils.cpython-310.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,, +pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190 +pip/_internal/network/cache.py,sha256=FJ3uTUo3wgf2KHmeZ3ltN9x3tQoy_0X6qNsRtNXsuL0,2131 +pip/_internal/network/download.py,sha256=12Ef_L7MlhNUN_0-n_3DggozWJER8c9J0us16cbvkKA,6062 +pip/_internal/network/lazy_wheel.py,sha256=1b8ZJ1w4bSBzpGzGwJR_CL2yQ6AFIwWQkS1vbPPw2XU,7627 +pip/_internal/network/session.py,sha256=38IKGKC64MTVUIH5XOR1hr2pOCzp39RccykdmGAvqRU,16729 +pip/_internal/network/utils.py,sha256=igLlTu_-q0LmL8FdJKq-Uj7AT_owrQ-T9FfyarkhK5U,4059 +pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/__pycache__/check.cpython-310.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,, +pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404 +pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063 +pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109 +pip/_internal/operations/freeze.py,sha256=ZiYw5GlUpLVx4VJHz4S1AP2JFNyvH0iq5kpcYj2ovyw,9770 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354 +pip/_internal/operations/install/legacy.py,sha256=x7BG8kBm0K3JO6AR4sBl0zh2LOrfUaz7EdNt-keHBv4,4091 +pip/_internal/operations/install/wheel.py,sha256=QuQyCZE-XjuJjDYRixo40oUt2ucFhNmSrCbcXY7A9aE,27412 +pip/_internal/operations/prepare.py,sha256=LJP97jsuiCAaTGVIRrcINvxc1ntVsB45MoRbyMIukg4,24145 +pip/_internal/pyproject.py,sha256=Wm2ljdT6spC-tSdf1LBRaMYSJaXr1xUxV3OwdHCW9jc,6722 +pip/_internal/req/__init__.py,sha256=A7mUvT1KAcCYP3H7gUOTx2GRMlgoDur3H68Q0OJqM5A,2793 +pip/_internal/req/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,, +pip/_internal/req/constructors.py,sha256=fXmtNI_J77JFP_HRvYcQW-1nKw3AiUu6Q3b1Nm8aMm0,16094 +pip/_internal/req/req_file.py,sha256=5N8OTouPCof-305StC2YK9HBxQMw-xO46skRoBPbkZo,17421 +pip/_internal/req/req_install.py,sha256=jU1HQBT_DnXZean7jY8wPNMhb6_CzdKHcilHFY_o-Fc,32524 +pip/_internal/req/req_set.py,sha256=kHYiLvkKRx21WaLTwOI-54Ng0SSzZZ9SE7FD0PsfvYA,7584 +pip/_internal/req/req_tracker.py,sha256=jK7JDu-Wt73X-gqozrFtgJVlUlnQo0P4IQ4x4_gPlfM,4117 +pip/_internal/req/req_uninstall.py,sha256=K2BHYRRJAfkSpFqcPzc9XfX2EvbhaRtQIPRFmMtUdfo,23814 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=b7bf5qL1ROg73sl8dhTvLdD1w5XF8xybBAF6eF_kz7c,18288 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220 +pip/_internal/resolution/resolvelib/candidates.py,sha256=KR5jxZRSahByOABXbwrX-zNoawa7Gm9Iss-HrvrcvNw,18357 +pip/_internal/resolution/resolvelib/factory.py,sha256=0bbxnUSSjaeTmtIEgeeKtEqhEFfNhv3xpq7j9IaMq2c,28298 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=LzQQyzMVaZYAwLgKInbq-it6mbQL1gX0hGohz5Cr5wg,9915 +pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526 +pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455 +pip/_internal/resolution/resolvelib/resolver.py,sha256=UsWuwuTu9aYHIfEBnEb7e1r3tXGgJbSA5LVgQqdVZ2w,11633 +pip/_internal/self_outdated_check.py,sha256=GKSatNlt2cz_CMGxu72FbUzuPaXpWOnIVKOOYIk0gvY,6849 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-310.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/models.cpython-310.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-310.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +pip/_internal/utils/distutils_args.py,sha256=mcAscyp80vTt3xAGTipnpgc83V-_wCvydNELVXLq7JI,1249 +pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203 +pip/_internal/utils/encoding.py,sha256=bdZ3YgUpaOEBI5MP4-DEXiQarCW3V0rxw1kRz-TaU1Q,1169 +pip/_internal/utils/entrypoints.py,sha256=aPvCnQVi9Hdk35Kloww_D5ibjUpqxgqcJP8O9VuMZek,1055 +pip/_internal/utils/filesystem.py,sha256=rrl-rY1w8TYyKYndUyZlE9ffkQyA4-jI9x_59zXkn5s,5893 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110 +pip/_internal/utils/hashes.py,sha256=anpZfFGIT6HcIj2td9NHtE8AWg6GeAIhwpP8GPvZE0E,4811 +pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795 +pip/_internal/utils/logging.py,sha256=Rvght-fDXL70VWib1cpgZ3iU-kXODV98bNeLUlbqVto,11522 +pip/_internal/utils/misc.py,sha256=yLQuNWaRGtSGQqK7GT-Kj2mO7oXnPcJZkr5-9Q7AGwE,18392 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652 +pip/_internal/utils/subprocess.py,sha256=vIWGpet5ARBmZ2Qn4NEHNgzCOduqbPIuByZmhhmr6mM,9182 +pip/_internal/utils/temp_dir.py,sha256=zob3PYMVevONkheOMUp_4jDofrEY3HIu5DHK78cSspI,7662 +pip/_internal/utils/unpacking.py,sha256=HUFlMEyCa9dPwdLh6sWeh95DeKytV8rsOyKShEw9y6g,8906 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459 +pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,, +pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047 +pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116 +pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238 +pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718 +pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811 +pip/_internal/wheel_builder.py,sha256=65rOA8FSYt3c3HyqEw17uujjlCgqmoKEIv6rv9xN2NM,12307 +pip/_vendor/__init__.py,sha256=xjcBX0EP50pkaMdCssrsBXoZgo2hTtYxlcH1CIyA3T4,4708 +pip/_vendor/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/__pycache__/distro.cpython-310.pyc,, +pip/_vendor/__pycache__/six.cpython-310.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=1j_YQfjmiix6YyouLrftC6NzksAm8e8xGSjMKMRPIkM,465 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379 +pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033 +pip/_vendor/cachecontrol/cache.py,sha256=eMS9Bn9JWQkHiIYA5GPRBqKVU95uS-yXkxrzpoafRig,917 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=gGFOtIH8QDRvkP4YAfGIh-u9YYcGZVxwLM1-6e1mPNI,170 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=P2KHcNXiqxEW7fCq5KC-NYHGSk0nNR9NIKuN-vBTn-E,4251 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=tu_YBV7EV8vdBRGazUErkoRqYYjSBmNcB8dZ7BNomqk,940 +pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778 +pip/_vendor/cachecontrol/controller.py,sha256=9DSEiV58Gx7Ce69fLCrRcpN-_sHzXTY4ol9bEviatR0,15625 +pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946 +pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154 +pip/_vendor/cachecontrol/serialize.py,sha256=dlySaeA5U7Q5eHvjiObgo1M8j8_huVjfWjid7Aq-r8c,6783 +pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774 +pip/_vendor/certifi/__init__.py,sha256=xWdRgntT3j1V95zkRipGOg_A1UfEju2FcpujhysZLRI,62 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=-og4Keu4zSpgL5shwfhd4kz0eUnVILzrGCi0zRy2kGw,265969 +pip/_vendor/certifi/core.py,sha256=gOFd0zHYlx4krrLEn982esOtmz3djiG0BFSDhgjlvcI,2840 +pip/_vendor/chardet/__init__.py,sha256=mWZaWmvZkhwfBEAT9O1Y6nRTfKzhT7FHhQTTAujbqUA,3271 +pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +pip/_vendor/chardet/charsetgroupprober.py,sha256=GZLReHP6FRRn43hvSOoGCxYamErKzyp6RgOQxVeC3kg,3839 +pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=XK5zqjUG2a4-y6eLHZ8ThYcp6WWUrdlmELxNypcc2SE,2747 +pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +pip/_vendor/chardet/compat.py,sha256=40zr6wICZwknxyuLGGcIOPyve8DTebBCbbvttvnmp5Q,1200 +pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=rk9CJpuxO0bObboJcv6gNgWuosYZmd8qEEds5y7DS_Y,105697 +pip/_vendor/chardet/langgreekmodel.py,sha256=S-uNQ1ihC75yhBvSux24gLFZv3QyctMwC6OxLJdX-bw,99571 +pip/_vendor/chardet/langhebrewmodel.py,sha256=DzPP6TPGG_-PV7tqspu_d8duueqm7uN-5eQ0aHUw1Gg,98776 +pip/_vendor/chardet/langhungarianmodel.py,sha256=RtJH7DZdsmaHqyK46Kkmnk5wQHiJwJPPJSqqIlpeZRc,102498 +pip/_vendor/chardet/langrussianmodel.py,sha256=THqJOhSxiTQcHboDNSc5yofc2koXXQFHFyjtyuntUfM,131180 +pip/_vendor/chardet/langthaimodel.py,sha256=R1wXHnUMtejpw0JnH_JO8XdYasME6wjVqp1zP7TKLgg,103312 +pip/_vendor/chardet/langturkishmodel.py,sha256=rfwanTptTwSycE4-P-QasPmzd-XVYgevytzjlEzBBu8,95946 +pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=41tLq3eLSrBEbEVVQpVGFq9K7o1ln9b1HpY1l0hCUQo,19474 +pip/_vendor/chardet/sbcharsetprober.py,sha256=nmyMyuxzG87DN6K3Rk2MUzJLMLR69MrWpdnHzOwVUwQ,6136 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=hqefQuXmiFyDBArOjujH6hd6WFXlOD1kWCsxDhjx5Vc,4309 +pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +pip/_vendor/chardet/universaldetector.py,sha256=DpZTXCX0nUHXxkQ9sr4GZxGB_hveZ6hWt3uM94cgWKs,12503 +pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +pip/_vendor/chardet/version.py,sha256=A4CILFAd8MRVG1HoXPp45iK9RLlWyV73a1EtwE8Tvn8,242 +pip/_vendor/colorama/__init__.py,sha256=pCdErryzLSzDW5P-rRPBlPLqbBtIRNJB6cMgoeJns5k,239 +pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=yV7CEmCb19MjnJKODZEEvMH_fnbJhwnpzo4sxZuGXmA,10517 +pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915 +pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404 +pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438 +pip/_vendor/distlib/__init__.py,sha256=HTGLP7dnTRTQCbEZNGUxBq-0sobr0KQUMn3yd6uEObA,581 +pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=bqS_dTOH6uW9iGgd0uzfpPjo6vZ4xpPZ7kyfZJ2vNaw,274 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=KWecINdbFNOxSOP1fGF680CJnaC6S4fBRgEtaYTw0ig,971 +pip/_vendor/distlib/_backport/shutil.py,sha256=IX_G2NPqwecJibkIDje04bqu0xpHkfSQ2GaGdEVqM5Y,25707 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=swZKxq9RY5e9r3PXCrlvQPMsvOdiWZBTHLEbqS8LJLU,2617 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=BQHFlb6pubCl_dvT1NjtzIthylofjKisox239stDg0U,26854 +pip/_vendor/distlib/_backport/tarfile.py,sha256=Ihp7rXRcjbIKw8COm9wSePV9ARGXbSF9gGXAMn2Q-KU,92628 +pip/_vendor/distlib/compat.py,sha256=fbsxc5PfJ2wBx1K4k6mQ2goAYs-GZW0tcOPIlE_vf0I,41495 +pip/_vendor/distlib/database.py,sha256=Kl0YvPQKc4OcpVi7k5cFziydM1xOK8iqdxLGXgbZHV4,51059 +pip/_vendor/distlib/index.py,sha256=UfcimNW19AB7IKWam4VaJbXuCBvArKfSxhV16EwavzE,20739 +pip/_vendor/distlib/locators.py,sha256=AKlB3oZvfOTg4E0CtfwOzujFL19X5V4XUA4eHdKOu44,51965 +pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811 +pip/_vendor/distlib/markers.py,sha256=9c70ISEKwBjmUOHuIdOygVnRVESOKdNYp9a2TVn4qrI,4989 +pip/_vendor/distlib/metadata.py,sha256=vatoxFdmBr6ie-sTVXVNPOPG3uwMDWJTnEECnm7xDCw,39109 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=tjSwENINeV91ROZxec5zTSMRg2jEeKc4enyCHDzNvEE,17720 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64-arm.exe,sha256=8WGDh6aI8WJAjngRNQpyJpB21Sv20PCYYFSNW1fWd6w,180736 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=0Uq_qa63FCLtdyNdWvMnmPbiSvVa-ykHM2E8HT7LSIU,67766 +pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64-arm.exe,sha256=Q_HdzVu9zxYdaBa3m0iJ5_ddLOEqtPe8x30WADoXza8,166400 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=pj5VVCjqZMcHvgizORWwAFPS7hOk61CZ59dxP8laQ4E,42943 +pip/_vendor/distro.py,sha256=O1EeHMq1-xAO373JI2_6pYEtd09yEkxtmrYkdY-9S-w,48414 +pip/_vendor/html5lib/__init__.py,sha256=BYzcKCqeEii52xDrqBFruhnmtmkiuHXFyFh-cglQ8mk,1160 +pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728 +pip/_vendor/html5lib/_inputstream.py,sha256=jErNASMlkgs7MpOM9Ve_VdLDJyFFweAjLuhVutZz33U,32353 +pip/_vendor/html5lib/_tokenizer.py,sha256=04mgA2sNTniutl2fxFv-ei5bns4iRaPxVXXHh_HrV_4,77040 +pip/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013 +pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775 +pip/_vendor/html5lib/_utils.py,sha256=Dx9AKntksRjFT1veBj7I362pf5OgIaT0zglwq43RnfU,4931 +pip/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919 +pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945 +pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=m6oGmkBhkGAnn2nV6D4hE78SCZ6WEnK9rKdZB3uXBIc,26897 +pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214 +pip/_vendor/html5lib/html5parser.py,sha256=anr-aXre_ImfrkQ35c_rftKXxC80vJCREKe06Tq15HA,117186 +pip/_vendor/html5lib/serializer.py,sha256=_PpvcZF07cwE7xr9uKkZqh5f4UEaI8ltCU2xPJzaTpk,15759 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=z-o51vt9r_l2IDG5IioTOKGzZne4Fy3_Fc-7ztrOh4I,14565 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=w5ZFpKk6bAxnrwD2_BrF5EVC7vzz0L3LMi9Sxrbc_8w,12836 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9gqDjs-IxsPhBYa5cpvv2FZ1KZlG83Giusy2lFmvIkE,14766 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=xo1L5m9VtkfpFJK0pFmkLVajhqYYVisVZn3k9kYpPkI,4551 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=_b0LAVWLcVu9WaU_-w3D8f0IRSpCbjf667V-3NRdhTw,6357 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,, +pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795 +pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21 +pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400 +pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118 +pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,, +pip/_vendor/msgpack/_version.py,sha256=JpTcnRd3YUioA24NDtDZbLW0Nhl2yA-N1Rq2lLDBB-g,20 +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=4l356Y4sVEcvCla2dh_cL57vh4GMhZfa3kuWHFHYz6A,6088 +pip/_vendor/msgpack/fallback.py,sha256=L5jriXysURbf6rPbbHbvXgvoFrKZiryIBmujMTcrf3A,34475 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130 +pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,, +pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457 +pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084 +pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098 +pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253 +pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129 +pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100 +pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201 +pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463 +pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429 +pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562 +pip/_vendor/platformdirs/__init__.py,sha256=Aizpxewwd4nY63Gqw-Od1Rso9Ah4bSoc6rkx-GBRu2Y,12676 +pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xhlD4NmrKCARe5lgnpBGYo4lOYxEOBOByNDNYy91gEE,4012 +pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910 +pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655 +pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910 +pip/_vendor/platformdirs/version.py,sha256=bXzLJCe23FNQRQrf7ZRWKejxWnct_wft7dxdkMGT33E,80 +pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439 +pip/_vendor/progress/__init__.py,sha256=1HejNZtv2ouUNQeStUDAtZrtwkz_3FmYKQ476hJ7zOs,5294 +pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/colors.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/progress/bar.py,sha256=GbedY0oZ-Q1duXjmvVLO0tSf-uTSH7hJ3zzyI91Esws,2942 +pip/_vendor/progress/colors.py,sha256=cCYXQnYFYVmQKKmYEbQ_lj6SPSFzdw4FN98F2x2kR-U,2655 +pip/_vendor/progress/counter.py,sha256=zYt9DWH0_05s8Q9TrJwHVud-WwsyyaR3PwYtk5hxwwQ,1613 +pip/_vendor/progress/spinner.py,sha256=u5ElzW94XEiLGH-aAlr54VJtKfeK745xr6UfGvvflzU,1461 +pip/_vendor/pygments/__init__.py,sha256=CAmA9UthykwxvtutUcH0IxqtiyQcSg6CmYdM-jKlcRY,3002 +pip/_vendor/pygments/__main__.py,sha256=X7rGLMUC54EXgO14FZ9goKXZDmhPzKXTsUglmb_McIU,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=XpsyWgErcSqHC7rXiYKLF3Y61Uy8SR2DNQDDhZGuezg,23408 +pip/_vendor/pygments/console.py,sha256=QZXBUAkyl4dPLQ1e6XHjQu3mmXBWvuGQwsQT2q1mtCY,1697 +pip/_vendor/pygments/filter.py,sha256=35iMZiB1rcuogxokm92kViB2DPXPp_wWoxWuMmwvvzY,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=-veOimzCyYGEARru2Dfo6ofSYcZ8tGsIVuMprtaZQ24,40292 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatter.py,sha256=zSBbX2U_OOriy7SJvSTK6OAxjuXtROWxQlNpJEJZjBA,2917 +pip/_vendor/pygments/formatters/__init__.py,sha256=fjkYDy5-F998XczKi0ymHFayr5ObIRLHF8cgp9k8kpA,5119 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=3A1rYSjYN9MLduCFWy2_mYhllPVpwlw55anRYnPXX8w,6516 +pip/_vendor/pygments/formatters/bbcode.py,sha256=cSKMOioUnE4TzvCCsK4IbJ6G78W07ZwHtkz4V1Wte0U,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=ULgMKvGeLswX0KZn3IBp0p0U3rruiSHBtpl6O5qbqLs,5005 +pip/_vendor/pygments/formatters/html.py,sha256=0jM7Jc4xA4tsjmPq35uklm_En_OVdcNb0__SEXp2pDQ,35330 +pip/_vendor/pygments/formatters/img.py,sha256=r4iag_jCfyv_LhIt-1fRDeVEEoAfVJzkD9nZChIwiS8,21819 +pip/_vendor/pygments/formatters/irc.py,sha256=gi_IeIZeNaTfTMtvseLigZdS6lNicN7r7O7rnI6myo0,5871 +pip/_vendor/pygments/formatters/latex.py,sha256=qZUerrHt2Nn2aB4gJcdqj99qBkIxl_1v1ukYsf230Gk,18930 +pip/_vendor/pygments/formatters/other.py,sha256=Q01LtkqPZ8m_EYdgMVzXPUGjHoL00lXI3By97wzytYU,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZpjALTSuGFwviJd5kOYwr-1NgqxCX3XRJrjXC7x1UbQ,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=qh7-z_wbUsTY6z7fZUGrYECYBlWB0wEdBwIZVEVybL0,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=T7Jj004I3JUPOr48aAhQ368K2qWCciUyMQ2tdU-LB-4,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=cRD5hitINOkYlGZo9ma252vpJYPSGNgLivrsm6zGyec,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=Bvz9zZL3UWc94TDm1GhKMI4x0BTit0XplhyRL0zmtkw,11753 +pip/_vendor/pygments/lexer.py,sha256=ECXWlEsbRnKs_njozZns6BGQ4riTMzct_BzAr3zV6dY,31937 +pip/_vendor/pygments/lexers/__init__.py,sha256=6Ds0GVBP3jrIU02wmjRdpoL4eFGhwT2IVD1zf3cV5_Y,11307 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=jAxmvh5wvNkD-p3Fh6E7hY_B0sGbcxWRfseT6iq7ex4,70032 +pip/_vendor/pygments/lexers/python.py,sha256=LXnk43Lcngqn9xj6eRqdk2f73oF4kHZWiwgHMM_RlVM,52776 +pip/_vendor/pygments/modeline.py,sha256=37fen3cf1moCz4vMVJqX41eAQCmj8pzUchikgPcHp-U,986 +pip/_vendor/pygments/plugin.py,sha256=zGSig3S7QX-3o6RDxd4_Uvice_t25l_BN9aQQ9k8vmU,1727 +pip/_vendor/pygments/regexopt.py,sha256=mj8Fgu3sT0d5PZwRwDLexEvVOQbuHeosubQnqVwgiqs,3072 +pip/_vendor/pygments/scanner.py,sha256=nGoHy-Npk2ylUd4bws_CJN1hK785Xqo8e0teRmNX2jo,3091 +pip/_vendor/pygments/sphinxext.py,sha256=FZ2puvLe2Bztqtj6UJvQd7D8TvtOZ1GsfRJObvH59tE,4630 +pip/_vendor/pygments/style.py,sha256=lGyan5bU42q1kGMfFqafwL3g1j5EurTvfkv8vdP7NzQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=Qx2zq6ufbDNE2cTp51M-s9zW-sDE-KLIqFw31qr3Bhg,3252 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/token.py,sha256=lNPgeaQTzu2DEUi6n_lxAIU7uy4DVj8LMI3nSVnTjks,6143 +pip/_vendor/pygments/unistring.py,sha256=Xs0FzOzE0l0iWRoTlcgi-Q_kAMdF5Gt5FL_goGKJc98,63188 +pip/_vendor/pygments/util.py,sha256=s9n8BQXIxG3lIwCPWv5-ci8yhaqq5JbEVK9v8Z-8_3I,9123 +pip/_vendor/pyparsing/__init__.py,sha256=jXheGTFT1b6r_4WxuOE0uVUqiouLJ3WHzOScpLieRgQ,9107 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=60v7mETOBzc01YPH_qQD5isavgcSJpAfIKpzgjM3vaU,6429 +pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936 +pip/_vendor/pyparsing/core.py,sha256=GtQsD06HlwKPc7M8K8hyOuOW-cRnd87AxAHq-ad5lEk,212248 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=h0gsUwmo5N3shgvfXVQTtqvTpUAv-ZdQjSQ6IUJmsxY,22165 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=H4D9gqMavqmAFSsdrU_J6bO-jA-T-A7yvtXWZpooIUA,9030 +pip/_vendor/pyparsing/helpers.py,sha256=kqpIZFG-y0fQ3g_TmloYllo9we6YCYiewZMXIK0y5wc,38299 +pip/_vendor/pyparsing/results.py,sha256=4D-oURF1cLeL7k0d3zMqUuWH_gTjop_OrZwik9O0HXU,25339 +pip/_vendor/pyparsing/testing.py,sha256=szs8AKZREZMhL0y0vsMfaTVAnpqPHetg6VKJBNmc4QY,13388 +pip/_vendor/pyparsing/unicode.py,sha256=IR-ioeGY29cZ49tG8Ts7ITPWWNP5G2DcZs58oa8zn44,10381 +pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805 +pip/_vendor/requests/__init__.py,sha256=6IUFQM6K9V2NIu4fe4LtUsN21-TFbw_w3EfPpdUN-qc,5130 +pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/requests/__version__.py,sha256=q8miOQaomOv3S74lK4eQs1zZ5jwcnOusyEU-M2idhts,441 +pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096 +pip/_vendor/requests/adapters.py,sha256=WazYJQ_b2LHhNDb_y0hscNlWVsSe5ca5I3pymPrer5w,21861 +pip/_vendor/requests/api.py,sha256=hjuoP79IAEmX6Dysrw8t032cLfwLHxbI_wM4gC5G9t0,6402 +pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207 +pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465 +pip/_vendor/requests/compat.py,sha256=N1281mkcTluMjKqCSLf88LR6HNOygEhS1TbR9LLsoVY,2114 +pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430 +pip/_vendor/requests/exceptions.py,sha256=VcpBXOL-9JYhNbK8OZxCIImBgpQSXJlUelDPf1f-pmM,3446 +pip/_vendor/requests/help.py,sha256=dyhe3lcmHXnFCzDiZVjcGmVvvO_jtsfAm-AC542ndw8,3972 +pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757 +pip/_vendor/requests/models.py,sha256=7pzscX_47qxx7-zEaBWGxMoB33Vdf6HLoUKZh1ktEvM,35116 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=Zu-Y9YPlwTIsyFx1hvIrc3ziyeFpuFPqcOuSuz8BNWs,29835 +pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188 +pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 +pip/_vendor/requests/utils.py,sha256=siud-FQ6xgKFbL49DRvAb3PMQMMHoeCL_TCmuHh9AUU,33301 +pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872 +pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583 +pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592 +pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794 +pip/_vendor/rich/__init__.py,sha256=wF1th4JGBCVC02xfaw8j6P2MrFcJaQJL72scKtEmDYQ,5804 +pip/_vendor/rich/__main__.py,sha256=vd1PP-o7_1un-ThdgMU9LHV-D8z56yz_-fryczn38eE,8810 +pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-310.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_inspect.py,sha256=vq6BjewwEvddjcBTr_lCcjYQBsKi92aTNpcXyaA5ERA,7444 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_lru_cache.py,sha256=M7H1ZQF32o6SxrpOur9zTIhEHlNXT9XnrcdhruUmG5I,1246 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +pip/_vendor/rich/_spinners.py,sha256=huT1biTlwyp9Lm8S7bLfVzg1psUaIH5xHDwTaWEHVh0,26521 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_windows.py,sha256=nBO71icHMIHlzT7hg6fkoIdh1mT-5MvDdPDwunkshyw,2065 +pip/_vendor/rich/_wrap.py,sha256=OtnSxnERkuNlSM1d_MYtNg8KIYTcTBk3peg16dCZH_U,1804 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=2zRHV8SzR5eP-vQkSDgjmgsBLBluCBwykgejAW6oRD0,10425 +pip/_vendor/rich/ansi.py,sha256=QaVVkfvVL6C3OsuWI9iQ-iJFkMsMohjYlxgMLnVTEPo,6676 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=o0ywz1iW0WjGLPrRVDAZPh1CVPEgAOaWsn8Bf3sf43g,9069 +pip/_vendor/rich/cells.py,sha256=NadN20gFxE8Aj-2S3Drn7qgn-ZpsRZcNnTNtweRL7rA,4285 +pip/_vendor/rich/color.py,sha256=SD3yTf3t8japb-jOv8GYCMCDqyzpipzXS_0rAXhSlU4,17285 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=bioCy8012eZ8PIOBxMyyqxYPltKk2pGEG9jmwylNCQk,81236 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=qxg6Yjd78XuF0VxthlT8O4dpvpACYwKkBfm2S4-IvHA,5298 +pip/_vendor/rich/default_styles.py,sha256=At42PcWzmnYWcx5fUOKyOUpI8HK5m4ItZqxkgHToaMs,7614 +pip/_vendor/rich/diagnose.py,sha256=4L8SZfbqjIRotzJ39QzD9-d4I80FyV1mNKHryg1eArE,183 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=fHeReSO3VJ7IbH_9ri-OrPYbFC3UYOzeTNjngiiWOcY,1613 +pip/_vendor/rich/filesize.py,sha256=oQJnM5_7ygkpzt3GtNq5l3F6gmB7YahBA5vpdQVKLwI,2511 +pip/_vendor/rich/highlighter.py,sha256=AdhjC0meTYswZ_xKgka0cRYdNjLABLUzHAbyF3QpPWo,4894 +pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051 +pip/_vendor/rich/jupyter.py,sha256=4sxNAwJs4g3dYfWy_enPw9fp0Tdn-82tV4T9uh9vAOM,3025 +pip/_vendor/rich/layout.py,sha256=b64KMDP2EPiC103P-v-_VZKGY13oWiiGS418P_KRRlc,14048 +pip/_vendor/rich/live.py,sha256=OKxMaFU5sFfuR--cJftGYjSvg1VPQri1U_DNZUjCsvI,13711 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=YNcCSK6pCo2Wg6JKqScAe6VgFqebHBnS5nDnBO4gXAA,10868 +pip/_vendor/rich/markup.py,sha256=hsVW_k1TIvj5OPPQ12ihAii9HSVa8N1TStvA5B2GGpo,8058 +pip/_vendor/rich/measure.py,sha256=Z74XvzIgLZm0xH-QIo1uX5d4oahavHe8D8MKyxLNqPQ,5258 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=VK_2EfH0JduZWdyV-KZma06bvi_V5PWmHG6W7BoiaTg,838 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=O6ORyIhDcOLSEasTjpcDvmhvIcppPGCeQoXpoycIUT8,8637 +pip/_vendor/rich/pretty.py,sha256=HAB68BpYysaL1EXeV4X5Tt-U2hDlcLpbFz06fkojWWE,32572 +pip/_vendor/rich/progress.py,sha256=jcgi7aMnQ_YjSpAmQkalwtNsgVn9i56SeZGprr7tuOk,35926 +pip/_vendor/rich/progress_bar.py,sha256=ELiBaxJOgsRYKpNIrot7BC0bFXvmf8cTd6nxI02BbK0,7762 +pip/_vendor/rich/prompt.py,sha256=gKVd13YWv6jedzwcRPZGUINBjC-xcJhJ_xz_NvMW80c,11307 +pip/_vendor/rich/protocol.py,sha256=Vx6n4fEoSDhzSup8t3KH0iK2RWyssIOks5E0S1qw1GA,1401 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=1A0U0_ibG_bZbw71pUBIctO9Az-CQUuyOTbiKcJOwyw,4309 +pip/_vendor/rich/rule.py,sha256=cPK6NYo4kzh-vM_8a-rXajXplsbaHa6ahErYvGSsrJ0,4197 +pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=MBBAWaHyqCQFCfiNbrTW4BGaFR1uU31XktJ1S3Taqb4,23916 +pip/_vendor/rich/spinner.py,sha256=V6dW0jIk5IO0_2MyxyftQf5VjCHI0T2cRhJ4F31hPIQ,4312 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=AD1I7atfclsFCtGeL8ronH1Jj-02WLp9ZQ2VYqmpBjM,26469 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=pJAD08ywowg5xVwTGCqUOMpDYskjoMoDYEV-hryEX5s,26994 +pip/_vendor/rich/table.py,sha256=oQAEBaV4zMUPyg_tSA93_GrCirdIf-osolxf9wb3pEo,36757 +pip/_vendor/rich/tabulate.py,sha256=nl0oeNbiXectEgTHyj3K7eN4NZMISpaogpOdZyEOGbs,1700 +pip/_vendor/rich/terminal_theme.py,sha256=E0nI_ycFpvflamt-KVCY4J52LmUjRi1Y6ICB-Ef3gMo,1459 +pip/_vendor/rich/text.py,sha256=auX3LpY-I6PBiNyxB3o3LyMEx7lna2cx9IbNQJDwtw8,44424 +pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=hAU3IR295eFuup_px2NU4aCEWu7KQs1qpZbnqoHCtR0,25935 +pip/_vendor/rich/tree.py,sha256=JxyWbc27ZuwoLQnd7I-rSsRsqI9lzaVKlfTLJXla9U0,9122 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257 +pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314 +pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944 +pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496 +pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376 +pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645 +pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790 +pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145 +pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691 +pip/_vendor/tomli/__init__.py,sha256=z1Elt0nLAqU5Y0DOn9p__8QnLWavlEOpRyQikdYgKro,230 +pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,, +pip/_vendor/tomli/_parser.py,sha256=50BD4o9YbzFAGAYyZLqZC8F81DQ7iWWyJnrHNwBKa6A,22415 +pip/_vendor/tomli/_re.py,sha256=5GPfgXKteg7wRFCF-DzlkAPI2ilHbkMK2-JC49F-AJQ,2681 +pip/_vendor/typing_extensions.py,sha256=1uqi_RSlI7gos4eJB_NEV3d5wQwzTUQHd3_jrkbTo8Q,87149 +pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763 +pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=_NdMUQaeBvFHAX2z3zAIX2Wum58A6rVtY1f7ByHsQ4g,63 +pip/_vendor/urllib3/connection.py,sha256=6zokyboYYKm9VkyrQvVVLgxMyCZK7n9Vmg_2ZK6pbhc,20076 +pip/_vendor/urllib3/connectionpool.py,sha256=qz-ICrW6g4TZVCbDQ8fRe68BMpXkskkR9vAVY9zUWtA,39013 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=DD4pInv_3OEEGffEFynBoirc8ldR789sLmGSKukzA0E,16900 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=4qUKo7PUV-vVIqXmr2BD-sH7qplB918jiD5eNsRI9vU,34449 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/six.py,sha256=1LVW7ljqRirFlfExjwl-v1B7vSAUNTmzGMs-qays2zg,34666 +pip/_vendor/urllib3/poolmanager.py,sha256=whzlX6UTEgODMOCy0ZDMUONRBCz5wyIM8Z9opXAY-Lk,19763 +pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985 +pip/_vendor/urllib3/response.py,sha256=hGhGBh7TkEkh_IQg5C1W_xuPNrgIKv5BUXPyE-q0LuE,28203 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=NnzaEKQ1Pauw5MFMV6HmgEMHITf0Aua9fQuzi2uZzGc,4123 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=iESg2PvViNdXBRY4MpL4h0kqwOOkHkxmLn1kkhFHPU8,22001 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=w01jCYuwvQ038p9mhc1P1gF8IiTN1qHakThpoukOlbw,5751 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003 +pip/_vendor/urllib3/util/url.py,sha256=QVEzcbHipbXyCWwH6R4K4TR-N8T4LM55WEMwNUTBmLE,14047 +pip/_vendor/urllib3/util/wait.py,sha256=3MUKRSAUJDB2tgco7qRUskW0zXGAWYvRRE4Q1_6xlLs,5404 +pip/_vendor/vendor.txt,sha256=SpijkWP2aapE1DEgOKL1wxuOz1ztM7E2Xs2PZ-V1PKA,496 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/env/Lib/site-packages/pip-22.0.4.dist-info/REQUESTED b/env/Lib/site-packages/pip-22.0.4.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip-22.0.4.dist-info/WHEEL b/env/Lib/site-packages/pip-22.0.4.dist-info/WHEEL new file mode 100644 index 0000000..becc9a6 --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/env/Lib/site-packages/pip-22.0.4.dist-info/entry_points.txt b/env/Lib/site-packages/pip-22.0.4.dist-info/entry_points.txt new file mode 100644 index 0000000..9609f72 --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.9 = pip._internal.cli.main:main + diff --git a/env/Lib/site-packages/pip-22.0.4.dist-info/top_level.txt b/env/Lib/site-packages/pip-22.0.4.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/env/Lib/site-packages/pip-22.0.4.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/env/Lib/site-packages/pip/__init__.py b/env/Lib/site-packages/pip/__init__.py new file mode 100644 index 0000000..3a0d263 --- /dev/null +++ b/env/Lib/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "22.0.4" + + +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/env/Lib/site-packages/pip/__main__.py b/env/Lib/site-packages/pip/__main__.py new file mode 100644 index 0000000..fe34a7b --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f521d7d138201a5d0435d82509209c9af0a0c0f6 GIT binary patch literal 607 zcmYjO!HN_y5KX#!dV5C)Jb2lYx#@u0Ez7{_AhL_HAS|n(7l(!>)5*?+=}tl_Jwq?+ zN&mrb@R$1P$zSlIl@Vo&RHYKCUcIU^lgXH%{GL3iB_-rXc-)l{KF&~KhDH!U8`9DR zZKFj*iHH`l$V4I|No8_Gj))k^(RCtHaqxAtNJadCOb>rzCYeS|XBJ_g3MumrH1Qk(W@R?F_OK-^+iWTCUZy(nR7#^;f z(q1~mXXo$VGNYTGwUTSku8m_INVe>mRrWD3v(v0L8cZV@)J|Cs`FPAwE-;h}q5cwO zLVB(mc*;OZw)Wn_yeL-6ue)Vlo3^mMgkxTH}``?Mn(El}mGcR|>ZOTukG27GQi-yCdlzLlU zs$~hv%VW#y4PQwp1DgtqC|^~%?T4i0N(W#Fu=ht<Nt literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc b/env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5ab5049f6f76a438d90368c8c1f800351bc4662 GIT binary patch literal 569 zcmYjNv2N5r5S?AGeM@q82`Gx7fSN;!kn@Il*B@dZdUVeAWtk#<(|=FQBTv6IOjkljokSKkG|k3RU{VhUc;^Iyp+P^^J$ z_p^)*G0!-%>qx-^P#j?+ws6Il;2!qqCRVUz3@}lA&fO^jVWV3ww`|L@XyDyZfYFu{ zb5BLYyg+`vuLO=&tdcJg>t~Ld$zqxv5Ql9J@!<2&S+Pq}bqO>1lN7@106`YTqSU4+ zLZWM99ez4WpR{E)FKcb;JYAym+L{>;vMM{Qty_m=VbzBQXDo=mc6K*#>qF$%KFC$+ z3>Eqy+Om5ek{Y{er9#x&HtZM0t~1iOk86JgZ9KZJNBRsQQ_6Jc{x!XK zj;%uyLXzI>CWYfxw`rjb@l4sIRio2hl^fB9As)610zc~R8@T&~4es~Z`B}cQZl1rj zja@!FdDWDDo}*dj7y4c9b%!UnT76Cfp8h>k+OC6qzB|ARM(z9~auOty>^K=SDURYP QlU#^|B{$>fkc(e`09_HK^8f$< literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__init__.py b/env/Lib/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..6afb5c6 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6a01d936a44d16dcd2cb5d28f51f2388f14c6e9 GIT binary patch literal 728 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 J{d+TS{STI;v?>4q literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9225771bf67cb1b4f7f15dd305c5e3ce69d041ba GIT binary patch literal 8355 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 NxA?QgyS3`7|No`=BufAQ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e40e7dbdf1e1618d11d3631b1223679ed353f8ad GIT binary patch literal 11101 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 UEGgb~&g@z^iw_-Dp9+=!1C4^31poj5 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b8d3e32778e64ba0e3154d165fdee9a9e20b805 GIT binary patch literal 3512 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 X7GB&@=v~I=SiZevH{GS5Uh)42@%GYk literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..243deeee55aae2e8687c34148357de070f2e7da8 GIT binary patch literal 9114 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 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) -> 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: List[str] = [] + self._lib_dirs: 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", encoding="utf-8" + ) 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) -> 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: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> 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: 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: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + with contextlib.ExitStack() as ctx: + pip_runnable = ctx.enter_context(_create_standalone_pip()) + self._install_requirements( + pip_runnable, + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + ] + 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(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/cache.py b/env/Lib/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..1d6df22 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cache.py @@ -0,0 +1,264 @@ +"""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: 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: str, format_control: FormatControl, allowed_formats: 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: 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: Link, canonical_package_name: 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: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> 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: str, format_control: FormatControl) -> None: + super().__init__(cache_dir, format_control, {"binary"}) + + def get_path_for_link(self, link: 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: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> 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: 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: Link, + persistent: 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: str, format_control: 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: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> 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: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> 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/env/Lib/site-packages/pip/_internal/cli/__init__.py b/env/Lib/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee57ecfe7ea08d994027312066f3370fa9bc3a15 GIT binary patch literal 248 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 K&DSQ;NB;uWns0Cb literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1aa0c4187ad35e8f828980d40bd8f0d02d9f60c8 GIT binary patch literal 2132 zcmZWqOK%)S5T5RN?s#|o$Qyz(vP6aOA)_inPAL-{II-PWcN#B2@RR!8o((nyTua?yjoutF3yy(1Pbp?`HNfXn$(s z^y7o^84U3o2x7$+K?E}tBlE^FhPTb^!ik;2ja{VY9p)8&>>J%>LD7jjMHq+1_Sizv zjk`rJ?it%>{bDg*G))&UG@d% zmHuo|udDMqIiOs?`6@6DUX9dB#%U^Pq60|U094PsPc~E@r*h28Oow&y*r4d@Zo?1^ zgfz94=*S|r#2}qt+^N-AGyB*=mUNClPh9EEeCh24jdhHt2xdDCIz~`07iL4^jS%rk z@Z6FMv+l8V*E&L%tSKg)S+Bvzus-QG7E~yle7J3{Elefa`-!uKFlB?NZ-{97{#TQC z!uM;4INF>iYAgC-UX921ls974ZpsF(a>pVaQMH&7l01R*C+#BD0T8rxP)?Z^R5^OL zN6N|&gn#nrytptP!Vs$$mth*g$pX_f7J0Sp9DCcftAk>${)qJgxZt&i56o4(_boW2xBRq2c&BDjZX9-O%?AKzNpim)>}9 zCfDBv$oeL$vXqG}P)$(u9Xj{4SOB4}kX)p@jJBtX8qh~clJb$@x^XCfjz{ij zYq?1G={()Zh*#rU^+vR$JY{opNf)K9$K2!SP`E~-av|tKC}*$AOSM3#$arqZ199>j$AlEJeJ+YIYLvHfae7e?4>oYyD*Y_ai<(GmIyZc5c37Wfx-9dd)>O`A#9G2j(ppLLcU#e#f)> zsE-14)eb-gc7Oxa#|~Nn*#-OrcyLMiNkXbDN%(EO+Xe{b$-^4@KF8Xln@GG2v|ay~ zw(CIKmL-?p@~^kx{*Qd>;+Zw`KaEqFIdI*nI6lWiS;4}N@?D<IcN!W@sgG>G{LT4`v-%HO}hX9 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3122e7c0bcbeefc638d6526f3479151886554666 GIT binary patch literal 9919 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f585e9d229b57a9a09a42ae8e9a51e009a8c187 GIT binary patch literal 9208 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d57d283bfcb8b4f96b67ad4054d5a40b934ff2ef GIT binary patch literal 4922 zcmaJ_TW=f36`t9hT`rdtEm5*{v6HB2U59B+H$c<0Y0?PrrB>@wh3(cbA(WvxBZ<;- zmziBkkw62k<=3J=peR7)&Hti5qEGu;phchiCbUVvGfPs`#aUqv=eD!w`kgb1rlx#` z=bNebT7REq>>o6kd|V7x(BglBNG5r}>e(-^b2GN;mie{ow)quxfnO_dI&R(Vs4U-!*e1cgqqUNn6tnCg`3CC-#JxTL0!czx!VOu91nipkueRWD=Y$vj4R zRX()qvl#obfN{Z$=P)kHDU7GE`?6x&S7b@e%S$S!%8P76$Z0wAN*wa~f>|poSIsXn zT9@3c&&oNoz9{)4R=NCd$jWLJE45bFQg1a;x|u{8FQ1 z;h@6P+>_PXowX;A(7m*&l14j}DomP5I|^HL-sB@NSV4>515u1L2`zfkmg1Fw9vvkl zmlilDEr_}!E%233ryq6OVW{+K2%a{YEtR@jB|RP1S{x^h9_mxOjrJe1V8RaBOa7YI zUh{Oe7A32lZlF3~PszJlM;g;2R>8(=rl+y}`2L-b*Y_g5v;H&+qTP>f-V2)X&bkVB z*B`W>t;g*|-Rw47JIzfMuXo$sTM!luh0WkrD`?+}GbZC|cOS=MFhhJ;ATB?+d{%@i z?MRCoZM@!yp|D=uqP?Ss`Xga9Ijb%ZDT2JV^d;)g5h2DiLZ3@r9N3Px%n}@%9n7Em zaJB=7xT)7@gw2j>G*Z9O=tQy?P`}t{e9>zL*@`aH;dY#8eFeRVubS`Er?m${ zqnK3hF`r+t&D=RRpzp5G#?L`UZjk4BD{sqLDU@*pWy4in^mEGD@Jt{$byxbBDM$_% zA=el6oSc&-c?msFPLJ1SWEnI0%&pV1@tbBVY456`HfqP>=6e6uzrX;VzkQbGIx3D~ z*i>w^1C{z@oknY`spIr&2i;y*HWQT@e3vYyT2UzDmXn=eDD}z3$^YVYkUsCT2I~VT zdQAHX-?pAxeG7ATBKinS^c+dlO>zUTZy!-V-)GzQz?W81IAn7SBQ_5pnP*2FupzLc zC>g@Ssogu~%LmSKwOU=)iO!Ks!L{Si@PHVpfbrc$zKFq+`)3hOnFQ#r|uPu|Uij#TdJDAhUM7~4h zT_R^36wZe4B#p)*7GrWN*YmiGKOe1VU9)_CaP_>!s-yQvD2f*2zNbRQ#$jZG6a7PX z+W8eQfV8~L=NRfT|4HU z{w}^(@$~!n(YJ`)AW{WM?LdX8vk~;-EnT4rN2^#R6+6?_2Q=kA1D^D{XO#rCl8$d; zOI!l+xoQTT4DU4dA0>&L3_ATG&Pd%L+S~+Wi*~pX896J%5`Y*u>%O01?lGFl!{oLIytm#U zNS4;lp~l!2-^V$b2p6M97JCK{A;5H;w1Z$-_rkCpZXz#L#0h@rpAxUc+#4a|DRDgs z88E@p#hkwxHOA^c%lm+`0RIb$^uHq0LhbOUAx?cHNnr&o{t3t!3^)SYk~V@Kp^s2UsG;<-hP60KFH?k3$z>z>3fe^3 zL_k|OZ1hl{nh9tMwaI`Ux=U8GSn0LKw-i_?Ls5h$qc9%2z4__|5xj*j#Uve769;n> z<<2-}Px(6e`It?@&4dlu5ql0lp>SQGdcjl-JHWUsBigA*+8w3uV7DgmhR~AQVYHVz zQUw5{Gpv#42WVMk4A#Kh%p`MKA+w(1jOw{DXOvv$%^j)lEtX!0a2|T_) zi|Hi9(wT3f7|Hz4JL`XA*Gt7S)PY&((rFWt85w72jvQeV&A7kE%Df~>PUar(&^qD$ zDdC763Keq9_$!baq`Ts)&8@nsin!Ny4Ouib&%%oe%Vr8 zx?BU4NV!OWsGo2*p0ErVB`ro>95-C-VJ3bT#Coxi^SNhPyvRL%?Hloeib@(0wZ1M1 zO{v4w@TW{h{%Gt-C;b70Or|}_Nc~xE81N&eXA@LpFrV0Vc7$FywT@d3DgB_3%|1b9 z8Muiz%I7Dey}hZM!_tx{EpRcv%>NJ0cJIRg literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..acc5f3cc91b02bcf3d2ccbd7f0cdbb039d86bfb8 GIT binary patch literal 327 zcmYk1O-jT-5QRH`GlLj#A?U&bIEyh$K|~yr3 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) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + 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``) + :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/env/Lib/site-packages/pip/_internal/cli/base_command.py b/env/Lib/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..78b96bb --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,223 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +from pip._vendor.rich import traceback as rich_traceback + +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, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +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[str]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # 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 "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." + ) + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("[present-diagnostic] %s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + 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 + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + rich_traceback.install(show_locals=True) + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py b/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..71b1d19 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1018 @@ +""" +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 logging +import os +import textwrap +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 + +logger = logging.getLogger(__name__) + + +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() + logger.warning( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + ) + + +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.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +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, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +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.", +) + +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", + "out-of-tree-build", + "backtrack-on-build-failures", + "html5lib", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + 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/env/Lib/site-packages/pip/_internal/cli/command_context.py b/env/Lib/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..ed68322 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/main.py b/env/Lib/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..0e31221 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/main_parser.py b/env/Lib/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..3666ab0 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/parser.py b/env/Lib/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..a1c99a8 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/progress_bars.py b/env/Lib/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..ffa1964 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,321 @@ +import functools +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any, Callable, Iterator, Optional, Tuple + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +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 + +DownloadProgressRenderer = Callable[[Iterator[bytes]], Iterator[bytes]] + + +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 _legacy_progress_bar( + progress_bar: str, max: Optional[int] +) -> DownloadProgressRenderer: + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter # type: ignore + else: + return BAR_TYPES[progress_bar][0](max=max).iter + + +# +# Modern replacement, for our legacy progress bars. +# +def _rich_progress_bar( + iterable: Iterator[bytes], + *, + bar_type: str, + size: int, +) -> Iterator[bytes]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=30) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "off": + return iter # no-op, when passed an iterator + else: + return _legacy_progress_bar(bar_type, size) diff --git a/env/Lib/site-packages/pip/_internal/cli/req_command.py b/env/Lib/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..5d4d1f0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,506 @@ +"""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.deprecation import deprecated +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 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" + + @staticmethod + def determine_build_failure_suppression(options: Values) -> bool: + """Determines whether build failures should be suppressed and backtracked on.""" + if "backtrack-on-build-failures" not in options.deprecated_features_enabled: + return False + + if "legacy-resolver" in options.deprecated_features_enabled: + raise CommandError("Cannot backtrack with legacy resolver.") + + deprecated( + reason=( + "Backtracking on build failures can mask issues related to how " + "a package generates metadata or builds a wheel. This flag will " + "be removed in pip 22.2." + ), + gone_in=None, + replacement=( + "avoiding known-bad versions by explicitly telling pip to ignore them " + "(either directly as requirements, or via a constraints file)" + ), + feature_flag=None, + issue=10655, + ) + return True + + @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, + verbosity: int = 0, + ) -> 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." + ) + + in_tree_build = "out-of-tree-build" not in options.deprecated_features_enabled + if "in-tree-build" in options.features_enabled: + deprecated( + reason="In-tree builds are now the default.", + replacement="to remove the --use-feature=in-tree-build flag", + gone_in="22.1", + ) + if "out-of-tree-build" in options.deprecated_features_enabled: + deprecated( + reason="Out-of-tree builds are deprecated.", + replacement=None, + gone_in="22.1", + ) + + if options.progress_bar not in {"on", "off"}: + deprecated( + reason="Custom progress bar styles are deprecated", + replacement="to use the default progress bar style.", + gone_in="22.1", + ) + + 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, + verbosity=verbosity, + in_tree_build=in_tree_build, + ) + + @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, + ) + suppress_build_failures = cls.determine_build_failure_suppression(options) + 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, + suppress_build_failures=suppress_build_failures, + ) + 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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) diff --git a/env/Lib/site-packages/pip/_internal/cli/spinners.py b/env/Lib/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..1e313e1 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/cli/status_codes.py b/env/Lib/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/commands/__init__.py b/env/Lib/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..c72f24f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,127 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "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/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eccb1e4ae85016d8324f927fc7569112de1db28c GIT binary patch literal 3111 zcmZ`*O>7%Q6yBfl+VM|*+Vm&s-}6G>sGr!iu!o>>Jywtar`q zI>DBGDrYWSIB;ksF5J0r;lhOrmtK%YTo4ix;=+YXB~;$bdY2SpM>~1nyf@!_``(+G z4N9fFg1;A~3(gm#it?)fdw&LkTljR>?ju~yBy3gl=WMj#J`$NJ|g6cLqR6viYPM>GKk;Gjg4 zhz`MFI3m$eL{l&g$0RzA=meaEQxchoPQxp3Mxq%+XW<;2m*@hbGF*gLC7MMv2Njr? z=ru%_;4)m1=ygPIz*Sg~=o+Fo;X1q}(G5g5;ca+FqFab=!yQ^v!$5_X3K5iRI_RO5axdurCKYiJn!303Q@b|(X!6<+kS_WCD(~~ z?qMr(1K;-0D7zT1@c(h+pHP3(GBbHtm}sn`tF`Y z=M~HKBg&Aml7vwi==tbMY&f9rP7JWwir*!y@EioYz8BcgJvD?ZG2mlM1Ji`=Kr*q1 zZ={WxiK7##*)O`(f{#B+j1$U(>C7HZqsA!h((Z{Ngt3~JmZe!jb?IR{YPBPC5DtZu z5vNQ>KW@8>HmM(lW-VY%JF0Nvxna~jHpGok^1>>PiHoBG?Bf8L!bY$=lu0OgVFSm6 z>7oG06i0#$V%l55zQI>`#%WMzyL)^{m{QA&i^3?OU-*DBx7OJwRI_34h@Ng@ySZB) zHG#IM57c*DitS-wx7XZycV?I~scth|9Qb^4aW71qpL<~YV&iy$V|ym<6SM9GTPVid zgT?48q&9OJL(3eid1*tMCG1l%G}k-pE25BTl|`a#Ovdm;2`wf{{7cx*;tpw1Cz4^} zo)&TAtDg_e-3Fx?vM@$w7gO}fP-dy+#T8+cFkeZSUn=sB?RvIIdyNInBy=njE)?m{ zNUuZvNG&gZC_+p8%-m_a9>n2dXA9a+&}J_+Joab94jV)JQz&`i9*zm?85D3cQEZp6 zK|?dBrNN4txjQ1-yn{v_6|K-cJ+xsG6Fwn0WAnt#+-+_<8w$SuxT z*{bm(Ob^hlc714iq?Q+#gi+$*-2XNjdZ@KM=|e84Zv5Gg%nO4-!=T3_#z zNPVL9w5Mu66Y0H7Pk*fSjh+E|Pw5d*ztno_SL$bKKikXVy+yjqc@uw&jM`W{+mBBG z-=U&{QG=R;_~U!V+;yXdoUUU!|GDX%v z*+4&`_!1i>c{Q(2szhT82w$p{juQl*MSQ}`ILI$CrK$E+6>IiHd#d!6p4w9){Rw%h zV5P8f>_|@obxPS#K$jJoPD&uMZQAW9m~#Tg@DQpn(HHokFoB80Oavjd@SegGC|oON zcoy7R4b#r9p%u?~!7gQSNys+sgk?R>y3~%wtCLs%H;?S9SUf2lgl-cLBbKBfj8GF6 zaVTmzZB!##PGsRGPL#)a*0LaQEQ?jd`hpX99!88iKV+JiF``ZjHxd&$Vj@XQ^fdqP z7mMdswrqT@L10XL-mtRl0&Kd2boUg-^i&{{)Nn>^3SB4 r%0H1xDnBDvQu#-6EtP*DH&gk0awnC)BX?8zTe6zSliwVEf4cY&eu?2t literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01053287e5ff27ca94a276c05ce47f1d73ba8a37 GIT binary patch literal 6152 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 mSZX;;fMzUCBvB@* z1To|%_bcqZd)!yz>z?)%iUHYCc2jp4ZJzFqcgMRQk7R>^k6_#kzRG@g5c*3C+rt9k z2bkg#2tfoFDAr%2z@-rzSo3CKmR4+ayj9qx6FVJm7jEgrUfGL#o$M5T*^m2W5C@&? z7K3sp-oc2XHy_dAA2`1A6Cxhzy+))*os}8y5`2b6{@<`SIvHW*JWq>;3gE2cTuAu3 zN31N9f=cy8#%U_)wl0}+Rwj8R zWLgxIK+xcd=U~GcSvNA%n{N+*X$?sP3`H>}C^iU=O=83rF{w=~>QHwd5u18bhd9K2 zZN)v}K`A{I9O;}kSuY+xr#zothqt?jn`A|Jo?g;0V`ZJnd{WSm(3)0+R#{F(w7Bbs z-FQ%QHVa>{TIQ@0FO|FDl$G+CP!6ZE;Zwdp33~bI(rwKaYI$WWz1G$oX#2~aGzo6q)@ysj*heck{Q2H|&^oYs?*kua%AJj_K{G5H?Bh-0W}aj? z9@<=lQ`S@@8adp9pxgzb+)K&@pv^Ui+}1?5#Au)_L5nHxYfS(|^|v}N9@HtgRkH+6 zY$B9f=0c0ApRsCMp)?fuf;M-gj$&zt;myn0OuGOLp;QR1&d$!x?0z#lyIHkb*5G+ttwq0AH0^I} z%sv)0zK2ibK&VFbL~D)ydP|44kr+L*W$Gw16RT&p?1Hxvr&nr~3f@lK-dt<0;GLx0 ztF$V>ms<1GrE|1QD}S1;>Q5S-r`1;)t+LXA*;=4_Q}Y)70k7J9Pgl+_VbW&;IBPu? z68@z|*6W2SMYj2{(O7FXfpxn~2072VgFEHVNgn59Pi(U!8ImaLNYm+ZEme?u0L9>k>y&^41V3%y3<@; zTHf2k-cj@M^(VvO5^0|peC%!fFSHvtdUbiqzkAH)-Ob?k!v`Ay4p?7%u(rBFmRHD^ zw{B3jdn4^93Gv8u_QT<10^`*&;%9`iPS{T*@qZ-$TRGW7h)1Ksd$SOA`e{^Pd}_oj zLP-{d33-umDoBLCiGM;k3n}q$N2Bgj9Z`D5h&*|D2GWInfcRX1r*N(=*J>lX{tEHD z^UysL*O8l*Cnw=O7u`rE#Q*u7i1yD$H0Z=)`#Ap?0z88bA%a1ulHX>sjnp8VxJQyW z#fW-jY3ckSMUIi$8Efx_avN=>GK^C}{FwOu|7=T-jIy&xa}Q8FnbcD_Fs+ZLdJ0dn za&mr>$7z>{Jc%V~lfo_Ah18kx^?2pU)Hv?h@=pWIy8)6+j$xdDhSIL=r6N{H5^^z{Z=6JKwdTB0Ot9%93pN z8~?{76wlf$-EFVOPun7v%+JH z;!7ZoZp^&S8^?WjdvR{?X=7p*ILxm4jAd0CElMaW^elJ0>U?AC3Dwci?YAJ&=OPZFVY)vQ8oH#=8to zcs%n@YzPD9jhC4wd}0wu7gGO;GlcECuYaKZVLUe=k#$HIzX+sfD5L%buYzXL9+9ii zROOoqTtP5Ow;rN3G`*+|ywd>lepTN_*7 zkw;md^!h@QJQRZL4a)|ae{qDy7pxM~EyZNB0tY_?{07DsWBG&9&p30+{7CcABCvDJkPz*)KRGuCjKr zIQ1Ov|?KxYCXTObk$q-$K(%etk%uUl^yO-px- z1>h`m@ZOn7dIpCZD%=Ju$_;`v?6DwF5MPPADV8J7 zp7&$;Lw@Y?4{=@?IF6YPtCd`tfCjIlY&z?L!^v{IC$GRKka0Cjw~VrJ?UO?8UEtSI zXBmicVJD3W2HIDSe3`=`Hu7@~wtRiEB z>Pbs|87HFNiy@gXw%kMV84{fCSqoC`%@K09u=WWIr>nX8JiZ1}%P?$X&Zs#5E`I(W Dkb^V% literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0e52194c3c24af9b9636bf982a42d3944415b7a GIT binary patch literal 8294 zcmb7J&2t+^cAx3_zyKs6kfLdllI2-hw1r&}UT1gXT}7+1R-$Dk3Z;maU52H?g6JVM z;s6764=8gCZaGV*HWybaRjFK(RFQ`qTsb9|obo5+lw0SRlW)1DqIkvpUJn2Q6to`z zyV28M)9>|rzxTm-W~N}^b2M|Y@!#hSsU>QOh4WlLGt+PliW9m+&`cREQJx9brmKKgN{4;@$m2-iu}MdKrAsG z3^%J5XH}b9Rfk{XF3){wS6%J}Ii3%^AirdAJ1A_qnjv;|N{>tj)99TEic1DYW_S^6 zPK~eO4n|J#5=KfBMrQdOMrJ3BoaXZwnVT^33SYp;=?NpR@x`q5Z3`*O_4ye0=`2-mW(TKZ+am$cIq)%_!bPbL_S&1wD78yV=M@M_$f) zR{aRlb=fBw^OHw`UvDJgPB6aOzZeUDOT;Zbg9OKyouCnJg#jgxK7{J9>jydQB{Be)x0d}LkQ+!(Y&W!aI0dF+7H0)&u7N4d44;fh( zfWzE+>J3<{+>Eu#kzjO?K3K~*j*G@6(|yzUP+%(leHlpqqgxyIuif@>Gix_)eR$`d zKPrqnbrIG#VJ1lS+HvCJ{&zwi@CxjV%>$Svmt+xUCfAo6Wj_j{4xK8~05z5UYICCs z`e?O8bc6TP@8JOYIC57eL2LCXcAg~vaXZ>g-AuJqo&;8JmR=aFr>@_$kkn7*sm>Pu zV6d>!6@rv*l;#&f09qIA3c6@e?KN7w2GN(QQ0KZu)VrO!z#-J>5a=Tknt<+FQ^eiQ z*QT;%5N&;Jh&QmuvwJr#KX@98?FXO4QM~i+>ibb$Za=^g9^4K$AJ8eG9F1*Yx_rv*F{q{EWB^ggB(=HKJb!!&)PQ+O%nH{uwi7g_Uv>DtEYNq56ZP;aQ7>==X`9m&)P;Z zy?e(r_5fOGiT3Hak7sD-Lz8y+*l>+cpg4Q(FWim(?^E-skraF8<5N9{=f1-EY9;Jm zI+#5)uuHLL^=zEX#JfFi`~~*f$7wz`lDQ2-zwcMS|NF}M^|GsMGQ7$rrBoI$PFX-O za7=bm{Bs0ni_&GgCGH;)*PjI(GuG6^m9SWtaT2Exrqui|1s zT+@(9u3RYNh-|CMM{ynE3(5XQOZI6sMd!(8N>z+uBOrOTKBj0NkkC~XampICvZ<<| z53GCCoZcdn&cRMDoX93r!wJZ_RQBUIgucjF;1q&HMV+eg021DUan<@MX6XEHQI)6h znZcoJFl2$68Iyjn5rhcxJvYBlTzV5S9!G;P=oAz_t_87Bm(=!W4MXO|%Oz#W!oH?%P9ThBQEt2V+yhv2=k}-9mxWz%y>XM>Cw&P19A%!s?vn_^}g_f;b4qEOO+p=yL`zDmfl5h8z zJWJLf(Q1R0-af5%mJFJ+Z;DIwgmLVMS}PTIwwd@z&*JV9tt{}|zWGbD?2Q{Y(rP;1 z28vun)r1~D^d7K1bB{r9SW8 zADSOQ!=E4|gdsK8>EJQoj2sh~Qte5VnV?%yC2c$Ua!t<9Nt*Iknn64GtRt@eExnG= zk9}bqj1`UwN9nu2CqaX~#5>q0!+_fw1A@;00nx5@1GQ@i6o8^4(hK}|)xuifW1bPM{#3e0=%+Af=hZZXD8`zXEe zyD)4_iAaHlO7vqq0K>^%XgBOD3+S({&w+IamAGL%EI@{>Jv*_vO$fh_8Bb1WNpRN1 zMXc9shv_!k&zu$c(-l#6)Km>HU2E6K;)y?^Nmo%R2b^w6Q9}D`XM{Hz!EVsBHLBhi zR)jj@4^aIhiX`YNnG38)lutIiBgp)6stNzcsRle`vThxkpcOV1lnz`+XFV;DXZM^v34hJ22HLXj@25&*Nv($^+lqUIpp_;NZ( zq{ivU?rK0w&nADMXV6{t-C%n?og?=@qs9MJpZ4K51Ob9*8mEU0n4Y0d*JOPs7|)AL zr0+-A4g0X@msIF+Nf^&)-KS;TVkw#F!%%1m)~S7gz~ zRP|UKPh8#~V&=aNh@;B`aj#D#?%33i5thT^p~Lq#co-*46Jye4CEEQvu=`5*!@d$a zq=Y1xJsYZdanDKIedDjrV1DkgcaZNn5MMWOxYKibE~#qI74Jd-3OxumIb+Su65#T3nHr{LD~X_E*F@V3o8+&36P`_8L5Th?(g7K_hrE3%n40 zq0LPF_G*yo4L&6I zuG*yVa0-bdL= zD>tG3C$DroV}Lywv*Jw1^O#;z3gNlH$Mb9NnUS8k+_e;X4gWFPulzU+n@cv97aL{_Ks@y6KO`cq{w*(h-5A z*tssp!slViKs>-HRj#iE%D#K+ZcUIQiP%Tm%8aqcX0$|C(2vAPaUj86WU9n~?KiMC zV|YNV6Cm~wegAKauiuI~rv`%e@dWxzwk1(G*7k2s3~hwLLnTSqT3 zxhF!^9K7UK2R`~e?AIX08GIZxsAwf3Co#cw?wdVp+Y)o!1SDAr+lSkDNUkBdg}6|} zNDQ&ka?j)z#Y#Q;UyYq!`v7S!N(0A!tG{fbM2C8bIm&9u=E<8N6ZQ>?B*>eFLyq!m57Dn@+UzC%>4;xEhFXMR zL)0RNH}x{?CuacYlW7LqUChjNVjTeab*{$YjF_M4!{z&J%0d#a$zSUe-v0+z#lIT` zbz~An&_PlGJf{RX{(L0&E9t3Q{p^{qWwipq)K0riJE{EIXN^GT>IBJy$_K+|orL%f zI!`i)9IO99(F|fp1(2zvu*I|3x9P=+STn)T95az*E~#kAd=Cvo`Cw1i6dtvZtTGei z0(J;!@XJk-M9%tsXLTP^Q;6g(j+7Z9d3(L;X1U#}n`L&>^OImDg92hLvZzSw3azK) zg=p-i|4U>N#6}eQgz|=%4MWt&UK2rH|Ld{z&B^>2;#xn!gh+c1yR4VbDzBEMmujj| zql`}%v1Lt7*J@Aj{}P>es;OM9#^VOMPlwGmlHD~CJn4q`-2tA%Zb)QL#R@hQ#8p8c zfb?1-lm*XB{EQy$%{Yz(!GR!<*Kw*2$^->7f;@gfp0OY&Nsv(&WMc#&m9VHHO%Wsw zf*3F&CYn7LsBae40*a(3&p^OC2e+!Q{O0oN^0{R<`_7dL?y`5TSST(`=@sR3Do0tf zu-(l3!ELNo9x|?3nwe-)ZnE2<3Hm5Rpr%EgL&~@^Oc_@iQCQi8cEF?2|1lP1)Fw@m zNj>RGOhZ;*r{#1?O`SQh-Dp}^XXi5JQHCJPDJ+gJ80wSE%*u)Vx=9$x%79if-SBwF z2*_r%LfOdBj8I8YNP1hR6~zv{nRHikZqg+v?@A^`R|$^fGAhr=oZNYYIwf<_oOY*S JXbNoJ`hUDaaO400 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ecb76853877ceb4edfa4b4f6b59c0fbdc07cb193 GIT binary patch literal 6661 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 EU!qBt?EnA( literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ac0c70740af390dbbd8e460a030979bd7672aaa GIT binary patch literal 2610 zcmZuzOK%%D5Z?E$R+8Uw>I6u)1=2>XCHGLEMGyo5>?A0XIsx1S=+?nvy`<%}xsQ-s z$5!oA0`%nnAfu<=`g?fossEr!3$#P7B+F?iaCSH(hr^j~hAP@^UxW5<`&RNxQ`7#C zgXw0$;2v~#1O#bFCt4`K2GKJkG<304T-^(UOJZFY3wJda6*8F1F) zlyUg_NrsA&r$sKM?s}1BagHRr^=y6p{?-<-&Mw7xfPrf=j!3!_l?Q!xS6)u|4D+hw zMM0RbU+rN`gjuF#=p)ci)18XrM4mp~92ne#&h7xgTBsu}G>{&e$OtWDhBj&;2f1&o z&_Nz{Q3HFpv7#Xh`@4?1pA|Nd4L56x_5)?x$nL?BA3%Fj@v`DUnll~~f>BV$$wA!5 z3`7CNFRPT|4CkB$y9Lc+-t*PA$*P#*fPnq56E?&_5;NQdZ8&EsPY-dx3MwZHiZJb| zy@O@-34)s?E&9PvBcHzL81Lrr5x>2*#*SGJ+=nTpZMe5^D0q(Mn~4siag%%l`Z{#> zJCGA?U)$G_jtpcXtFIwjy5`K)$1@&kNSA=i+GyqspflPri{_Mc9;9|H9qQZ|n&;ZN zK3TPZ7Gc%W&_Y*+Hh0eTa~&<80T@SGuA+}%e&s@@bhr~8-mrnL$+hPS%n*|6n**au z2kmZm%F&`VHDJPt%M#~ESi32~gVSdW2Ye6L?vx&vgFg8A{b0fB0MHqv5V-`9szL~$ z%Y#17F^zee_k%(OzZd+lm$IM^0|YP+c5qNJ2wGMVo|d4Arx|9wjx8*N83&^hnFhi| zcsGVM!p$&`4`V8+Rs@ z(}A%Xbj&HUltl~OE~g>V<6l*c;+3xK|oL}SU|=KWd{j3wi9f?Zl<-z}l;#}MJSJ-rmH<(9*gFM>1+kGv!_5D-I)Fv&R@Zro^Ui6EXPtlMoF!wha;XsZrp^@Zs2B+=rhS%}aQwL0z)b2*2?MTi{k48- zp6L4qYn_-wlUu4@==(OkBF8XeO9^*|?g`Wj;5?8up!?99&|A>kCvxQs($Cxt?S+48 z@!9>k;rxk(jH{{wz5J3dK)ol?UOg+=>c-v}j1!)~qdK&4ib-g2YgLAz}bl zdL4`wy5Ct8COk#dgCV^pWlmKhSVupR18;-^R)c3b*~7^}G=b0v4AhmoXC=8RiHw%8 z6vo=)W23Bq8m>+?p`;53YC4o0c>E~9g37n8W7C^*dq4)6ut*9;O5&>~pG%=h ztNeRl*rz}|-O+vBfdKo4VOaY3X8`BFU1(VPVE%HLVRy%%Gq88F(-K}3<#C3iNcfSo zvm%mjMbS$rN23`xicpb&*sd5niK0o0egsc7jx$DYfg);1B0&Nk|v1<7r^AV;R12<7+k3nWx`^TzG)MI{l<_;qc=UO0_y9oQDMJO%kY=khG4` zjsMAeJMa!iqYR@Gy5a+ipn~#>!7`}oDjea*mo*iodMe-_Pp?i=6?Sp$@~Vobg!SMs l2!D+#2_$u^4>>}3cWQ^sX}*lvob4g^`GcV+8k zlCqoa`s7@L{)P3a=wITsr~ZT%Mco;#?QDvW;AqGhQZwH?icZHfV4QUB#J|~w@ds|E z2b>w-!;)hl%wQxng2|Tzq~4o>312g{G8#~VGAnIlc3{^$O`XgQ+?sEs&CCnDtQEBC zy`8qRPSD9_f|+{nq_f#vFqd5jE)av0@kM^=m;{%f7|dnOw+3r+_s9x9VIIH2TCm#u z%C^lqZ00Qut}?Q2bZ7qrD~;7I(e}$It+)h^K2M~Aud`faS(LM`sT(V6YcJNcv;M>K z^2+);oOB*PeEDMS*~Uuv^x^tb-C5sQd$IbY-mIX!C3wWbcu?iLQnwF8qIg(Ts;pFu zf1DoYh~0-%ZXim45D6@129#MrgSDB>9I)ADE_cu?-u%>HlzZTf$66q1u?Be4(XFSE z9Gu!ceCPQvU(*r9~X2ei_BPQ6D5C9whs`=hgZf11`BAN4dYn{YrA? zA0%qvFD};ClN_!KzE>rJXFONZ-%e8QtHNgmoR>UO(N@aqmy%qnC{1Or-VNs$N>TLv zpNdi?MJ`|a_wnijzt`(+Xj^bqiF`FCQ_vvahP4b!E&&-CJH`%Sgqh4zCZoz?jWK2R zxS`Bra!i=>&LOB}j~(Ws_OXeX0@yTHhvs55Y%MNEX}^GY3^Lt(&o-ng1Rvf4?>Allw8L>9rNog&G#T}DE3p)Uc1TqwK<>S13LRf!oYdAj|(AwGkf ze?NP)w0Tg7-OX1;TI_$j_&AN^?k3OoH=ie4n-UUl@ifqKvrNi+VUjB@@+iF*Px4#d z!^rl^H@fxSG&v7%%WFVvVops;TwFP8;E}V@00y0| zBl-ZCkttgkr!i6Hj&)3kq3F6XB0G&kYh*q$UbhdavKblCk)<4@N9GZ9jlDVLLR8Jw z;oO2;@+R5&9k2_s+Z1TGZj}OD4J!#bt}XcnLL?RALI|`%bdX>#)143j2#f6y6H;J3 zb{hf#5I2x~fdthxEh9CkVV{uecxZ_#zXOcC2!xUuLWykxO2FAC)EdrC;{>{0Q(#iB zcH7zw!#v7(7-}yJvw~GA^6fC(tD^K&;)Ee9VmNM0Jh_zgb4bs(SLR;XySim#PlPQ8$ix!YsSQ2eMDboXX|gx*gLY8+Wmsn)o04AuFyA#WXk z6z3~gXXjmOcyq0848A%mOqTSa?k0T<PFqP{}0!f@X$A~>L9mGkF;T$C*HpOUlUC1v_*|tDXujwaXknMB`;ET#F|90-agElbB$|D$o`V-qEw^i{(Iwbm r)`+`E(BUbN>J+QX!M#68JH)>E_4k9tZmK_oSr#n&ENhHAr>aS literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd518fa39bed2f917fddaa794ce3ca3a79bef6d4 GIT binary patch literal 1285 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 KYw*Bo_rC#ymO4rR literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..034aa5b575cb52208fc1981e986766b9919750ae GIT binary patch literal 10235 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03dd18d222bcb06fb5d5c3f500358885ea2aa6e8 GIT binary patch literal 6091 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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[str]) -> 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]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += ' for pattern "{}"'.format(args[0]) + + if not files: + logger.warning(no_matching_msg) + + 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/env/Lib/site-packages/pip/_internal/commands/check.py b/env/Lib/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..3864220 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,53 @@ +import logging +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.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[str]) -> 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/env/Lib/site-packages/pip/_internal/commands/completion.py b/env/Lib/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..c0fb4ca --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,96 @@ +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/env/Lib/site-packages/pip/_internal/commands/configuration.py b/env/Lib/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..c6c74ed --- /dev/null +++ b/env/Lib/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 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/env/Lib/site-packages/pip/_internal/commands/debug.py b/env/Lib/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..d3f1f28 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,202 @@ +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/env/Lib/site-packages/pip/_internal/commands/download.py b/env/Lib/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..233b7e9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,140 @@ +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.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, + verbosity=self.verbosity, + ) + + 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/env/Lib/site-packages/pip/_internal/commands/freeze.py b/env/Lib/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..5fa6d39 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,97 @@ +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/env/Lib/site-packages/pip/_internal/commands/hash.py b/env/Lib/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +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/env/Lib/site-packages/pip/_internal/commands/help.py b/env/Lib/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/commands/index.py b/env/Lib/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..9d8aae3 --- /dev/null +++ b/env/Lib/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[str]) -> 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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + 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/env/Lib/site-packages/pip/_internal/commands/install.py b/env/Lib/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..34e4c2f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,771 @@ +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.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 ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + 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) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + 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, + verbosity=self.verbosity, + ) + 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 legacy setup.py install + # so we fail here. + pep517_build_failure_names: List[str] = [ + r.name for r in build_failures if r.use_pep517 # type: ignore + ] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a setup.py 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/env/Lib/site-packages/pip/_internal/commands/list.py b/env/Lib/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..57f05e0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,361 @@ +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.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +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, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + 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(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. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + 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 has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + 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 + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/env/Lib/site-packages/pip/_internal/commands/search.py b/env/Lib/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..03ed925 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +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/env/Lib/site-packages/pip/_internal/commands/show.py b/env/Lib/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..d5540d6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,178 @@ +import logging +from optparse import Values +from typing import Iterator, List, NamedTuple, Optional + +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 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) -> Iterator[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()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + 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=requires, + required_by=required_by, + 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/env/Lib/site-packages/pip/_internal/commands/uninstall.py b/env/Lib/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..bb9e8e6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,105 @@ +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/env/Lib/site-packages/pip/_internal/commands/wheel.py b/env/Lib/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..d5b20dc --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,178 @@ +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.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, + verbosity=self.verbosity, + ) + + 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/env/Lib/site-packages/pip/_internal/configuration.py b/env/Lib/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..a8092d1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/configuration.py @@ -0,0 +1,366 @@ +"""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 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.logging import getLogger +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 = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: 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: 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() -> 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: bool, load_only: Optional[Kind] = None) -> 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: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> 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) -> 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) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: 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: str, value: 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: 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) -> 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) -> 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) -> 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) -> 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: Kind, fname: str) -> RawConfigParser: + logger.verbose("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: 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): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + 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) -> 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: str, items: 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) -> 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) -> 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: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> 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: str, parser: 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) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/env/Lib/site-packages/pip/_internal/distributions/__init__.py b/env/Lib/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51c783008d24beb0a7b2b37537f4aa8dbb57be24 GIT binary patch literal 775 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 LU6*uem-gMidi71~ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..058e53933021b1f78cb8b29a8a066446806c205c GIT binary patch literal 4421 zcma)9-*4Q;5#}y=Jc@TZODEa25+`Bp*69`Y$!?oC2n;t(Z3k{s)u@67IVhkh?n2%pkf9ivC+eS8k0Wl(Z1O;`&Q2)IA+GRzTLBR+luRb zr|0N)EuQJSJy*BwxY2L+nz~(&XZx*QOShf)RDZ5FM+|O^=Xv{p^cFrb*bH;OGMLMq zeY3a7$g0t4{2R_;taMD}+{w8J)?=>BRi3NbXM-%}9irww9z-#_l{}0@n)G>+!`R|) z)@3e&FuxhWf3!Zxqcnl>`8$csgE$Vbe@lo|z~JoNAiN)J^4n3uI1bEx97uj_=bK`X zBwYAAQNHENEYh7mml8IHc*N>cht5Y(D|3`*L&~kH4j7<12E^sd@~4ly?c`9gRGnFdVF)!kCKh_URMiKwtyLt zgaq_oKG>#EehWpS6O4>)V@wW=RpTjH=}=_~{y;gKJooWK0SA`k@y1g_%){bmf4uqO z+DBDQ6Z^wbWzs8e?YoA8zYck6D!x7!HS$*v0jl7x9 zj;wvMPY(#rp*68|oE241A94`~yTi7&lgD@lX5vX0arqQ{|Y4 zO9i;H2euhRf+H!*;jjJ>N$t{woa&qxCEgS&U4)9Jil55v@Ls_%8blsTx%84W_hiPy zXk*t4yh7LnJeRy6VIFv&7X}Hg+W@Zja1xnDvqhe!vGkC|(?Rax8)|w}r&Zv#Jw1m% zIiVD2CpA;R6dYbHmI$nVgKBGhmb>&ftJBpL-~$s3&-o&Vz!kzY*@&Ysm&%UQ%}p*; zeJ2nJ@Sd`^(JW$6hmL6z=g@)?3w{*q7nVgyn>x>}{|-AR0Q_XfJ;JrfE+w-6^Ec=e$o}RU;Epn~ zPxeTG+bPx;5bGm426P{gZx#TtbX+?yJ_pKXh6TTUlN{@eh_{ZEVk zv3X!%3!~v4O)QLu*wSn4aeV|VI%VN^Vb)<}!or%Pw`YLCE#z-zA%kmF)>ejRF}0as z;t0(uJ4r=9h=+?O&5C#6oE^8IFQ@!0btdDYALTEjs78=fZ%*i0R)TZ6NqhjJ#QRuj z*#87u7qPkkRh4>_JH@9ImvKcGtD~kAZ@}1>P~>53^DShFX^toGeXdAeusd4Nc z4lkZ$wUTCEzDmti$WG_tM@PV2|Ho%_ z+RE|$B8c<;>T7+`LA}yPmK!%69Q1?Z9sr^RVX}fd* zM_M>TTQBs!&S_Q0Oas+s=eux?-PC7!`Cj!SNT0gX%S*TLJ;-{BEC`dU%4{`Rmfdx@ zHVdRrb@u2o{wU-c?owM+oj*E_ca}%p$?eH6t}un(&KzA>X7^gX>g}VGaL12j_hn2j vg7yqh|ED^)5_eF0?_z~2tl(s-Tjg9Y40{7FiyASGu}GQ}V@&aL>7w~R^NQL- literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3026a46049ba27525a0ce67bfdb20831af3772f9 GIT binary patch literal 1576 zcmaJ?O^+ir5N-EI(i4)M%raVm0LkJ+7B+K1LPBV@z-o}tXh19yqKRZVZD*!;-0h6* z%#digko_gx_)ETW;xBMusdAIuj`*%Dq$^k_7QV7wT;SN@Pj(Qmlu4%mwx z!L(;!L?nocYElq_eyrj;DU#qPDy_333x2A4b-(D>d6Cx##Q}-Fh(soO&m+;3$u=nl zqW>hCDISqBtZXMIX zfWr9pva(cYX=$S!ZKM>GH){$2eIn!KN>MkX%rQ?D-P8UYkVW-8pfL73|aT+3OZPoxu(6%@rBNU6+yL`cE?&!(_ z5taKOkYS`+SIq?l3h=T{YHeQTF!Fi@bkx9e%K|3e+PG+do@ zwPH^~(&=*T-$YgKc;6HDUAWKYV8+>)49Q)xc|RcQvON9I)4sO|zb$__UsX!5%4!wl zcU~rtb2rdOc?CJ4u0#Z)Am;(?Brzk{GFXXu9Sw5OnlX6(omSRzukM#<-i8nx^qOo= z{#p9}o}C={oP}3}F+X6e)?x+iVt&Zj^@=O(7_9n?30*Q~GA!%}4TA9LTx(^Has8^~ z;9=bcSslW(7?DRQxs%0%n8Yu_jPLvzBF-nT`M02nQ+6X8q0O}IEQoCi@0hYdC!U6g zU7M$SZJy5IRWr!3e|J9&d-LPp2_;AopTV~Dd;5VqX|xDmX%r#+8#bSR(sK0>+iLM| OVHgeLAvq?;{l5Tt+`!xb literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/distributions/base.py b/env/Lib/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..149fff5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,36 @@ +import abc + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata.base import BaseDistribution +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_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/distributions/installed.py b/env/Lib/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..be5962f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,20 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/env/Lib/site-packages/pip/_internal/distributions/sdist.py b/env/Lib/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..bdaf403 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,127 @@ +import logging +from typing import Iterable, Set, Tuple + +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.metadata import BaseDistribution +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_metadata_distribution(self) -> BaseDistribution: + 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: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: PackageFinder) -> None: + # 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", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._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))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + 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): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: PackageFinder) -> None: + # 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. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable() + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, 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_reqs) + ), + ) + raise InstallationError(error_message) diff --git a/env/Lib/site-packages/pip/_internal/distributions/wheel.py b/env/Lib/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..340b0f3 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,31 @@ +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/env/Lib/site-packages/pip/_internal/exceptions.py b/env/Lib/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..97b9612 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,658 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import re +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, List, Optional, Union + +from pip._vendor.requests.models import Request, Response +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + from typing import Literal + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: 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) -> 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) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> 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: str, response: Response = None, request: Request = None + ) -> 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) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +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: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> 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 LegacyInstallFailure(DiagnosticPipError): + """Error occurred while executing `setup.py install`""" + + reference = "legacy-install-failure" + + def __init__(self, package_details: str) -> None: + super().__init__( + message="Encountered error while trying to install package.", + context=package_details, + hint_stmt="See above for output from the failure.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> 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 __bool__(self) -> bool: + return bool(self.errors) + + +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: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> 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) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> 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: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> 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: Dict[str, List[str]], gots: 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) -> str: + return " {}:\n{}".format(self._requirement_name(), self._hash_comparison()) + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: 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: 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: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> 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/env/Lib/site-packages/pip/_internal/index/__init__.py b/env/Lib/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10d5d09ac6097282989dfecaf12d81e7997526e7 GIT binary patch literal 202 zcmd1j<>g`kg8#f4$#OvYF^Gc<7=auIATH(r5-AK(3@MDk44O<;;+}aasTB&Dc_pbu ziOD6I`FRS-`6;PfewvK8*yH0<@{{A^S27ea0d;|iUtTU&G3EJ1*)fs%Ir(Mgx^6j% z#n~~bd1Wy^nMpClnI);Z1&PVoiRr1uF$I|g`te|+^AdCPGeI`##{&g2OXB183My}L U*yQG?l;)(`fm~M%vV(&G05^^{AOHXW literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2da53f58d0212af17992b2371e38300efd42467 GIT binary patch literal 18040 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 Mhs)m?dvVXk^lez literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0278e7157d11995e2b76e2207c20d3c3bfe5f53 GIT binary patch literal 28096 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab21b7d88a0d617e525f19be747fc51597ae2800 GIT binary patch literal 7095 zcmc&&OLH5?5#C+wE*2mNK150+_3+w~Bf}*^ah$|4Ez5K$D`rKZUAC-B5W1EiWNSwuk=lUf9u-*1Ca~Q@xf2Ra^X-#WTQCVU+ewyX^LfvE& ztnisxIfMR5Rz!c1FYRS2XHlPG)2L6Y`Z?5R*evR^s{Rb>C)gb7bE@vLdCYi{pJJ!@ zB3s}KY!NBX9iHW<7d7NdiyCoKFR&$c8Y@1_^!K&WnSao}Zj{W}S*r#?bvxj(vmSAg zl-_AYe%P!Av30ZE3V2D6=hvGuB1-C5t2UX>su6XVH~i+^k`Yg|s?lvP3ca=n;t6C_ zrZ&*nzNF?FtvUFasH`H%tH`)UXIL?KhUwho7V*stmif%w(H zMJ>-9NR*57#L4?%Thw@L3m&yavj#mm{HRQ64e61MEYkM0-|8j3bLl-rE#2rgciT8PciaFIUUL09wF`bxx?z)-AL{XmjWAkoU}GA*8FBWO5TQV`DS1$TsEJw3{pI?# zmCcVsad-1qVG!PXW%+tgm3KFJ^WNqSe|uB<5npaqYj>+VTyD1f)@9GfR04Z`*#`sn zFH0qeEVp)JllYj&q|!iUXF5}QEo;N7eBRY5MH@sVQC=qwE|I7IeD zUN6zu0XAie*ZjIVj~<)SWxn9GDA;`rdwF8tqur6`i1CxiI`ad3rTrVFiP-VHX0^dR zFV1^jBV=t1_Tqx)eblZ7y&k6}!WI|Nt{}w~S<2>+#Z%X5Pt!dXbXaj-wJK@EDWXj` zP?cyG#RM{%LlW{inxW6>MRV3v?XjbHgyo0=dPjDSxFBVgBwM82(Yt^|W_$soS=5+$ z*MM1A8`sGIWhDGsBuM=`xrpD7F5iwC0n9en@EbhZZE+drciLP^k18cys7*^bR!2VR z!H{X7M~t1PrRl&=>f$;4jhHvt*ea6zC9=MGGab-uaFb=YMdn<$duD9&EHeRIIc4|` z%PGUpqiq7Fo@Wy<^#W>>s1?{GYDH#2!eTtW-co>XfCA%siDza zZzcvSj~NxurQ}{+gbg6^4v$TeRO!-2ErT=Ze^j=R){vC7bfHR~7U}y&l(}Q>TV3No zKcF_7Y42+f^^H-TuI5$2i>IL1=4gI8Ue%-k+R>UC%9+8#~L`nN&6plzcJ5E{wX(Q;-o_=dcMq9}! z%9uvUCoWTo03|_KI{smC2u_u<9u=oR;yg1}oD}U#Q(}RpgoCLGy0qe~=drK`xSvfS z{5p*0UD!;*%`(xRri{c+kzbslDxtkNOWCn7e;&PbTI!Z`G*dSm!!W)zGR8NCng7~w z0Q;HQtROnt)gxaYM<4xLIGQ+6eH_gJIrE1&I)Pf@5Jx9_I6Cd!2y4~gIyk+$UqEa*_$g`aI}@pmCfxsBrT`>P-Bsk;O(3lYlvc zR6~+4Ao~<93>MSx5H{vWaG+y`T2gF0+>Vl&AcW%QC5%q6a2%qObykrc5qKJ(03!f< z9e0Go#{nKOOJ}5*CC_M(SrMS$yCO9 zo0Tkgn8kD4Rz6>j<$FG#rF_2RiCh2$`F!+DCZErS&o>p%c<=E>81WRWI)58RswW~; zLNMs?{r})0E-D4QR}JW89SUVpJ-8qv?tfJ7!-aDE2jQX%d+`tf=^1P(lYqvQa{s(^ zZZaE~Q0joKq9Ivv43MDHlL@yq3^WHkeJ%(R#e|?;Dk-XUu3BYq{=;a1aAi|4-{D8o}OKycw zctJkJYwp(8xc3n}4tnNQ{U*KqcKn*U>g(`uB6MLK6|C|`cD^z-wvN1;Zdum@n);TwJr~Y>)_y<}^nc&j+l^$<~3m8sX z-Z#VkyC&6lCFgOb_9qPQ={v6J=f`vKG$yy!pGXBfjg5g#9k({w+Mj6%fvZUl!Z>{_ zr`9H}f^c9`b!PN(6}0l_Na-bNkGVuMiY|5n_}mm!O*Cc|$btszX1 z1hRnQDq>e7M4^xFf*cZAb0RK!nD)RzvMC_659mA4#SGq_8eX1wZ$7Y^vp5@*!K)Hy zQKwfK^;u0DFHw}ld1~$A724LsOU!tXjk5brH;b7JpjHNc8RkddwJ3+X$B6P>yK6EN zVJGX0%mW8Cr;gB*T7RNzVI9`Zh+9zs)VTb=Fa~HQyZXTR?2$g=zo^FFkER|&2kw}Y za7SFz+NIn^$D*TJ>D(f>m-g4a_`JMGZwP;<84Au;=+%KL_hGpL06~sBzu$|1ss{%w zKR}FDqO%u3s<{%U(ctBhv9W&tZZrKa?6RVVww^cHd26~P6%hcX^<4L?U51Aq6 z!4dJ5MubY!;ze3SJ@akFt4v}7c?9Q0BtM2Mf;2)yq6Q|w$xV%t{H{p_@BEa5c1O9B>jzZ+i}w(;d`w)oF~0ijAkasU7T literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/collector.py b/env/Lib/site-packages/pip/_internal/index/collector.py new file mode 100644 index 0000000..e6e9469 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,610 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import cgi +import collections +import functools +import itertools +import logging +import os +import re +import urllib.parse +import urllib.request +import xml.etree.ElementTree +from html.parser import HTMLParser +from optparse import Values +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Tuple, + 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 + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +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. + + TODO: Remove when `html5lib` is dropped. + """ + 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( + element_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, +) -> Optional[Link]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = element_attribs.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = element_attribs.get("data-requires-python") + yanked_reason = element_attribs.get("data-yanked") + + 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) + + +class ParseLinks(Protocol): + def __call__( + self, page: "HTMLPage", use_deprecated_html5lib: bool + ) -> Iterable[Link]: + ... + + +def with_cached_html_pages(fn: ParseLinks) -> ParseLinks: + """ + 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, use_deprecated_html5lib: bool + ) -> List[Link]: + return list(fn(cacheable_page.page, use_deprecated_html5lib)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "HTMLPage", use_deprecated_html5lib: bool) -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page), use_deprecated_html5lib) + return list(fn(page, use_deprecated_html5lib)) + + return wrapper_wrapper + + +def _parse_links_html5lib(page: "HTMLPage") -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + + TODO: Remove when `html5lib` is dropped. + """ + 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.attrib, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +@with_cached_html_pages +def parse_links(page: "HTMLPage", use_deprecated_html5lib: bool) -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + + if use_deprecated_html5lib: + yield from _parse_links_html5lib(page) + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + 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) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +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/env/Lib/site-packages/pip/_internal/index/package_finder.py b/env/Lib/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..223d06d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1004 @@ +"""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 + +__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, + use_deprecated_html5lib: 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._use_deprecated_html5lib = use_deprecated_html5lib + + 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, + *, + use_deprecated_html5lib: bool, + ) -> "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, + use_deprecated_html5lib=use_deprecated_html5lib, + ) + + @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, self._use_deprecated_html5lib)) + + 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 = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + 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 = 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/env/Lib/site-packages/pip/_internal/index/sources.py b/env/Lib/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..eec3f12 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/locations/__init__.py b/env/Lib/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..ac0c166 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,520 @@ +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__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + 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" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +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: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.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 + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + 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 + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + 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( + reason=( + "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: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.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.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.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.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + old = _distutils.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 _deduplicated(v1: str, v2: str) -> List[str]: + """Deduplicate values from a list.""" + if v1 == v2: + return [v1] + return [v1, v2] + + +def _looks_like_apple_library(path: str) -> bool: + """Apple patches sysconfig to *always* look under */Library/Python*.""" + if sys.platform[:6] != "darwin": + return False + return path == f"/Library/Python/{get_major_minor_version()}/site-packages" + + +def get_prefixed_libs(prefix: str) -> List[str]: + """Return the lib locations under ``prefix``.""" + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + if _USE_SYSCONFIG: + return _deduplicated(new_pure, new_plat) + + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + old_lib_paths = _deduplicated(old_pure, old_plat) + + # Apple's Python (shipped with Xcode and Command Line Tools) hard-code + # platlib and purelib to '/Library/Python/X.Y/site-packages'. This will + # cause serious build isolation bugs when Apple starts shipping 3.10 because + # pip will install build backends to the wrong location. This tells users + # who is at fault so Apple may notice it and fix the issue in time. + if all(_looks_like_apple_library(p) for p in old_lib_paths): + deprecated( + reason=( + "Python distributed by Apple's Command Line Tools incorrectly " + "patches sysconfig to always point to '/Library/Python'. This " + "will cause build isolation to operate incorrectly on Python " + "3.10 or later. Please help report this to Apple so they can " + "fix this. https://developer.apple.com/bug-reporting/" + ), + replacement=None, + gone_in=None, + ) + return old_lib_paths + + 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) + + return old_lib_paths diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72ffe6fec7730e0d6334bebb021ddbb0d0a7738b GIT binary patch literal 12362 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�?~F}Ys5Qg>3f>n; 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 Y{R`!{bI;`lMvdG^E;pVVO^>Jl4`DC9{{R30 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44b8caa7d68ed55150d0aca79f665f3008380c87 GIT binary patch literal 4630 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..489b519dd78ccb10e03d8ec7942448cd6afff2c1 GIT binary patch literal 1512 zcmZuxOK;pZ5GEz<(^{=#yNPY|As9#zqxHIvLx939YB&y(KJ37DkXqP6&`R93)>={^ zDcifLPtLXd4ZFwwC0={#U+AIfkg{tB2nCWeL(Xvc%}23TtBIh!Z9R%Vt0MH5R_?Ys zDBnXD3Wk>`K?%-KP|i5OMz;dX%ywX#*$EsoSAq)6R#qL=f*RI7c2*xXf(AyUHf<)( z3nYu{@q!y_RJ@rq4fuX)2#_<`p^!Hqc2a0KZ=HoZ;VpPxPL~tNE!86-z>!i z=Y&fC#aNzzH4=X03&|nT&wbJvbWEtVuRD*|d~gQg%P-bScN1>&|E7t*9xysUC@wdY}^WO!SoJp7z~<&2De{8 zkmw3=S0gvIr8BG~cxGK9x;mM=w&7`Y2Iy)l@WFGCtc@R*e2~txo>()CQOOD8(fAF` zGz08C0E5SqZ;t@|KFgru{+Jbh#EDNXNL)w&*oRB{ea=RH98sS#KVx(N8++OXSkhT< zavQQ#78ADj*S`C#tr8xXU@?${`o21m^XGb^+!!A(OD& zeOnE#d80fHxRlI;L`#yHDXIcNcRlcluHwppF)rHd39z_=-osf4BhF!>k zZV>iBkig5S1qk9Rjf=IX+Aofep6%~FJ=p$v_tpNvkH8DGbjfQM$0`uII7o!hrt*2gor#8G@gLU`@UdwIBf5bkX6JlhSQJU>u% zjj}EVhrc3H_5ECvIm&<|lB;$YMwBvHGCT|oZ%e=z!BNN7Y2Q2zzM^Az+Y%mWuaKlH zdcz!f`21*BH8Ng=CK>)AY&BTC7s2}0h$TfvzSHkQd 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/env/Lib/site-packages/pip/_internal/locations/_sysconfig.py b/env/Lib/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..5e141aa --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/locations/base.py b/env/Lib/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..86dad4a --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/main.py b/env/Lib/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..33c6d24 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +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/env/Lib/site-packages/pip/_internal/metadata/__init__.py b/env/Lib/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..cc037c1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,62 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "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_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + from .pkg_resources import Distribution + + return Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, 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, canonical_name) diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..812baa08d1bf5c78ddf2957a2e999aa080f63cdf GIT binary patch literal 2268 zcmcIlPjA~c6qjV#mj9>e)-G8G@Yebe=Q5x`Pz=M?b(gj~Y``$XfJ}?D%~=u!l1kws zyX~-#(d@Qwvd^IFPCaj@UAFfqTTz1Kwhw{@I^)S-?H+^4^hi`mD!$5b>8j>$3qw25iU!Hrhp7?10^a=#U+L z>x}QehtoJ?ukc?AZHnNV%m|s%_`QqaW^wQZ)%-b3DY3|Lsu*G9tMptbnI=3n#ps2I zx!!8SlkeA@$3^cIPo&zG4^8_s4pb91R0x6sbQ~4n(1D?NxZ);cd`a`zguK2nPSgVr zFz^O*gsgs~mf|K?X#~4f4bSgE{}Q_X00!nV4_o61pY1<|LxgTBIwx zosmSZsp3~Bfdd&%XcS4MHLQ(eJ+Vub4?z9q7QNaL#*Jc-ZB`*5B6AgStwyk@Xz##M zLwvuhiftFzcHemy z&ZTSle!SzG-eg%WEje)5y|RhUcqEpB1MFKepWC$a`G3GUaIaxk&=$zfBEJ&nAPJFV zQW;_smAcr8ge18(mU%`faL@Jniq1-|72_bNl4H1()n6P#y1HjH0Uu#{5biQhBP(?H zk7D4grUuLJxSUos_s1gR24jO?yg(r#1K zO@gppBeXP$T?g?;Fs;xGw=t^vF!3q$lDeSp*~shhsA!pO2Bua>mqMNjA1lY*-_mv% zf`P-ZER+rSY+Kh^E!bUaYQl=G(5gl7ERiga`Da*CH5T*(=aCn9!~Svquz%e97fV@y A5dZ)H literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..818173eb359b92a0e1fd27792f4c22f17a3743e3 GIT binary patch literal 20822 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 VKb<<9`F7^plfO81b*ea1`oER2cVYkl literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..040bd5dc801ed8e0ad0b04e32b9855a2e00dee28 GIT binary patch literal 9838 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/base.py b/env/Lib/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..1a5a781 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,546 @@ +import csv +import email.message +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + TYPE_CHECKING, + Collection, + Container, + Iterable, + Iterator, + List, + Optional, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import ( + egg_link_path_from_location, + egg_link_path_from_sys_path, +) +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +InfoPath = Union[str, pathlib.PurePosixPath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + 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)) + + +class BaseDistribution(Protocol): + def __repr__(self) -> str: + return f"{self.raw_name} {self.version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.version}" + + @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 editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + 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 installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @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: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + """Iterate through a directory in the info directory. + + Each item yielded would be a path relative to the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NotADirectoryError: If ``name`` does not point to a directory. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NoneMetadataError: If ``name`` exists in the info directory, but + cannot be read. + """ + 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. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + 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, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_provided_extras(self) -> Iterable[str]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.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 _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + 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 ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entires declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + +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. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + 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) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py b/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..d39f0ba --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,256 @@ +import email.message +import email.parser +import logging +import os +import pathlib +import zipfile +from typing import Collection, Iterable, Iterator, List, Mapping, NamedTuple, Optional + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.misc import display_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + DistributionVersion, + InfoPath, + Wheel, +) + +logger = logging.getLogger(__name__) + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class WheelMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + 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} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_directory(cls, directory: str) -> "Distribution": + dist_dir = 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] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> "Distribution": + """Load the distribution from a given wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_text = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=WheelMetadata(metadata_text, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + if not self._dist.isdir(name): + raise NotADirectoryError(name) + for child in self._dist.metadata_listdir(name): + yield pathlib.PurePosixPath(path, child) + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + 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: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + 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) + + def iter_provided_extras(self) -> Iterable[str]: + return self._dist.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/env/Lib/site-packages/pip/_internal/models/__init__.py b/env/Lib/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bbbae36bbf092d9b0ec7eef01519e1781808193 GIT binary patch literal 236 zcmYjLJ&OV{6wKPV2>TyWYT<5qhln2_Hj0ha9f1&c9~w3$Auq1zKk_fx`Y&wm-kw)D zF!Pux-i*t#9wYo@{c=k8(VBN8WM)K6NhU~TT=Owp8iln0+laN^ q3DgmW|BWcT_J!0oLa@pdugXGFqN9|#zueO?g(m}(c0aZyDfL? z0>cTXlJscoQ1l(?_Pp3DeOLOuAPy*bNVv!S1Hyd~?7MM=2hT`U`3l)2qSo&xN(*qj zjV$lN|NLXIdoR&~uNOVo6Hl@?S)O9_?5Iu_`Z+j)#FUfR;WT!)0L3R7d)yU1_h7=U zJm8g1^&RO@UgdKKb;Kb2j>BvG)PWaQC#yPdz-sOt@km?)j7_`nDAy*DGBH_^uO~Ur zcw)rx`cu(YLW|t!FbVsG0WV8rcr~4dTn#&g3bUE)R^(bQPkO>uc7)P!p7kVDtO6)N zRnTBfHc-M0RKA%a&(ncEPUr{GH^7YOh%jR4$k|8F8M$CxipaB` z7P9kK4TsduvGKW#9g^=G_iwjf7pmKSQOIKF=E?)OvD+5;PJ1JJ+18m6EBz$xCR;+c z`&oY#t}sI7iCpa!Tu8loL~En12{ir{M;5_Q;$A z57|_pB*xCe>Ki^gk4}C+{$I;D<-fHktOYtfyn@ieBkscGNms+Yw_#$yMrr{<)de(v zA*(Q^4FFrjy-Q$*izku*)RuA4DJ%x%&6uq*28|m?^y`eh8YFVE1IO|rh0mZ5EeoT; zb>RSo!Y(_jE~0lCjBQLblnN<#7zFBHMq%YW_@PUqd<%^_Vx literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3620e8820f87063b1e2089aa77afcc73f468b88 GIT binary patch literal 7265 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8811eb6b34771bc13d63e5ef89c20f958730ccdc GIT binary patch literal 1205 zcmZ`&&2G~`5Z?7)9M?fD&>qUgM|@}^aY3pOLIpu9p{N2bSdmt)chfp`Y_q#5G|H`& zdg2{YZhfV_a^e-Zlo_X?;lM^S`ew$nJKxNt>U07E=eF}S^Bh8cqOp3wM_z%bXP`LY zv>*w6N4Ul9OTz67E3t&d9qw}PyOr30TikE3!|6v7w|_w%>1U`{k9TLNeEdC>7}{5+$#z9P(n<*b`Y8 zuN1ndG83qLTo;0&&#%wxyg`qKIrx;WB)rXdHBR$V+CWXVKp9U8J&|QUL)Y>kUW(cS zLz4?Kr`Lp%8J!VkX?x_%-5I^6BM)qld5ePu*l)1a;P%V{PrwN@!0sDwQJ`_KxOmOD zYElbne8%!J*Nin~84v0&@+0HcsZ_%FV5+*vwZws&4w7QSO0qiDC(;F<#ECU*V%s=M z6vKOdH`KHl%ZgMf#%{>({WrUVua!I?D@`Hh@1{Yc{X^T9}QHl#ZJ8#lN!`{ z-Gj=skY!r*#uXQZ>g71SZhbC8c(e_o5Cqht>okO4;7&JJ2i;wg1J+P*X2I9XgBVG@ z22tyvG#Sx3v}|NUYb|IR?Z=MnKtw(OWm>>}1ha4W#g^Q_$QG){f7K=;ybOWDC)Vk7 z``?mQTNt--0A)HBjG2Hj;5mVXVJ2kk%OoxCA}t2HlYtxBsftQNJB_WhZ2Hi=2cuau zIuk_!!@Mu)A(qtCwPdXDuk90u`qs9!9ZK|1H%_#!)o!nc>(Q;`ac{bX%d4Q>`lKpP zDy0R-Kunu)Pq&sCS||-)Ez_Q$z4M=3*Mz_yHmut$*rL5yfN>7b4-bt036c@5Fle|S Z1LMC~H0UJ-tC_t|9@ycgMI9R4{sDapH@N@+ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2184d0939ddba010a42a9e35e3d02e1fb9c8c9bf GIT binary patch literal 10137 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac2279abcd2d6be9e086ca7d8011e794e6587619 GIT binary patch literal 1004 zcmZ`%&2AGh5cYaEo9(vc_l_*M5DAh45=a$7MWqDzP=3crD+M8DHQ$cy@p$H&v74JYLHWITzxYB4`5G3h660bU749HN(j$jN zMxUZy^pZ#_<1-@TkF-Z+(j~3N>F0dUI_6Kt3YY+}g%(~(Hq*Xjx&kkZ5nkJhK~bua zf_A>RAlRX*loN*8sd7`TX3P$mmh#+ zn@~7C_E0BMcu^o1f5`@}wo&0Rf+D>LnW8f4#VYAFBvq-5Q4`b#YKq#F*>FRy$^0zo zp^faV*J*db%Bg?OmKH0mk-)~nm%wJFE=nexViQ141q3SCK!9RWJ5_k=G}1n_E@vph zc|8<`|F;o>y5ysM-sEhutSGwA&>C8Ua#-I(5oVT(w_>)s+N0+}J^dy9o1W zPB@uU#AqHP(s_ay&l`w|Bv@gz?;`YUrF8d&k@>K|BRr%xX4 z839LqRZaVE^`H+Ldw5v_^v8PK;Tnemduuu)E0uxHa>{Td>Wt%|_MG1i`G)9emPX;r zqtok4w%b=ett|LgVx%~)bIvi^!~}bT^A8hYE>D`A(7X7`|5uW=5> zdcge{ymMhR7UitKdf00sghOBm8A+lfp+SDpnEs>*{XrY_J5A{YZC?Af@ZN95?gl!$ en*qZ8m6)L>7XsJW(`CZX0@)B6m5?mE75@PpsR_ye literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0162b9181abba3fe54da6fc2ea8139a3535c9e8 GIT binary patch literal 3459 zcmb7HUvC@75x?F0!y`q>vaQ&Tg92B_NzB5b^3pVL1=mH~6afU)t%3j{6kN`?OY)@S z9ksiZZI&vU%0SYGKJ*(Q^ulyT93sOxad}^n{(;-Ps$?pWn=^%H`#j zgXj73jr5=A9p~S)IQ_U-+`-U~L4+e%?)2(6>oL3LJ#OD_&$Vx_=i|-uVASX}7@c+V zaMbKI?cB>-qov-Go%?xvwA@>^^B`Xto$H+&t@c)#Bia1Cyl~8V7k}%Bh6o=!B0S=~ zHNm!>PV+y|#M$bw%G=De!TWrg6lIa6NuEt*TqGk&%zKaSeTsKunCRH#y2GoLqEw^$ z&^R%}YE4Ozq$W-#W*GNXIf^GLPf7aer-8*C3_Syp4p|M08LZ{P9q^tfeZgfQ8*jqW zAKspD`hoC8@Yp+Iz3>cv1N=}lAA7x~@MNRUMN2GU)e>#lz>byI_r$VT!S0f1!18m| z(zZ-gI^0gnv7CO=itzlVNRzRig22f`&hRik#?XHO890aTjNNsA#Z%FBpeYX(J4no z<^5fmnkeZTsiG4MWW~U`>#K$JU)2sFIZxT2Dt~CqSWmOpJ@_Cq!&m*R}Cf0Oj#myemYFDq6!elJiA}{<3wp$ zg;>_JK&L}Fl2wqGgMn04<3XYdc%;*)+%(q!$=2c8)Z05uc;ONB2@@?k{+fpmo@3@txW!_)-#oAhvYdBDa zG3>}p9RC_CO&JpSEjC>{t-{HXl!1NnP+&t0tHVDqK|(PM=&iP!R#rMu}7WG?o z=)i^7IjA9L_~7#Yu}TuE4;_;zdGMIm{XSxfnYSDBSL0l z`maCO#`S7D?3a^5LNjRgu*;|+Gx7!Bddk*O)SKf{XAh}$s1G3J6afAGNs0PPj;=zq z65DP%yata8EFyb8q)({0D_iSUMtfw~_|Z5cNEfn~ zS>$UzAS_rPtYI>sWDgG6w>H`T&i8Q%IF-@w;Rux8!0VLKt&JSfO3Tss_SfKOLfD!! z{pkNwb0GxRNmm<>~bwqfVzy?S`(o zaa^_HxV~6m-j3t_Ns|A-X~eN8Q*1ZmSm&kDm@cL0#(E@i{}75?pl%a+o5;IFeoo|9 zL~Ohlgsf21sPIoh-G@WRLc1}14Fo^bnP|5BC`q%u!TdUVf7Yn3ElVr*en$e(bWOG?!;ucs94-ywI@#Q z5#9P8QRjDEfL}RaKkX705>sEDuDmRvJ}}C3YA;^4Xje^yaMNCw)E!dZ)@bs`S+1(W djXEs18BW+96*?hqE%euBZH_;rON(D{{|nHl|~N_hGl^|Ie!Kk7wg^ZUX}qnQG~J1}<6 z{JGKI8kL6~`>hLuN6_6Gefj+#6HG)LwA=R%1*Ai1z&Dy-1Ca4&hAKzpKdR=9;?UO3{f1j(7^ zlEaX=Z4@bXVPtA7;by6oVO;9VDhY%Tshwv^!4#QFC0xH+d6$+Qm^DkfVtOWc`9VDb zOChU;BbXDeJc6{q4$W(N%5Hrmok-2>s{Bx1YGVbp;>AK*;b^h)S4IzpHUqjW6c5>E zFs)!hRm;o@zpy$F8@4U@82UMM*9Wssd9*+_s&j@F2xH3l24W3YIgfQ{EF*n~$w zWz3cker`pehmpHzC1&z7aNTcL*AEPz70j|Z*=OO5{CFjRY+F-B=F9>&ggH{PM2@Ad zis6KI;x<#rW~Sug$p!i1tIvCcSwRY6=hAzK_J&OM%IB&|ZK_fiV-L+C-Dl)mav;ym zEeOU3_nQ10}$rs1VdUB6hBO$xiDr}RO1K}TSk_me2YSroo@^z!4o z-b8;J)k_A$!LZi~c{G~~O3OB-aNI%#zeDMZ1yh@q2BqBOFx{fmDdQcu$;23C!xOe~ zF!zE9x7{-Vl}*5e*Y1wNG*J>YQ+y9c;Y)5X#((1&|CJ^9Pn_aEvJBtg#?kLp)UcP9 ynO_wk%j%%=6CkI5OHRKgr+@f>YBb@{Js=gXfTnDIUElGWC_oChI;ex+kN*XCw$zLO literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d728ebe88a3dfd4b08743d11f49e3f08194f167b GIT binary patch literal 3421 zcmcIm-EZVp75BaNcs$M|810ysO3C`piP8p~aaxSZxGLkKlw}3>t)kRyrKu29u5vYfqky%mqs6IH~M*@_2iFF8z2y^-dKORkD4p-9!8 z3Cx53+|=PhqQ12l+Yr@j@d=_L<0=`OzFvpZHImMWGzCI;L24f-nCfEK!sP1mF=*rY z6&^DJne(|5gGx4qhKfDGNb)}+80Wn3DtFE=*g2Q(mtNJXeBzTH?OyP|vh&v5g>-xF zfd+F1+L^aNL#uU7(n^zl60IMyW;iM>gplU!V%bx-_KWJp*FgQ+z9jEHE_hxa4# z-pCGig;9wf9wAup&$TL2cNqx^YEp?rD{-CK;&5g|J)CL{Ckrz(mC7UW0phPuQ=@jp zX_{p#>PBfHZ|EE*g*a5=aGGW?vS_mBDpKGzMoA<>B=%vSTG4iG9DN6}*^D$@y~3DwE}Oc1LcU$_iIRj!<5SmqNLewb!y zHM8{+O=fQxu>ycQJu#XVLvp`J3@ZK=D^}~2>}e8pk*EJ(Gy2a^Ku*n~XB_X|x~6VZ zyKsNqUG~2YXx)2KrbX@M$pkEwUZ6q)6&v8Oc%e5*nO}QGWupa*Eb$ZTKOFsSyq-UP zw0Ce?>f?jomsxr8^Ly`Ri8(${#mT|@>EVG%D|PQG+Yct`f3DKQE=q%>4#N z0fmIh2tysj;7O}ECjDj$#NP_|CJXpo?sK0tcj%toS;q6|N@~a;adnY@2FT?tyBUk7rbmE(;R z8qC_+qw6Gl*H(sw1dH^$q9}`dgk2)3nyPLvi>e%uw^X!!{Y}`patewroy5>{7vzty z_v7|CtDHHzU>`Zm`IJisHn4t=>1}YJo%86&wFgkGY@izQ9cr4J;@7%Rb*lIvhxMzRAPR!rh{%;d=(GMTL^H}`!&7a|q20a!~j)posCInU)L9|Sz z{XI&?3H{eZ;k7n&wnm8hYx8SidmaE#(vQ*z2(Cs7U3Q4(keBG@&4Q*Lmugcjb%lP< ztJ{~bwTM&g5z6-37L}Sn($9(}S1q{g-%Zc6(QH6$2m7^0C%PHHfKZ+`eg_sq!3%xg z4S*{F$Auu$?Z5DSpWnckE6JYM$JN^)tSXXR#c>_RF#v6v(YPDOpH7qPa;F`~vK(T$ z6UQbiD-*|>szOs)+hWxe``QIE>hIFp8$<}U^pA)T4lWU@Vch{Cv^R9l!0~v{;$6<@ z_Pz=^|9Zpa{|Y_+!f)}fxF0^>*x7o`N})~MflTdJvkAIqs)G{()t`|0I#8W@!78HEQX2_OuqKf(MO99}=S5 QvJRZrSeI||F1zji8xJIVZvX%Q literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..575bb474983d7b465209c2741b7b7b8dac3fe37e GIT binary patch literal 4312 zcmc&%-ESO85ucu!{q)+t_JCgv40gJ5$|VRb5rTs&X_t zTQ~5W&MtNSJZl(#rH|rc;o~+&@)JzlXd9eyGhl6oUn?+sR@>^?ZM#=$ml&4cBsi;fDdg%28UcA)V_WHu<2`}`+tycYS(Aap; zw3L0v@1&}FKNZs341}^j@RPL3l=ax#!q4LUud&@o1C>RVZSVKQ`kG@W3yf1mZ)-@m%6sTvfZw6ThvAMiqSQBmDgU_?HOJNrE$f; z$}INH@CK-JW9qD!7Y(eKqa9^F$LF!*4eYouI=6sxZ}1DCzR624=YlF}^#_gj3Z@+V z{-dS!hpTj-zL0DA`&#Sm_2x2t5w&$~z1gfgqi1PJFKq7l0bkqTzx-(VDXp(-YJ8v% zR`@I;rNN;XCdfxBbkF?%x>@%+7U)6R&<~iJWQr+DO+2Vxu3ITWx++N zr2VH#+F^>dlm%ZYn|#z^Fl+vht*aPsVk9>)Z5u=5>Ea>owPV~dp3WV@nmY_{)kBMH zKQxEdk@W|Ax3OE<1&&V)!WWn)5C-mvEP+eYR%Yv_V*836C^k4@%1%Vkl_ci#AKzKo zcpk}T8^4HxsQ=FLy}(PJZHTbH@qxd&k@%@tj=jz^Z%ZT_u^-=X{Sd$nz2HVK;vz_H z=v2{)4^(Y65osst#cNBX{~V^WQD*ijjRvcq4!){E(Q?7VPhGdQ8blp0NY+~8lMkA6 zYF2Y}$sev1s?>v(wj}{xl5tdNOGbOKsz`w=c7&visVcB@;zyyXX@qGy-6yOW|P*GBmy%@N@!fh^lJ*J${|aQA*4Jpn6Ybe1A)UHPzDB* z6I0Utlm$td1t?513)EJ(L@4%SWGP}u;c9+-(HPv!F1saC7iNRMpjhTVQn%pd{CLw; z`nQ6WP2#6A8lB5C+TY0_siCt7s_2XAwE4Zi zz)uAa1krN=Q~Mzo`&oU9LNO|OSqgxA@}P2ngH1p5Qi{59>hL<-K2ksB7wyz7zmMcI z_TXL|XFkgxJZ-$ScF z!mra?=wubZx!IaXUO{E|dYZ$E-v03JL+94Fzng_2x`58M=seRaIzSz7%kx9xh#N+d z1Dts!qu=L#y6yBLNJp#D6;dL8wKheOqip@e3--iaDI>Y!-0vdao^9+*6P+TQY|E5H z>Qbgn)Eck9h7<~n?_eZf!=#bYIMhY0Z%8EGm%z+%0W-3RZ9q*)hlG3^Unfjb+Rku8 zNkcAU`T@oWERHd_mc{HyE2KiiliTydGhlLJDhn$bBfzE3QWO59YKF@TuQ8)t8YGuz z2bazfsOAx8ZW_5Ux;W{l2OUZk`9tqHQslSr(X_nJ0G|RP@^d)|UhyorBQnqjp5wZ) zBWPn0FX%G=bDTJP3G$u}K@F!O*W%@zo)^d1d7ZEd=n$MG;!t1Rr`8t4UL;ZO^4Kgy z<>PJY3K9rI$Rf6N<w3&fCC$T@_P_)qs1dq(*bY-N0Pl``F8Xko{BRh_-L-@{Y z3Nw)%Cm1i-G4I9x59p?V*64QdqR~B5ME8(gF(&m;V>^TK2-ol8)GN4t2vX9(WPWTL zRc4~mL6b8ohFt*LB}4#Tqg+Q#$r&h@x4Ut%mOnHMQ>b#Xj zD!xOXq=a0diA=8S%_s`wDt+sgXEN!sQNaR5mM%qA!)CT=GTXBMu~1pKc+ocJ%LunR zhH2LSdG#$x`#?gvp2`%ytT*I6 meoO3kM68>btN|xEXDO_ztC{)MsJYdk03@tM)-W69g7q)IIgw`o literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/candidate.py b/env/Lib/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..a4963ae --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,34 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + def __init__(self, name: str, version: str, link: Link) -> 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/env/Lib/site-packages/pip/_internal/models/direct_url.py b/env/Lib/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..92060d4 --- /dev/null +++ b/env/Lib/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) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/env/Lib/site-packages/pip/_internal/models/format_control.py b/env/Lib/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..db3995e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,80 @@ +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/env/Lib/site-packages/pip/_internal/models/index.py b/env/Lib/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +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/env/Lib/site-packages/pip/_internal/models/link.py b/env/Lib/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..6069b27 --- /dev/null +++ b/env/Lib/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] + + +def _clean_link(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 _CleanResult( + 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 _clean_link(link1) == _clean_link(link2) diff --git a/env/Lib/site-packages/pip/_internal/models/scheme.py b/env/Lib/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..f51190a --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/models/search_scope.py b/env/Lib/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..e4e54c2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,129 @@ +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/env/Lib/site-packages/pip/_internal/models/selection_prefs.py b/env/Lib/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..977bc4c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,51 @@ +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/env/Lib/site-packages/pip/_internal/models/target_python.py b/env/Lib/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..744bd7e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,110 @@ +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/env/Lib/site-packages/pip/_internal/models/wheel.py b/env/Lib/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..e091612 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,89 @@ +"""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/env/Lib/site-packages/pip/_internal/network/__init__.py b/env/Lib/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ba18113d6e2f184250f7b23ab039c135a2530bb GIT binary patch literal 224 zcmYk0u?oU45QbA1OQG-3(IU0rB8Z5fIEjms5(u$5bg$M3H zWUWJq4#AF+Z60-f#)PgIdyuB*FMaK`SxsqJqI)g%Wm2pqw>1TIp&L9>iw+9ItD2v{ kQiG;ss2ntk%kr02GCxAc*vQD*ylh literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..389d48050efc374e27410d9d4cb6d751b9666861 GIT binary patch literal 7504 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74d70a4fac8423913c3f9faed86c17cf596aeb9b GIT binary patch literal 2905 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0951bae2469698b04f059de302593f73b44af448 GIT binary patch literal 8379 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0636aefc6cc9835163dce2c37b2007712e3ec9ba GIT binary patch literal 10710 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 K^4BBP*Z%@%qI0_d literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a290a96ccf5c1eb01ffe2004cf39f32087d1d0ed GIT binary patch literal 2037 zcmZuyS#R7n5GJWxt6i_1`zjU)3Sx-6 z3%Mxbpn2*)=!5;3zr@!*^(QoEhtkGQ+fd+$Lk_8#Z@!_5cH2kL-nOqLZ*7GB)XMwK z1m#=k;x`Z!g@|HGG92RiO+ur7o1q17BeN$?=uF(u#oEryyon$B_1MZ!$r1qgu_#}5Ot~d6j6^^S+`)M7TZsk7leLmRjbyB#{U zg-=^F0IN20X-8Wzk1kw58$RvQ#iv&2KSL%8TL8-`wFG|uTqARg%IwEAUTmk7_2S;c z51{t&Kd|+-(^#9HAn?%dK`TaMz-Um9Zz?a%Dcg;vJX4NnfKtH}K%%i^GMzAGb0()e zUrjWD-Zcvb#=MJ9U?9-}I>eQ6gfWt2Y#f>uKEnHEWsa>1MRr9%Iut>4c(v~;OH50~ zl^aEAp2{dvHn;#RP*w>!V9Eux8QCJ)0x~Eknh)G)?r7gqreN6y*Tm;7Ep(2;RudC! zm*P2w3`a>83lT-n(Th9ZeL2)r89peoV*88hH(}+`kmcLMyXj~sQpv8Daq=kMWMWvR z^yYgf(VQNyV%FGOaD*Z;5bTi3&_SDuvgAjoYM?2 z2snE@WkN=yg6=72oAFU0Sf6lx>>$xlziT>B-B+NCKR`%SVTlijaPFWdxI$x6;fheG zZ;CeTeM=f+^U$g+NQFJStSdal`wrOIW2dq!qjIQ0&EL&^SGtvZ0LiONNR(HhL%(vz ztt0#sq|8Jz*t>_(zK79lq4LIU@s0kT>>MsoOY7rqWgi(BJ%R7;d%t))cn9_E)mZ=~ zDWQjIm(lI=`)SUj11bbEb$t;clz_C6N9ovk!uy-g-% zns35He^L3VNOP#)JYmX!UHmiv!Mj>4f>1tCXPVdK;b-)OS!&SXPDK18t#|6Rh%>lt za^RZ5;~lQqt=!`|J1aIfH9-@e$~1{H)oQMcC@CoG`~0jv?vfUlwYZ{1eYz&F6v_ZE zcu&t>1ECDIoA3)-t;Iz>=gbq|14VoaqT?*#02APm4YGOcSFUa24m>_KVNS1@uZiXU zO8%Z*`~cVHhxYN!exU0sk0%W3%a5W-L8qA>2T}BR8fWtrCyHp1L=nFVE^tjZWsZs> ztNE?0(Vk?2>tg52daXS#r-Wr0Y&wbQoHo&caSy~P=ygyo0=F&mErfH@N#_k|n=c6= zZ-_x&6O+6m7I|sgOE2o({d4?tI6yf%4Ul=blj`eX(4x8G)cem@8x-&59XIl1IVQh+e~GeiH2Fart6AT9y-@WTD7$<)^vb_#vNn8-C;phXu4Bmjz-q>FuW-uMSr CC@%m2 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/auth.py b/env/Lib/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..ca42798 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,323 @@ +"""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 # type: ignore[assignment] +except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None # type: ignore[assignment] + + +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 # type: ignore[assignment] + 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. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + 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/env/Lib/site-packages/pip/_internal/network/cache.py b/env/Lib/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..9dba7ed --- /dev/null +++ b/env/Lib/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, expires: Optional[int] = None) -> 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/env/Lib/site-packages/pip/_internal/network/download.py b/env/Lib/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..35bc970 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/download.py @@ -0,0 +1,185 @@ +"""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 get_download_progress_renderer +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 + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(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/env/Lib/site-packages/pip/_internal/network/lazy_wheel.py b/env/Lib/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..c9e44d5 --- /dev/null +++ b/env/Lib/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.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object 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 zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(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/env/Lib/site-packages/pip/_internal/network/session.py b/env/Lib/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..cbe743b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/session.py @@ -0,0 +1,454 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import io +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 + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = 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: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode("utf8")) + 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, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not host_port[1]: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # 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/env/Lib/site-packages/pip/_internal/network/utils.py b/env/Lib/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..094cf1b --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/network/xmlrpc.py b/env/Lib/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..4a7d55d --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/operations/__init__.py b/env/Lib/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4eaf3bc827af7165cb9a11f2eeefe101eb6703f4 GIT binary patch literal 172 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w?#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_#SGp{7IC@(QbKffTg oD6u3nKd)Fn9w?ew5+AQuPoLithRnK_YN-nYvBY{8RSn~Y884gh0%jIgE}2~wwYgCD&(qw)GyDzINX3fL+qVml6s%)CsHJS~CY{~X(yZ57-kQe0{by0RyRaxr#23Kas z62pFP;K(^S|GLtd%5$$(Oq$$lcFJq%MdG>xIgSijj7C(Ri+Qc0;XVHO#uAXg^DI zjF%rMNr#KMelSdiVc&@SAw)RSje~9FOT0pd>${}ZA0*ljhiQgu__(ZdhI^q-hUR6wIQwWu#g|H_&;<4KPfA5IH|x`f&i*V+9-^h!&?yGQvYz+@gSTwS z?=kqrSz;KAdrVresa>?cD6RHLWkDFFMRl)yVbPp5uQ8@?KGgS%y6?w{+>I2*P2bRTb%LzU^q-Ng1I}k+a;s$G&1aZJTA)%pHhV4>=n=R07%0PZw7{`2Yh-r(ofM|KI=Ag3#KTRVfka!DtQXf zY0*ALzClA_(+!I`b7mGX#`t=U6jncfVXjcr5x={t96M36v7vNP-4FB-_d>KbChqoA zM4~&=2?94x3k#4aYznKwCYWh*bHUXKl=OL$T;tzBZPXka%3W{_Yoh@wc z@Od=Bn|uMIw&-y8Tk&t#)<3}peVsJ6(#>Qyl76@`Otk6?$fmz0281Gmpub@N1PL@N zXGiQU18V#=AOgi&U5<^&mA|fY!SLX8M{E0y9MdEme+E&$Mt<+u?|^9 zie0Yn(&)%}%OI=kd%1H|#Xg|yE$3`!8OW(Eu`PGpz`oj6J#SE&dLz>3dDZNMd|*xX zI{KTekvmya+HZh!!fjsF8<15eGK*xmoyaYN$I8K9S1HK6Z~(|njO)QgUYL6QWSGJ+ zAjx{&!|%z!J7qK4GYZmF$)9;)Hd*u56*K{*hMK)>GswIQ)Cs&BCDV71v%O#_0a=P* z3WxP1iBvFLG5Y{n5cNnatsqQQimA1&UUgeV1$ZRr;F<<5nxb9bLRUC(ptk`$SM33f z08C*8QkF=qr6bi32O%xv)4+(sv~bcyXG%g@rn^mp4ErH{Jj_($wbq-vq1pP(a> z1i1NFWSnU0P>ih%aG}wkF$bLacWhuN^tDS+G(fTs)ML<%xjGRM@RV(;lPvzq+t9&i z)7z(*BaEDY%L@kJBmx+y&ty|luo3R5;VC{dusC&j`Vfj+lzA+rx-MtmBf?&=cl=pN zncSHB9WQG8n?McGS!r%VD(<}~h}UKCARz^$$z=!K()`oJK6PTca?g-&`T&FSRF@m5 zbW2t#mi#n~cOzn{$zhYm{A5tf`4jp&xdnLzCm-Tb@)7rod1D=a{a67IVp8gFXqUP2 zx&L#!KVnBpX|i4cEG%IW_t_up_xcHhr`U~{jawIcym zs({HXaGZ^2B|}C$s#1nTUgWt0ei275vL6RmRdUL3{NVm-5|4H>L_8s2QgO_da1)2m zIQs;gE8UvDgF9*B;9`mDs2IV8x-dAEtMnz>L?3K|TVJNp73w}l*R9SNwl;YYqTHn+ z)oMj6SO*k>KFT!0#7#O$4Dy3u)Sp3?p&8pc71wgPi_CH!0cZ=es(**&QwFX;KyAjr zITaN!8BBbM3XWXtG2Pm6U_{jNTO{v{ZN!>95YcQ>y8*1ll$am(k8wS?DhURXi zG!iAt6ZR`Vy<#p@Vrp(eP^ljb2C5ID)4!x6_o+KB)(o=rW5~WkOBd1MJB15EX^XZY z7x5mXVw*kX1-eDm_hr&Ykyxc5}H#7O!Ybp+9({zX}bqnInIzn>Z2;YQ#iBEFujI)i~C-heq`VWXl z)0gOMIQ}}I-9c-DK$^%g9joaykzG0@#owYO=IsxHix0>zAB3pCU%V|AP;42QgSj|+ IGHbv84+=&ms{jB1 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eeb0a29f5a997bb5faa2f2e7d0c83a94eafff43b GIT binary patch literal 6170 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..921f380bdad288e6c250dda568583981834e480c GIT binary patch literal 14868 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dba9d24ec2a8b692f7ac546b92704b780d247c1 GIT binary patch literal 1405 zcmZuxUyBAq7Q?b$>1^5B)gsB~ z+SnyDeGT~vxySY+?Q5U<6#@)G@-Plz z98i}us7;!*MfPaxJRl)y{pQ4NVm(Ej_Tq~ls7^_$(`ZNwDpSow5pgkOS#&OBq{LKa zG$KrC$p%wnRo&)a5G8uj!PUVTEx){d=Q|-L4^qylG;`lf87HU31(Tx4X`wq-b@aGU z8XW5FpH2s*6d6_OR7xSMo7)h+-9_*yWt_|=v2rHQ}JxWx`Y9)uI>5ziC^^E4_ zLndjag`8K7fjK&%#YN>0(riKtQuzcf$hfLJN%d3~nQemKG=qBx{Q-3K2MApwPwdy$ z%3j)IymFT4%{`2?MVwc7FcZM-C-wWvfu|B?T)&3a24VKQ*yENSS z3%&u2M){V+sba+t)NGU%Oyw#fRAs;%B@rv4v(vK(=;}6`5wss`JXEAdbW1+C?Y1IY zSi80NVm}vz%Hm|}@Cs;I1Yr^z;y1X49wb3YqV%B2G< zB@`N}ETJlAELhPAq+we&j4;($?eCWByoB3U;cmic-sZH>BtI+8MPg=MYI62>BtM2N z{{HFV-Tq9-N&ki5;^NN9Bc7^BAM&sNJsb2D)AVF>Mb$4^*-KcV0mGE{M7b$8)vE*V zZO`tO^XhO@i|=oE2&btCMCf~#X9Z4(E!>7L#KBAJ%DOs!XT3cBr@beSz^Sue`AI@V zmL&29=4F|4e>SciHRh*4{12%^eYTnjfjH+JG4UU R0EY$@+rogywp;CY{{nogojw2n literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..439163b706904b9a45493a40d42e7e4fe45dc4e7 GIT binary patch literal 1439 zcmZuxL5~|X6t+E+nMpd?-S$H1uFwcLG!mOo30kQjglM-=391#XRCN?FnvA_!C!X=h zb~YqRP(`^`{R`bAocKL+<-|{bLzm~-B%}h5?D4ao?a$x$o@Kk;LQpQ+H?!Xx2>oG= z?Gk|TB~(3vhN2izOo_lThQA|7?!*qZW3F)XM%<|T4dLZ}?B_uo)V3#@c`I(!eP3M3 z!#IR~z#6p49NJ=SdWE%50vgixFK)a;$z#;nnSb&fGbv3?8Vy;&RBE^^A|Z!7i%z79 zw4A7nMU-o!_+VmZb+`2=phS;4xY|2r<)^pqd?V%fUMd7rcI>MO7xbt&<4P7eD@=z} z`wt6kz@gs$@nldcnK7-8l#;5tzJ~Di2El`r3r1nHeKjcnRx;)0G|?rmjU1MyLk83B zCoC`TbHy?v)vRg`?9mA;&MJS9W@A>+%BOHaE_CH7W+tl091DI`Ebk%IdrbxXNXW@+S(p{iepJ8MObzk6RV}V~gi^e&A^*%;(A1rs_p5vwW6cyK8WE!&`MoS;& zJmW10ZM?(_|7SwIrT>#Z#Z&YYQO`v#dI5SC!7ZfkPBBLIdj|DCvk$jtjX%P#gN3{B z&aHO-T&xIVQN9*&qIod{GdoQSu5%qxrZZ5E(TEq(@zHT~`}W7(Rx5(?ea(lC%qd%o z4{n>S=$h7U?LFVkC1t8OTsu4gUEMJUiuZ;>4nW;mlBWd-L+2kID^{k;Vquhg}SgauFP(`G!+>zu(Cs0;-)wGSx%xZVDgUL&{c@=I3tmUl^3~eIt;zTBP zw83or{)*JQu*Kg$+`rqON;U33lR}=|IeZ{eJ?=v+_P^zWzUGDW2iKlxt_TJ{~HF@1~R^3=7C`;C(n`>W%^Yw?&guX{SLR^B~i_jr>2fh#o&&dV3 zICw*zAN;k`R{P-C*{%E}p)yMnbq(xzA0Ty;GsqaJx@Dc!-Kk1TfTk4zkLsP;V-32y zNi}5?s=EI6Ec-EIW&K)g@&Df2KJc0d-Thb9OPLS;&&fcVTgoqk!hy%AzC}&^R&&E5 j2|kBFoe1^?21`fKxF~Q!5|TX}x*;aO3-Gb7WarI4Ga9N! literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d26cd7ac0b88ee7052f7a6c7bb19eba069502bac GIT binary patch literal 2350 zcmaJ?&2QX96rUM;yOTgPfl4=a(;Hi~v7tVU+rjB4## zWVNlL&j@ECyKNWkYFLjN?MBfy!`W!AJ%G|L+$5!`wXo! zoi?C%7M?lw4xOKP*mQv|g2!1(Hc@kF_~~7idDP21r^jN(y(~y#Cro;Q?{pLHgskWJ z14kr%?lXr5BI7})ubf27dI=jv_nKJF-RcJ+y&XRdcoIh}&Y;guQWm=+4PuzKsmb{- zW084bSgdfH^MuRu$GbNBos=g&6Jk8LJPquNGOi6T2pNUBFGk)Da|O%#X_h3Ra9OYC z25~oWJ>C=GFzdrgt|+I3uKGh3rRxD_ewOfotkJS*aF~e4K33bATm;?~cs_?mJOHDT z_#9>E0O#lsucJLY!Z{X;8KGK^en!8LJ^T!3T8{T1wL3a@V5D-OEAL_iJ*gZRIm$6L z-bIHB{OYi^5yaH-Vy6WgSXCQvAm%bMCy1TL<=5lZsS$3f2+x7(p&Wf(Q&AlN{SGlF zIsTD+qgKMhTDby1VX~Nt-5}d;5=mOuB<}u(_$*BEYHR)a)^5UgwjL#6^7P}?jnET2 zTP%LMbtmX-i6CREsps!_Jtnr&AYB8{Gsa^tT!UhOn{?(KoD?xsj@d*y_<06 zWZM8~60`sR)R3f#tKPK`89ZsrX12{o`pbke{!A=t$F(SpuZ%4Ds;$_0RBy`Zz34%}inYg}?J zge1*CBv3bu$|?m^gHZU2o71ZX4JAGWSAU0wVkre4pBy9r`P| zMl1W;2>AG713W6!*uyWbj;cc|Gjby*w3=6`xer416^a*hlvM|xU^Fr@8XB3I>$J9y zbMqOY*2w(c+{L@#M=c%cXb)D57d}K{eHUY-?nm$(AI)lcWe;zj+6VtVKK|d-w>dM6 zCpy5KDYKlu2;!bo;0E+s?RbJwhqA5*B@SLb&>#>I2$ki)^`NM70qkH?tpoRRvXWD+ z!h879gMJ(zpWj(giMf7NG@Ys36cRZp2RS!;Ls``+{-TPvUOS8(zH6S?Y1Md>P=%bfeATayrPiL8qrZWk8^_n!ih> z4MhfPQI|5|%j#5xK^P~|!azZ!dreCkAoo4SWrea%zsD7wxT;THRYp?=&O5{v=eVJa z;%>9X&#U$YWiBdnNtySQxeP|?N{jjXs##%5@BdpW^OF;Yxzjyf0cUXwj6OrKy7e~= zgFwxw+jwIbR?!-N6KuV17&bP4AV=iYrMK3RStoxfJNKtq=O4f{&1G42U7Gl=3k43l z1VH(sis&q4s#U62t1LsVG)bO2IqHW&YXYGt@Q}+V9oV-%ON&FXkdJ?nl2=YT!pRwm zR*|;x!Bs3=04*<_>RKLQMGoYJ)0{Fm*%Xb6)X7?pWp~CIHCpwJi-!@3HRa z9XK`%h>j&iodCQLG4n>0(0<5nDuEQ&!05=-Opq@dFJZf4V;fs!K_jz}iX%wSTcVLS Ppm48Ah5Sv7#;bn-bl{tT literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..125d35449efe7bfd4e71cb5fed8b9c9a3fec76dd GIT binary patch literal 1195 zcmY*Z-HY5d5SL`x>-GB5OG;ZpLJ_4QS-AMfLkWaZO1@}IxEz;xKI*mpD4382XiUE&A z$b0aPLHZ&PgX`!Z;RzpnPe&=oFVHak4KksfA$IZe#+IrsB+NH=Mf1tM`(G$^{HTyp zXjr?U+qxDypO^M9H%;k{N*Ghjgrjv)3D=tx(_>L{cdZh(;Ds%6UTQJ5N-tb!Mb&T@ zX<=JkPoey`BZ65B@(9HI2x>(*Zn25JLf_%#mPMzSlT~m=FtUUPEA$iM^ylC;ennUK zG+5Cy{KGpKt?&_D1+X`KLtce1fj){TdJS~d@jYa=<`|>y*#~)v>P?DlxOli;gB%f$ zR;bId4?AC=IkLT@__PlZ!!rU@^_FiQwx#4u)q;Il8w^Vf!^U{bd zwx-Rn9mt;fNIT2xkA<;iU3BNh-ZK4w-7?E}J=6}+I>CX`Y&873~0YBm$vgU@^YS|ImB5_WC`x<{*Dc(x)83xOI1S&=`)RmHyB!mP|)deBs9A{SOKAEU`UjMP{n&qL>06)r+_%=XJJQ#~wm| z7~%D{1j6Ug)dU8H7*0{Io^cO@Oj43LJqMdLCv`Kg=VgA+x3ZfyvY;1W#L-EUho`u= z#5~?&KKEGz<^Xz=JG`}qMj;E?(ob%0nc=6X)A|#{LdQZ0Qc#NjuI zQb|6pR(5&u>79FKX){h!E97}8CNPE^UBTRj8~08JUrw%tFC2S z$1K)y#1hGeTF6=DX`U6V@+H@$%!jT4aoHL$8!k4XtKVT*5Qa;v{IAiEc)qLA31(#B zoDz&QVa@{mf|&cO^Bf<$3w+`%+*ADXCm79}3w+=%960U0AjjSw%0F_E_GVic9Rq9g zx51Ln`~_P0r@-nS+6T^${U7{2m|f(e=XTYwRIg9*6trIL<-r}KcBdF4^X)?iA1mOa zF&ouu)a!92&JznWi&)Qg`WN zuqLO8;x}nczoI+fy=yJ)%-0@rrIS21mw~>_*nPUL=I>aj1`ub7jt42HBO&R0mEI_3 zfan0S+tngVI~^yb-mOPztPcA;Kk9EMgT6{Mzg0k`K;furA>p{uy8kO z`&Xd5#jJX(j^oXZ7PwUpU}%K|w=f|gb}w2E!7e87h39S8{t;L?3;k<<1<#02&fY(F zpS9X8>|=7?cH|lu=(MYbAr!cls~}gto|y#9pHAOBdBp9yM=uux>Fe!09#o` zrK#)c1FLowRkzehs=BXIQs<~S=6btMT@YCcqez-(pmLO!7L29ywc$Op8$8GaD^va% i21$JkLx2JZdWEz|NC*T?E(js#@b@oq$(ir9|M?HqxsXBt literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e69b11ab7f652cea962679327a82c6c19efbea48 GIT binary patch literal 2735 zcma)8UvC^W5VyU5Z|`zRlax}5U@0x_0lBCW5>h}2L0ev;A`wuPBWSf*`|h^cTc2!S zj$HSi$|HymfRHYad<#AT&-=<#pLv1O0%PwcO)HS_$zIztV|!+PGjn`tDL~NvUb>$A z-bCnEy*S&JVeuh!`3npbQJkS(^~F5`Ym!+byJwG_o`dzimANCY=b5>k`J+a!VdhR2 zjGDdXsMTv>#L!}iwU2RcnYzqoD;E*<*b4R8O5ddo8hm5-&e3K~X#r&k`m>ylmg=`? zn=S+Qs^M4xu5-{=Yst0xyAFFkt0da=JbeKq)+pXVoeK{^D|DwrN_#t%s`Nh{tCZ() z*1=_qk69kcahm5$z&aeo2P~3IO~#7zOh)?@M55`Cu`G(kK*A}@Nt|Vooa~PUPneYD zTAzzitfGXEMsZFJU)g$Q)jnDAi5gE-=?b_)fE(WSo;2+SB zdS#?L?(Eua^Z2lSV3_8WHejI;W?{w$gESv>XKNo<>V;s2$%y4jZiOWdX6q;Wm1$-Qwp-i*>*F#(X-1iXk?!$)rJPtuHT zR?x`UAWn|DHYb6^lmPBPVkTjh%|_)ZJk#K*SZ{sTrgcsf<;wUu63PC0CBNs>A*^O;uvYNpAwV;OF{nx}iOazM+qhZd&ews1a4emU|pzf^q zKLtlz0L+GQ9s(ZC8QtJEoMcQKUQdRcO8_=dgjAia@cujy`hrfQbR`#Xcj;EXG`1qYRc%hJ}$m-aoL=78K6fJt1?gLd{AFj^xyFxabxb$!?+Kz39iCo=Y_ z^NcYkFvyo+@EbM`03rdlaf=Y*6Y`{O2Y8i;%leQdldPigQDhzxNInq>GvH|tGQJ;Y z5jXixmP^$oCrd|rhb9_OCr#_9W5ek%k^U9_!lj-DBglEw*Wklw7u`j) zVIvzoumGlw9W+JCUoSAh|n*Q}u5bx;~@R zoPGO|j#C4INv@+BKvf5KI57y&u)SRQ;c|_~I<8IsWdm~L_2J@W}d1+S>2$6Vb%<< z8y7=z>C7(Pd@AxZnzq8La&~Eaq=t~RPng3qr32GSz9`niu=UVvK|Vy)gGIC$K0%^qI)jRb-7ltQrkC-JU46z{+xopsTM zPw8>lH4iYly6Om?JP^9p3ro{qf|}Ajtts6kOS`pCq%mfB#Yp+8Dol z1MmCseTmcG#Evd+bpR>mE?3vF{+%govxU|BrN~^5vP-kK_G+K zK8L|aK3;*m)PgY}#BwqD8w~dsv4SUL{ppH4ac%OLIOI>)4IYt8V8EKMqPRdIE_vj7 H?LYnj@)Gj^ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..e2b7b44 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""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.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: Pep517HookCaller, details: str +) -> 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 metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..4c3f48b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""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.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: Pep517HookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + 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/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..e60988d --- /dev/null +++ b/env/Lib/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.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +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: 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: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> 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: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/wheel.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..b0d2fc9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +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: str, + backend: Pep517HookCaller, + metadata_directory: str, + tempd: str, +) -> 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} (pyproject.toml)" + ) + 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/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..cf7b01a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import HookMissing, Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: Pep517HookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 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 editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..c5f0492 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +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 call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> 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}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> 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: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> 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, + command_desc="python setup.py bdist_wheel", + 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/env/Lib/site-packages/pip/_internal/operations/check.py b/env/Lib/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..fb3ac8b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,149 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, 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 + +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: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> 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[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + 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: 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: List[InstallRequirement], package_set: 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_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: 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/env/Lib/site-packages/pip/_internal/operations/freeze.py b/env/Lib/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..4565540 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,254 @@ +import collections +import logging +import os +from typing import Container, Dict, Iterable, Iterator, List, NamedTuple, Optional, Set + +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: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Iterator[str]: + installations: 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[str] = set() + # 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: Dict[str, List[str]] = collections.defaultdict(list) + 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, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_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, + 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, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + 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=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: 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": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/env/Lib/site-packages/pip/_internal/operations/install/__init__.py b/env/Lib/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..516fa63c31e4db3b23c9404eaf2d2091abbb396a GIT binary patch literal 236 zcmYjLy$ZrG7)-lZ3Vnx+3fc}1f`~YXlejpD5(u#gB{b#>NmTTWe5J0wg^Q;CfCt|l z#|L)@S(c)JXVxu;LGP{kM-Zhp0C_HuEt#gRRLH6r4tbg<`HILZ8S|?unCL41OuZ oNK;U$y|9|80*tWCOVFQ&?-o{$hK-$g5+;4ft{XQGHoDN?4?8&Ni4ljy!;x+*8- zBBJb&aZ%o%gulX7(cQ6Yyq!#G6MRwHA12%cyX@PF6)77#X7oXoar$v_m`PFOtkAF) zW(5U}a4`q#TAmy*(wwh_;EF6GkVMWE>C z%f2(-zQ~#BSBeo3NmQnp@ruMQHt|TgAZ4QWO^_)8_h!^|W;S2KibHdyD#|21V3a6P z$&?YANtS9M7si)R4q2oPDQp>FbU`{GAA+bK0W^9H?XO!;u!A(N{o1Kf-L7%%)*i(V z+uw)UeSjX_c2FHW8iJ2kht#b*)O+YU=qp599`euw(2LQVNR5vi2ifl)$m%X_?f%aO z|Myq@t2Qtl>G+tIfw6;CSw-5k~yG_i~=r0D61M4)j zFtV^_VI9DDmVQ4Y`6?LCzWM0w>5-5J(|dx8!?(6R;fXq!0!gMj*=%ZgwY99LnwD9) zO|n8W32$LrluR}cN^LJ`yM6ZF2yfmW6v~XwD1EkP(^9tqdP9t{v-h{ag~P7&fwpn zxn$Fm6}W1Bf_H$u6=!!Gu+$v@4+VI`>EWJZzYt>=%68&o{EzSA=e~#k#x498_VF{^ U#!qp8|HK{q2M+P?xI6gmU#||V5&!@I literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80bd668e8e3c988369969694f44f7c504a9614cf GIT binary patch literal 3307 zcmb7GTW=f372X*xm%Gd5MR&=Pl|@h&B^pspo5pQoq(*AH2;e$J=O8ZO6@It~00GPCTD1bQW~mjTe)p&XR6d ze(f>MKCk=voHffT%CuV1Z%uhKMsC|iZak^q@ z`d_A3$qIa{v_aND$`xp@!+(Rirue$KKk<@_~2YSXs=F{fgXxAPg($8Gmd%F_2*NLIW1VcMqw%QDd_N%L;Rg|y$# zm7Fk^_6~h8plO!^YxCVf6qDQO!-!>RLQ~Pga_+qg``%_OV{&nFqUpq)Fp39EEw^^M z`!rE4m!=%X0unLkZ6x6#4fGjBmc=}nsuF~(&tZO@4bqgd;3yLN0na1dNkF}@uY}d^ z(YSj$ zIt5wCc+iF!@6VqkDr z7zb#K3)q8u1;`Mk&y2!2QDKViwM>aK&gOw%mLneSafYGYLVD2kA zTrj2_IB`e?wok)^N*heXRh~(!m$4)itO8834D3;^{05A$nC8+7b7fCiVKi28B25k( zGll5VJjkL{n&6OBmbGnL9;>U}l#^LgkyXv8l2ke~<)sHk1V8jL1r4$?O>*g^^k|yU zwo*o)wV@Q8x=Nn__1Ll!y`;#BlKWGL`ncBO;IlF0u@Hl zEO22Kbp>&S17Kr5t&Zk|MaqTyd*crnU~j&tKC2_6m@noEk62IfWw1$YfSR{2LXF<5 zQZxZFJ{0!YA*!ucT>>e42S6*GHx1z)?;~RbwRvcXD!`oc6cr1PF@dp97LL%7A-tk_ zf}Yh!i^bx&c50040I^FKrRh_Aa`6=ZHT(49EWqg!XkOEB=>nKl@2UEsiVRdA^AJ*e zI6qCcttm!8uC-kDLohRY9f&GGx+t9o?<5i4P*d(c4G9DS1U&nZTJU2vT2He{d~~z4 z7xmejFgU#W0Te<705f!$ZtFv``cRBZ-Gl%+BE!`W^oG9L(7(nt7WJ}0O76g!8&d>@ zk|>}$^ZTu)tW1uQ)s|^-)^%5!?^BwBoGar%aX!-5d0!bNf-3>d0rR zgtG4{UXy`l(&c#^30;kKsA{s$% zLQC2Liodqq&s5i&8bn_mz)Sk#AQ5HTYMF*04H24Xh^S0gsBQRtAl96RF=`_GKVIug zTnA)0160r)_KS@(5AXux<`?FbdfCJFr}%~I)X~Nn{&eGy-uF$!eg%SCugFRekgOX7 zvZBlfp45hxbpkdW2=GK(QC%3NC63{$(`TyGGEokW}+X!HvL_6wL{>xyUyHuvE2s4YDy1OMS@`vzz_i0M1({=yG{ zn1)?ah`xwC+|fH;YTV?zWw(!@ug8zwa f{15Elzhf7Fg{$~W?BT!R8vZM;gN3B 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 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, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/env/Lib/site-packages/pip/_internal/operations/install/legacy.py b/env/Lib/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 0000000..5b7ef90 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,120 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +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, LegacyInstallFailure +from pip._internal.models.scheme import Scheme +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__) + + +def write_installed_files_from_setuptools_record( + record_lines: List[str], + root: Optional[str], + req_description: str, +) -> None: + def prepend_root(path: 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: List[str], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + use_user_site: bool, + pycompile: bool, + scheme: Scheme, + setup_py_path: str, + isolated: bool, + req_name: str, + build_env: BuildEnvironment, + unpacked_source_directory: str, + req_description: str, +) -> 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 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 as e: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure(package_details=req_name) from e + + # 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/env/Lib/site-packages/pip/_internal/operations/install/wheel.py b/env/Lib/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..e191b13 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,738 @@ +"""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._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + 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: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> 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: 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: 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: 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: 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: Dict[str, Set[str]] = collections.defaultdict(set) + 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: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(parent_dir) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + 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: 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( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath) -> str: + return record_path + + +def _fs_to_record_path(path: str, relative_to: Optional[str] = None) -> 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 get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: 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 = cast("RecordPath", 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: 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: RecordPath, dest_path: str, zip_file: 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) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> 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: "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) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: 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: 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: str, options: Dict[str, Any] = None) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> 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: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> 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 is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: 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: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: 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: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: 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: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + 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, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: 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( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "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: Iterator[File] = 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() -> 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: 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(): + success = compileall.compile_file(path, 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: str, **kwargs: 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: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Iterator[None]: + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(req_description, e.args[0]) + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> 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/env/Lib/site-packages/pip/_internal/operations/prepare.py b/env/Lib/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..a726f03 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,642 @@ +"""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 + +from pip._vendor.packaging.utils import canonicalize_name + +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.metadata import BaseDistribution +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.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: InstallRequirement, + req_tracker: RequirementTracker, + finder: PackageFinder, + build_isolation: bool, +) -> BaseDistribution: + """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_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> 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), verbosity=verbosity) + + +class File: + def __init__(self, path: str, content_type: 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: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> 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: str, dest: 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: str, target: 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: str, names: List[str]) -> List[str]: + skipped: 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: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> 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: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> 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, verbosity=verbosity) + 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. + # + # TODO when use-deprecated=out-of-tree-build is removed + if link.is_existing_dir(): + 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: Link, download_dir: str, hashes: 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: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + req_tracker: RequirementTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + in_tree_build: bool, + ) -> 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 + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: 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: InstallRequirement, parallel_builds: 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` + # TODO: this check is now probably dead code + 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: 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: Link, + ) -> Optional[BaseDistribution]: + """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: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> 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: 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: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """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 + 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: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> 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 + 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: 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: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + 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.verbosity, + 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 = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # 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: 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: InstallRequirement, + ) -> BaseDistribution: + """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: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """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_metadata_distribution() diff --git a/env/Lib/site-packages/pip/_internal/pyproject.py b/env/Lib/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..e183eaf --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,168 @@ +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, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: 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: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> 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 not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.loads(f.read()) + 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. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: 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/env/Lib/site-packages/pip/_internal/req/__init__.py b/env/Lib/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..70dea27 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bd4df4eaba05eae3f9f7816740a0bb10e3131c3 GIT binary patch literal 2572 zcmZ`4+iu)MbY|@JdcD_dlQf~FHJ6I6L{oS|sg65bGosEQ@g z?6Xy}O8O>m^449`Tb^;WfpZBsJHjg01yL#2?qoePSr^4wz65g_W&_SFg0w|`mal-c z6;5xF-s(fJnymLK+Wt@p8K_KZ^JbJQZGSveQI-a=wr`1@kw`g)f0Ok|Ke>IZ{7Na}~t#r~il&k^J-DrHw zA4Iz%MWJ~J^rwai*xNAkmjMWZ!SWcV!r+V>;4}ycm}zn*j6UNQuL4%#1{iJ6)C$nV zPene8l{V8L5!#YMjbyqWGLSkQxX1Y}%pA2WXhD3)01!skA5hr>T90Wn7jeHt9uV0D z+T#zdU)$Kr@cICY|$nR{3ba&%sw7HQ-N?aKR;hkV0@{M6Myy{0OgaN#M z6>Prh0~#scUmNagdx|Wh5~z(s56(^8J7>q*lrO}$vwu|eRPSj zez5XiS(nizZ#fW4I6_qfTChj45ja{0#+*4`ai|Sd_4=#plILMj_)TK zAH}$D`2Nl)h$nxHTuHfz7ox>;x1wVuUM-sduzqt3fK9rzYm_wI0PoGxP`2UkQ{F)D zVftWB<*xwvh7{yF`LcUR3%X76_DAR+dXL;^NA%m0R?t5CoKUi3lu>8v2bZFBH;5zd zs_e?9xH8FD!QHvLueoE-F?kMd(FXjQGo*CivR_IG)YG-|EUJd7#=f?VMcSg~6Nxn4 zo|Z;d)@QC;gE-p^VtQ zx;ESovt$^>BE%w`4$PJY%rbSBA(0e0rivBhh@Q~HT2YgW$~ZPTcHY`)Vsn2X2(QYD>6fGjn6;u4_)odRb-erf@@OkdQY)A4=cd3U=`b&-T(d z3pmnK?v7Gy6M&$cX~*c5LJppr+=$1*3`B(r7^h6v+)McZd)Yl$c}FRcK+*u)D4k>x z{{0L(aw8b2%n!4)AIW6BXGs?#E}uj2Jc1VxyolfufL>SECpSU=%ys=^$%PdBdK9X0 zmRj&K3Ya=c6zb0=%Pb2_|oXbF>B7n?y=m!Eh*2UUq_BtE@bE0ad?x$4$uX4(qw4+FK83-z!1mRLIIv-}ePt&Yh|%4h@1*{s;CLoL|bP~PWH z+1IAQ%D)Ua{`s6o4aZ?NQvP%-n|2uc**P^Yc78N3mePBx@+FY1tLSrxuC~#Uv6FX zeaK;G;kAKKH_On=vv^$(0k&!R41%(QnVVS_mzvM{YSz@X{rdPpcoW~O`~v_svFUl* zVDO>0m{V;T%(f^yZ87J`cxN&8#4^}lmdXCKD(nx-Vvkvs{myLmh}GC{mecz6Z`pj5 A)&Kwi literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af77efe96e3c30c27fd38028e45d015d1172f3ae GIT binary patch literal 12137 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 NUx{N}$~99D{ugeSNrnIb literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bc593d6485e6a5b21ee54a269e69317df0eddb6 GIT binary patch literal 13467 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 HZ}VLt>ZrArOE_0$36hwIl(Ml*XWjv(vr1vzUvo zdjRfmHX;eS?8ITDD5*+SWI4NWB@V0PSmjh)N&ZOe$W|#8C*>S=Qtedvj~p&l;>5OY ziX`&;eXo0t#gNi&_3QUuzx#dfyWcd&$Fni~-5ft&$$c>v`|nH){#i&oj>nrbV=*V@ z7`0eYzm1|HX|rg`J6?>-+bUY}P81XJP8O4Ro3&IuT};WA$7yS068q z*Ym}EeWEyFu-$lVvOZOulDJiyuJ0=Dl6ayvQ=cu)N<3MctM4xEmUybRr@ptiSK?{J z_Z9a`JX1SRKUh2{@oeo-{c!Pc-7eaa9;@9}KT0Ish`W?kPBtBldvwp02 ztbV+Byk004BrjjPtA2O!Zi!FSPSod%^Aew|E!6KR-V^5Ei~Rc}K2^KF{y_0TiBH!a zsy|$OMB=+@kJdj`{FKCJYA5TD6(6ggDxQ+`Z0&UYO!17w=W3s>KVE!X;=5~4)SoOq zSwCAmE9pJ8bM^DZ^Ag`%TdY4-e5(F*@#*@7;)VJ%#b@fDDSk%2?W;Xo|7`KI65n52 zsy|nJPT~h@&(~ilzEHndyeR2|wM+HO#mf>uRC}@hQt>4t<{DcsyPw-Oil2Wf<{WnH zcVdox!z>n^+uWja#QnJy%Q@=Y{*G0=;ux1=g*(1Oh*>J6gZLATjUaorS*y7fzuIgB z*12lM57HNWSCyA*ZeTrI^^kt9#joXBkiO);)^-~eH%PqLKvuyBlAkTBtFA(9>>@r^ zm0NckK9adhEw@r#sk-Wt%k)&G+-Nqcm2$1xaZ8PI-9={VC0BX6p+u{!JmyV4@3tPg z?~$jQ&8uh27@8`W!Q_+eYRx&{xK>ro20I95mYUDCcIKkw)P;uUqgt6mKCe_$1vAgO ztL4f@_+hbJt+f?9%C5S8$*Zhk#DzGzD0}WX%vV*H+p-$F`Q33>%I%t8atHd}Cm%4? zir-WlC1;=#n#H0uuHrql>Nc>BzFVrhe%UGeWn`jinCUuIpNl;Bb+W1lUy44WMk>rh zbUgZeea&@inCz}vv+R^w8!gpb$6!i+vtA2!)yr4ify`FfUqj_d?3ix-d1UB4$vSQe zv%nY~w6@!kDV5r)R$6JQ-XMaR!4IlgFV*x6lTVkuHPs+)K!MKkkIxStTHXIMt_po}kv07?39JB%e^4sMa zb`#&?*D79xhhgyVFcOdB@fPB-m>VP71j;mu@r;>?%YXlEA_n|9L3%OIY?JBxP~?=;?H_?AO_%uPwz@qu_A@tm8|-@>*gP=3-KXK7~& z@o7A}ocPKiXU3U*CsE8hyWG@@>C8F1anvWm)E;LqQj=k7pR*sSDR&xai!Gu20q5X5 z)(xY$%bnSp-Hzc)8o7s@!;(8EWp^XTc5aiLJ(9yRN1UUQv)8FQx1+s%;Y`?q<=o-i ziBawEl|JSim(mBEb>}XQ-93m>cRMFg>d?S==A8wM@vw6b*707HyHCodR?^P>&I9;j zJ6D|tore&+4Y7xvM-V&WJQ}Ws<$TIHiJYUoejjsANx!#C4p->3b4GIR=;eIcd0cYt z?BzV+JSjQHdO2sEbCPo$y`Fa#(MJKXr<|t|y9==k&NGPJE#*(3m(MuQO8I%rZ2{@e zI!pL|4@y4gJdfDD0y{P5g~54ZKhw@d=MvWBK9s!dyoi$b1IB93OPJxyvKE&60Cq0v ze9rki%01{5(ZbK+xq^osQv$nrkb!=3Xl|d_;QG$SyY=yIk{{cBR?y%jn3iHCL+@8*NH!Vb^*@uI-hp z&S3ooDYUrsUMz^C*&tiN1Ux}mK{`U!fkmtsr0PNsfdShdu&|J_AYJvEoRkwxgk6=I zLQ}mUzglZ9mutOrZVfoKmqJfiPlX}-K~gZH7mTA}Rr1=cR;`K_=UT3+S3#g6dLqQZ z3zEw9+p1BS7(i}}C-9sletXA=#k#<5?U*<2Bjy`7OmF-d#BLaG8(pItE16vrVZ1wr z(CWq!Cc1fqU=a}l&ml~AW9td^XxH)z&%{vATFX^#DGoyAix+ z2Ij)OK|;VoXYlT9 zSwiF0MoCUnsZs`;7);2Fq)TZ}eVVPru`)qYAA9vEb8;RKl?T?>DJ^dVlipghU2`yj za6N;G61kMpGI?5=$W-_Rr@B&cUB`9QV;tov2B+C%8psn2GCn-cyps&3`5~iQ!L|m| z5ueF6HE$YB_nE^GA$q}V7$YC;foCjXZk4M+UL&g#IXAcAs86x^xdw*gmFi7}C6plu z4lYatmgm-12DVRjj>{@*Ahq={hi9UH~qnb!%)N_88Zz5>*IAfb;1L$i#vo*FI+XRwU&!M)}HNP5j z5?_n6$1WwkwrLMNrtH&Dhqf*^@q zOd4~B`DPM3W|>*UlSU4^oi#0E61&^kck48ObEKJ}4I@VF(YifIU}Lyx#=7Z)l958J zTifJX%%#r3Q*UhA&1DKvC$SuML`+Y=ahuvaQ%I;4G!SG;r3#R!S1J)iDZ-X;s_{k8 z)_aD`bp$Zu++dQwi-KMfflTD)$AF$LJ2aCB^!WCOB|!%;{=XXYjb9Yd`-RvFz|Jw> zNdp`~AxQr=K@HbIz1QRGmSb%ty5_dwB;Ez(C?q=%J<+h+jd|boz?0Z(ZVfyHnIRj3 ztxqlpc;9zVNS5O+w^xBBR~Lo`MGC;la5Fs{!CM&AD`T5rD6q^JSl8Ga+csZ{8L`(O zK5>~lsW&!dL6-`KENH=0=TI}S%D%5C`0-8Y+x7G+3Xo(@QD%Oy+n}o znhI+r!&Ws6LDgmC>&>e=|PH$)o>_3A?#_(lC*sGV|ZX;%RSz!o)`Mv~An;&<~5KkIgRu`D@OLNd;;V7;f zTZ!%1wb;v;kOR)girt7CJ5rZo_r<*Xt{Vp6$%uU(&&va4Ib(c(V(@#!T6OL_OY%mj zuCCZZE$xuR*<_-zub$5CvCu(2B&s1xT}Wzj_9~{Rt}vKK5KMXPWoTY1&_$HAk|Nk8 ze7S&1X~ivr0f&0T)HpDy%j{VFV1G1-0hLXJe*PHUc>53}u`5~Zi-~{hWxRgeHeJkU+#oHZYAy1UBjoBtpOmGG3&~8woydq3ECD5vDM0b`FdHon8w= z-4lL@)TH~{5n=aWa|MYx##OU9{JEm*bsxE{bSF@ed-OvM<=>x-FU^ zhr(dFVY{zGv1DJ<%Eg7O$Zr%v7lGsOt=_5uyHN~{Sm4vA?_0Rvu6kiJj}3i16Mkzn zeJu*Isqb*%&TtCvo2O5|A3uHiH0T5uBZx!41T+GMJg~rKt03J3f-OT?7{Nlew;&;= z>(j&x_)a~S|Bbc;-6fNUjFHRQD;i8{;Sl5q3R+_I3P%?GF;2Y6#r94h=o+5ofNA+f zjWi53;~PRnC_|;YLP2ie7&{ggJOO+i#BSL+64zU>KO5Wv4d@zGobW;Hug;@9k&&>- zX$a}HHsyS7{s3GNT`CX3`*=LUr1_>5n>4aFI}eNiET{x3Yo$=;9)a;MM;*q?jg4^i z)i1FRS#d#!f}zKUTKXP4CyKTVE1m@dVjAh2mesL;+7O0Ti4el2=M=w7!wm`dI$#-# zYINS)0mT@geYMfN-k4u)HbIp|w`zmuw3#YXjh`*RY`W{CvpY z&xcLan~wWf)ZS2AkSKh+xnh@l2js7(d2KK5Cw3FznG^n{C zS`mbhO?QrtShStxF9&&FwLKpq7llyBnuG95*ySUL;z>k^D7Fk?eho$D*lY-|vl;Kk z)xj=!9)u>ip7?rl6>P{>ih0`x$WXcqGQp>U^}R~-Pdhsg@Ewp=Ls?8TD|G{cFX1HsX3Q6 zq(ZNum0Ee#Td)B=8_;-BVBNSCc8*6lwhC<&WH=aokh737&-+I zRX>EKK5$n31-tG%B+KZnmG8g*L4k10vNtXmZ<^Qjn#d4O0MA#U-P2;U-Do?jE@svQ z4hOcsURI7R2c}$GZDKwzy8|sAEa~H85wder&O)$Bj8YgV`n%n5Fi|ot5hMfc? zfUFEdR^^@3wC=d$|d8^RTOamYwKICs@LV9&$Y;n%B5`q-#NW5cktt zneEtm_N%e4#WyW~46J#Mth)EKKfaZRiow`6fkVf(CYZ|@N!{Wb`OFebMgEOr6*s!@a#D?&P<9qfz@tTogl&R z!63fozOJ5SHgxM^woJkVG^i{U@%M8B8x@i>92W}F` z55~m-#U2c-+~rbPt?q!QVAgGT5D&t_kroB63Ni0~G@BE)19}g`v>+eeOk3GBbz3(q>}*M<@e-XKyFlWHNFiNh>$31fmG)%7^4TxEp~YY zJOFeNVkxKK7AZCtmK2#Xb%Vh>4E{QTz*>T2T1X23V9!EpyLyHNL?JbfLk4S1C=cj1 zMEfk;8p>y8v$b=NCQHDq!c#+`N_FYyxIG8Zu2w0|#FJ1`nG~5#aEONap?MRG>L`Y1 zXG^#2LGPTOL-U$Zbf7|^$Sf&yJ&sj_P^6|P+WOGx03$-bBP$!eiJM)lR7X#|g6`$2#o_sBW}+x`6g8uqpYY)PlWOecj%G0^UCAuCAU& zy%kkn6+Q9-PKO+`-{7hXX61oXzlI=4flAW|FDm~?1{#mLlEbre>G!Zoso5yitDdmt zs4fK?5f08%A81-Q2l5!!`}uU|?h$9;<606+T1i{eAg0~IaZG26Rsy|k9yZ6N9sK#)}9osPfy}YTAkp|l`^d1XK%ptf!s0m zxSyjEcYT~{T)gwZ!m!N0jq?Xdj8Cr?dY(`hqcqw|N$>nFG3fZdz6dN!S-7fgG}zlg zM-|QDMurNA6^h2u6|ixBpVt)55tdqS@OXk*LBlv0cxo#PQ4RVS^=6 zIA>KbIkkEt719PZwTszlRlcr)dzD3LA&K~~-{SXip*jR??o2Qpc2yEF z#IM3RXy>Vz5K~R5x)S=?e36HN0(CZ_)#JoOBnionERYSV7Pa(BLSfy+arwx)nZB7# z!5Cs><5{zFWW<5l(a8|1LWg~o5iL+W1U;P}kUbEOxwMEwPR5d!Z*4*wB{r(xL6LvJ zDG>Ql#{~v+ltm_L%b_GQX(`%Va1>kP4wx1hl~4;P^GNbF%Rv0E z>4c1S78<=C;{p4=#%-g99_(#5xY;oA^$n8R=Jxgegl4ejof9Kg_+u*%&5)!yn&Eek zBOz-Itt!z8kOKr+5MdZJwq(YR2_{Tie&S2-PcMNB7F#LKz1Hq`(m1v47VNq2CG@O! zti(6bM}(erStuoU!r-_xf)8Q?{Y}jFyWGARljwM)hGeM1$IejwE_(;j`aQfm89mg> z%BuR-z^HU~iP^*ad63t=;ERmwpJQB#n)c3ZBi4Vo?9h-EPx;Qj!#FWEzei3CDVuC52=a66Gf_ z=4YXV5RBX#-U8<&dW!)$`Uzp?;0XZt7&`orn80_Z+JJI{VmZ`LMC*Oi4`_|}$`EZo zfBtzJzMwrpI#jo_C0JC#)&?AX#8+t9gCL!Rq|M zS(<#XDbxqrGd$M^>l~D6M6%4mh+b}{xmklQnmIGps3xduz_WJPFyCpa8lO1ANc&e?#e{LNb93XXi z!BKy1cuQz?avQu|0|a1eiZQ&W`F6-YB|87=yl5;m`~wryTcR&70?^9W;9F0h_JO1G zBHgZgsF9LGcm_@Ybb$T|l#w}>ut=;Q`Z~$CNJ#9XP2FOMVfzFjY%hXW8v^P)y+->L zI|)&kFM(8x5%&+U4M7S>9;1d6yUrAN5=t&UR{t4g3cECE7kQR^;(#?+;PVOQy~$ud z18Mvf#%Q_?_JoRzzNddl4_?FWH(5~n`c20EDXScWlZmTvIYIlniTn$P(@;K$%vc=T z4h$YlhHKZmRq#DR_ZgJTCa2*7MW>oRl$($mC@o|^gm2VPOsCR6NoHVnHgo1koyN|- zh9I7}K91)s9ywlQN*wx_0zPTGA#(!XQZOjOoWr{&+UtT9q=4ke5(MdNEsc|ti>^<@U3{d*7NvX#_~?O1FTAnzFaWL@xXqePcz z_(T1%Jef9Gn}`nfu>tiy;u;2>5A0Zi8P?<140SNl`at^{$GOycpd|FR)U!cX#IoDa z1clBI>R+If&asP;Q5ZU$6JnMLaW!#q2vqpgdF+yw7l6N^+98?gf9zRd#8N~u7;+ZW z{-8M2Z*pq->YumJx2S*AKVj@2F*uGO0$+}8=ZgLj^6uh_5+7$FyF!8jeDXj2A-wlO z7l`x+oqI>%<4-&_K^Cka#!BbNAtgH*lAfyPb|koz!Y5A>F=9#0E__!6y=pZKW!$*% zz=IgE9Ew})fSv@vL<4wGSO`&5RH)(x!)wzCw5iGp-tY7T6)_E52{EE5+(OQHV4ZvX zK-Fs;^R=PT-Wcj9G+XuOdXg4C8+Occ4bBZMGQ{C3ge){zT8(Bf?mn`F#md%t!y0UT zo~p>S$SXyp9rzyDT=Nr=gy~U{;q_ZNsh!YIhN_}oKfQ_2A>fy>=AueRTwv(ekr63M z{+J(oC3e6|Pl*m#jgTdVa*7Z{MR9f_f}Y%mkibGs+>WP5zvr3h6} z)g>w}sJ)0bV2=Z-n}eU!oH0_xwWFaRN0S^BZ;h3zs*BPOb9O7-`{<7_&=X!>LV~-b zkv0sMgX&8F+)qnw9d)Uel#}JCT7BGudrb?`LLVDNs z1ThS$a4T)av&{3U?f06?$0iTpi~$@38KT~zgy3RR2r~8NHCDl)2Af`8*frjk`YHkGvT6@9dKcXlNKufEnzlB2^_vabgw#)e3QGL1zAAcJ<*rm;M{D!F z+4^g3b{^6v%&OTC!3-p+Y=@Wk?18(OBCgLE(4A`w#uygd%)oKggTB{_OpqCJcurdQ$Yu8y=>KtBd;`SlDB!C=Q zc5rqlNjtNBwY2(YfGn+vmUBkh2`@5Uf4YrP?OQGSV%+e-2D;!}ms#h3GWcIoTt4sW zEhCha)I5M7?L1JKUYS)MCF*l&>$m89jYCA|`j0Ve_bO`3Y(|q6Am1RRnoS>(AtF1Z zqB@0c99Xp+6HnadT{a-McPv<(wK5ZEPgI$ZYr63pv@BB=O74zz6T4~IN-b$?ZW0_Q zAV@ul28YZyn2g};OL%)r2*7f}1j**tkXzAjN(uC%qj1&8L zm^C+9GokA_G;$-20VI|>;_Yj9_KV0&Y7B>AcvFcMK@ZDTZ=>h;jeFoloRzO0zYYko zxH{5OKaWCKG#6K7E4b0B_x}GObLVDF!28@SH%gsqORNfSbIYg;5?_Ryc_{a1;^HHJ zdIWP+B2q4^%3AfBzJA^JmfO*;`g61isB$@mp2RICa2Z^vaMBv|KVzZ)%iwzqL`Hgm zF$oqC3#M-A`Ynz;jc;>CK22+O=k}jv#6w#=h3ahLEFSM)17r5laj51T(>61D!fy!= zO=Rp?bW7h9pNK8kONovFcQ6!yFvCMktwYC@*fRV~7q&O}%qIo@5>5&v{2?a|&yB+Qp)CZS%gWn4Px%+;Yne2lSKZF z4C;)d&bmLjHRa&W90-ExH8=}@dVLq}&SmhPaZG38U28MdO?~M__KA_tN;rr4?cTEI2U{6)Rp*VW;44v*3BZdZEb@|yYbC&e|l?QcifrcvDnNz z)7^Y&e>b&tpo<&D9M@}K>5if1?#&6QInk>*DZM6MTpw7YWM0Zl^{Kjj)1P5&+ za^`NN;hy~;2i>!=9=N&OUpvmSFx%O@gxj7#r5aAPG5|!1-flfka{vLqNKGx7Qm-tO zY{1Ei%*+586!Z)vCH{`Dk`a!|zS?J3mo9fQZ*0!LvAKXVriG_R$vu-M%C!*j5?Qd1 zR|~69he3mV{Cc6<;(NIOYf!s|Sh=ta2XGrgtWgb&>w&Qx7-jVXfa#+8A;QksIXZ=C zqM?4ooLx_%GBesO5)zQmJ3RGceEH5z{6R^ag{q`^y;yBM{2(wy|IG2E!ddCh3^8qW z(p)`<6y>nyq*w4=pGlF+b{yt^$gg)YpjD>9nXP>xy{+zyuSAi*4J;%nr$;Pbf<=R#CeMVX90*D%I zpmg|z*NhhTuPfM5VUrCK5>tPQ((v+GW+QaG3G!NgiclFiw*j2iPm$nJ`|Y)$dUS(~ zgGTjb!7N5z0x!~P`$1d?76M%y5lUVjs4Qlrqp2`67(;};GCN435u}53R4~Xf7Jc7| zx>MmG{{|7?HB2L$;8iutoS`cZd`F;z!DD@xPVh3wq&Swb1T4Auw?53HJTJJhPUQBJ z{2-Z}<8?PF$J`{!@#55QPTnwoZ2sWDM>De{FHeO-3oO!Ycof1bUXlC+GvYYmRaCX* zmm(1&$h08I+3t#t|Vc5_J5xfsR8P6p$(}4nx@k7qoYin;A$lbXuG4n!Hd8 z2?t17-H*`n?)MWSZPNxNjzh?$lN!q~orV++pG3+_utbFtms-P@tap;qmJ{0)X-Sxol$>l%wgvzWf}epy{@7Vd#vk%iFQ*F}aYP>5i#yq2+x-n!fGtchW%G zm=TB;R>w&>*>^)#5Z8)NVQdLM)?tB9S85;jNa2@wLggcO96B7n^rzoqOvw4S850fV z6~=g!FM|j86TE{7pjceD(m=vnfCtzje$*!xWN|*AA(o%|$Pg3Dy@W!3;A*RMF9VT& zrAujmZEN)?`xPsecBJTyKpjFKi`8$~K%c9)u_w;SJqv_3GfWO=HjEMO@M$PqF z(}6xLbR#L#%IDT#sl#nu;o)J_Akp!K!oYL6b2l(E_)U?-bYZQzfq|v1MQ~mcv+?5u z*WC9kUcr|;%VQyPM^#ynT7^3|+}wkN)G8cQvz)A~v@G(&O#Tk1y*m^XN|DNCNO9a> ziXv-VW^k0jMFv!4X&OKtSka)T8M+4ei&)F_4O&{Cx4X8LdMAeGYU5C zx5!x3Cf!l8f0>`8av}YuZWGoaE6+N3Fs7TP#TwZkrf-hKt>KCma*In#OY+Ek7Z*-%=7Eq;PT8X;yIiG{w~y zS4JXZy~BT#vAqnk43Z3}xKMEh6$V!sG#PXd@OC+GDES)#hM<1!27cP8Spy-gskXlT zuHIzv9D}zQ{51v%247_{@CQj40+UJe{bUM+G;RJUn=yZw&6+=$9y7lW+sOBl)oTxj;G=!}=Elv% zXf}LXKje(i!iUL$8JXdX@H0j~G_(01$O>s?1i`X`W$OKLM+i%2@rXr<7sxN*m;$@0KtrkHgxMnQfVK%uN|PqZ?exr&W?CP3u|cRF`o$GW0MLTNuq=!( zajHlEMBpo^4Slck;Q0|Y{hwOv5be-m6OrXw4Bh(nTp7|%Y_JFiLFH0!6u|#JT*8F_ zK|Nbb3-)s$N8*Q7$CVuZZcX%a6KG%mhKtY+Oai*D zN(C|x3@f1xfY)xs0a-L++J+--K(ExSv`JW?X%bC;!@VxIbo#}kM!*a=YZw^T6~BMe zfS-HcF#%(P3k0X+fy`-oMS+AQw7>3JyHOsLtE$sB4%-nd95nVmKtr4CKh4+?1VC`4 zI6(?12A1Laz`0yx{=v}Mup!PE)WC)tRPr}k?&CmN;*4U!(>nSGe%2Tm5DlL9`&M2( z$o^kZxMqx==);e(Yt_XE9LPruew6{(C5kZJYA#_W<+Dry*%7CAdU_8k1j@G%o9iJj~i78 zdD_W+f;0RE=P=x!{4CMJb;TP(=#h+juv>bJegtMgi`!7ODr#EvkB#gZE&}qcSp!cy zUkJmnqnSu<@Py65uN86jy-p%)tVZ&?*%3{y!QLIkcw5F>pk7u8TX1anyS`ov_S4hD zUg)*EkFDMNGnVf0Sz^Zz7Jk-hA;0v8pWIi-3oPtp<_>Vy#|W1nKdY#2*pm=A{MuzK zxbtJj7*!EIRrtT1JKS?1(zMs+@DC5S2k>1Whu_!s-Zr9?0OdmTTY{7Vc=C6SEiBa& z3QGESCp^uxl3xw>4fn2Vz%&QsB)mni0|0da_%~Iw8iOhet;;Adb{E^!hqniDx=Qa5 zs}n49XjH%b+x_~w|AA43NBw+!y zPKInt$h>3E2QX-lvkB6tG^dE4Bn8I2f*>7FgMW?wk3-9l1795dPr_R_$LmCiFejda Zv5a{VS_h0=DoSU~d_4BW{{LL^{{x5{fZ6~6 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bcf9b949bdf1d8548de6e6d6aad54eb6b2ec289 GIT binary patch literal 5814 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 PF0eAkAEUn#pSS-9qR8^2 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d49234dba2cc32397ce802b74c7752841011adb GIT binary patch literal 4280 zcmZ`+TXP$?6$Y>uF0Ybl`65SgIB9d?Of1)K(p<*v*tMO;iAPPWw4QL(*;x^gv=X^X zVV9P~kTXe@*G&F`^q7}UenNjn2M>MeQ~yHJ*8L7vv?W;~2UzR@aDa3B&e^nHuQ2?c z*5B-2m}Tr=^m6>?kPQzKf2qPp9MHDSB?->v){jI6c2#>XiCH zC+L?u<$k48=~p||eyvlp^KP%+Z*&@V?Db~)vz=Kx_Iv00%}$duB@WK3xkKK$pxEX` zSyGo|paRL~*_tcMvht0)&pVgx9MP+w3t5wOOP~J(lMPw@hRN!_=v=-o{gQcdy740N!?|+yZ1V0 z^dF0Y{sl|;4jX&4_7>Z&k6xAR&zOIVeMkH*S$_W5AB!Q=cWC8r+4eiRH}-RXUt}MB z%>K$TTX1+svgM!K8y@Xlezte*#NOo{_B~%}myAd=Q&P#3Sf`2c)74Gr$arzC`k4tn zQG55bhVmvl=kpc>=nkzR*2&L?RSs@*utq42OD=`E#AEsLHg89s@6 zL+IK~qP{ZaMC}w5(@1r^9>bu;`}a&QfaQ;$-1}f_yqu3U0Xa zFkW5BaI<4s(8yyJA5BY@U&VhT#zPmf&V?-v5{l=Idc)2fybiT!k&C-NfN`QHnD4gZx zgNpRV>`-7_9kYG@U3DVHqHrR~T>SSP&XU<1EPHbEd`!oYZE0orY}>~H84BLD{Ya^;X20g0~kzHvLQ zoR_{VVdMcWeN|GyJey~-j4?*Cf@c{|+5^y(HLR@2x~fW{h)YAxfKrpQs(!@xoNR*9 zI7T@y=Rlc}SL6kG5u;gkZnIg;tMk&a0DVbbwm>{59hmnet2j-v>pHrnu0TKi(bz@1 zi-6y&}Vluhf5)?LKXX#TENh_(~fSNa1oy=T0zFi-}&2MEYq$12lr zfVF-TU0WD8Q@yp~LWBgz3>Som@;DE}cR|l61^U)XqnBQc!o}&@F2}m*kH*jBY2qbk z2i!^^D4fRR@Fc-~^1L%8aGu{)UjqZUJ)y^GA1j9>8@xBXh1rbGY;c#47S6os(NYtr z-ENpuMk~<>kZF8NTI~{t>5s-_8EX{+U}Pe8hyW)G=mrP~%2KzdqGUK|yTt{64YGcl zx_791QMJHrsP;A{Gh$xze@3mvI^*_`YEL+egI&**`%Ao#a>smAP+B|Wgme>;dz=12 z2`&?iq4Mc<%cisuWg7$lezpPWh&L;~4RyD|p& z=LML&j^m8GnZ`+B6{isTJtF(WTFKKQSFQK$g@h;{VVyP79729{^(-UdbX_bq4#4At zMf^0GN_Bjdy3dGVAp538y=_Kh8^nB}lH)GEW^75GP+Z^)3 zsh#7e5}$+0xX3ougPNpLgKgFikyUKHRvNu^N6J=|0PIiKS*<)h1^bIjqnE#&wBoE4 z^?(d=ueGWu8&Gn{KWKe9F??s_4fC~Y@4;^aYhlcf7H|e)@U`p|OQl<{>2^btarJF< z#!Uw*0rZ2pIrm}QQ%h<7VLD7?QMUMNsqRO)sXk28t>M5D^>y0l?PydI`T~ueNXpZ} z?H6uzhvqBCJV2}sOklHClB00yt1P2p;$%?ikFo6`T1LT8acV-i6<*;BPhBJ!7xhI0 zl|{pub!I`Ui8(R4c!uZUS|^;1g408@&PM3++}Uz|AgC%O%AqwM%;u7_*unvU2dpDg z2G*1azqT{F@ksU4C+cUcxu(KSs;<>s{>+(}D+Ca-F&MHn*)Hw7te}=va)+b>9L>i+Mo&z#B5eq2ZOH_M7ZB|9w z-m{eEQ9^i@(xw6*D`;#=(`{cbf}s^l(xTYoOF@0vpZ{g9TenIxq_- z*9`L*EbzTH2xY8`V!4b$_n|G4^)g++R#}f}M1W_jXj{-0CEyuqGQq9FgukQ0DWfl* bfYB#V0H1B~8iKIKE5dayb9a7@H*5a~5l;mP literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..818d7c281b3e3b024e5ae7abc14efce1549986c8 GIT binary patch literal 18922 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 j1~HMh#h 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 get_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): + # 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, + get_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 check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + Requirement(line) + return + + +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 + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + 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, + permit_editable_wheels: bool = False, +) -> InstallRequirement: + + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + 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) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + 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 = get_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 = get_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/env/Lib/site-packages/pip/_internal/req/req_file.py b/env/Lib/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..03ae504 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,536 @@ +""" +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, + Iterable, + 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 = Iterable[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/env/Lib/site-packages/pip/_internal/req/req_install.py b/env/Lib/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..02dbda1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,858 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +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._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, LegacyInstallFailure +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, +) +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_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 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_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + hide_url, + redact_auth_from_url, +) +from pip._internal.utils.packaging import safe_extra +from pip._internal.utils.subprocess import runner_with_spinner_message +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__) + + +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: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: 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.permit_editable_wheels = permit_editable_wheels + 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 = {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 Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = 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 self.req.name + + @functools.lru_cache() # use cached_property in python 3.8+ + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @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_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {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 setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @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 isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable() + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable() + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = 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=details, + ) + + # 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 = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + return get_directory_distribution(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, verbosity=0) + + # 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_default_environment().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 and not self.is_wheel: + 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.editable: + direct_url = direct_url_for_editable(self.unpacked_source_directory) + elif 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 + raise exc + 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/env/Lib/site-packages/pip/_internal/req/req_set.py b/env/Lib/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..6626c37 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,189 @@ +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/env/Lib/site-packages/pip/_internal/req/req_tracker.py b/env/Lib/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 0000000..24d3c53 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,124 @@ +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/env/Lib/site-packages/pip/_internal/req/req_uninstall.py b/env/Lib/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..472090a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +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._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, is_local, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = getLogger(__name__) + + +def _script_names(bin_dir: str, script_name: str, is_gui: bool) -> Iterator[str]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +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: BaseDistribution) -> 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/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + msg = "Cannot uninstall {dist}, RECORD file not found.".format(dist=dist) + installer = dist.installer + if not installer or installer == "pip": + dep = "{}=={}".format(dist.raw_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) + + for entry in entries: + path = os.path.join(location, entry) + 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: BaseDistribution) -> 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.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_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.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_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: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location 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.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # 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 setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("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(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + 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.raw_name, + ) + ) + + elif dist.installed_as_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 dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + assert link_pointer == dist_location, ( + f"Egg-link {link_pointer} does not match installed location of " + f"{dist.raw_name} (at {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, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iterdir("scripts"): + paths_to_remove.add(os.path.join(bin_dir, script.name)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script.name}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Iterator[str]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + 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/env/Lib/site-packages/pip/_internal/resolution/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07c6a70fe1f144d14ebae454da6c8faa2c0fec40 GIT binary patch literal 172 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w?#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_#SGp{7IC@(QbzbLgh oKc}=LGe1v19w?ew5+AQuPYx15VgG@*`!H;wp2L?GXu8sG>ksQ3ceVSVdZG;z_!ScfGNlRPB-W z&-5?(%87Gt99qU30zq`7c{}47*>9fLvejx3w1?KK;SnR`yGvHh$K(KApCWL=sUSIx zY0hGnd$C8|8WVmV#6cB%BFt-XjS`>`fd@f{j2Q$Y)**5Ih;W|=H-rb*EN<}djC5;1 za9`5(Y;>3kkq!h{|0L7KMxRTQ$s!e9YS)hoZLoX_(^;krlM#wn8WJ4hM=?m;*TD@uM`;~|8&QdLJjukq-{k0V}3k`3E@muff#EyWy^ ztt%-_qF}1+*6rVHCF&`DetvrYrhg&Tr2kb4Ie)$LQKWj(hhpA8 z$p(F$8Q3Y);Upb{?w47)mt=(jg=+38H^j_IyEnj@cFRj!tJdbw#GUW(Cm^ABwYfU* z?(YWIIZZTb?Yfrc;^kOs4HM-yQZ0loQ%_vH>A(?Rz%z{O)))-ZsxCHld=jZRC|6S( z2v;xvq40QjuUofKk`!qUNn#sGl1n}lE^a2tbe4)mMLFqJ;EweNQVQkNSL+U*JNQej ziYg8@EVya(HbO)g4JmtI&ROH01uhC%`(C-eUU$ug=CaI+v2t=O&U0@keu47u{*fP* zoH}0)UU7;$kN2R^6;bPHqwMzokKl`v^9(hsI6O9ljrJFUymc3(+X$Pa$(oe0HuWFY FgI}__11kUk literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/base.py b/env/Lib/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2ddcc4e6a2bba3426c84a5fac9107654ce10eb4 GIT binary patch literal 179 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o11(#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_#SGp{7IC@(QbzbLgh vKc}=LGe1v1CpA4Wxl%tKD4AIjAFo$Xd5gm)H$SB`C)EyQUojJqU||3N8bB?~ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c263ea3c19f0414159ad0d0011ecefde9539aa5f GIT binary patch literal 12266 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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. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + 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.raw_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.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.raw_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 req.satisfied_by.in_usersite: + 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) -> BaseDistribution: + """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: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + 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.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(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/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bc92c01c63ba0973a8c174479482e4214d2001e GIT binary patch literal 183 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o11%#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_#SGp{7IC@(QbzbLgh vKc}=LGd~Z)EKAMFOwx}BD#$E}kJl@xyv1RYo1apelWGUDvzQ4;urL4s?;9_Y literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c193bdff577358eb747d84ba5fda9ad98acb3ff4 GIT binary patch literal 6426 zcmd5=TXP&o6`r1%yrh-mQO20EV`4BeM2;aFnel47R~mbEXWc!L zqm4v`$OWN_{0HYze}JFDL%;IG3q_GPKM=mtvp20SNy<>gNPTv?`*io|b55V{^n`^% z*2437;X;egS=QgEGWjG?xrUyc986(8Y%Pc z1nEwuk?CX`SyOj|TqobicM6SysV9PBr_?BQ%8jzACxe+zrBN~OsbID<*O+6LaD~Iu zOO|j%WyxyWOIG8INQk^BnD=>}5eqykm{?e{cup*|lRVE0Pu<4iPc2^LrKc7z?c0qd z)XIDYwHefwc}0}?EKg&^S&W$DXE5R%c;iKMW+TY=y7lR-AB3{fGSTs-txDbf#^n9sB){T zqGk}hO|4RN;@0F_O|>bM&RlPHxzC%C(5apbABt9_lj8kIHkD3F5pBtC%cdO;9tXc< z?&~P(BFHXN?yj|JMKC+JpQ3)l+GqQ0&*siEwrg?snZ0X&%09KBti(!-Va)KMiD^Pb zWfA1})~=9rBGq8MdpcLw?*Ku zUtVu2QSa^O%#{t%74P@t)e1@Hg4iF|)K)NfpXSaGi_?Y4>61cWaKE!EBP|)#Z_yy;$pJS1}=t=-kA5B{Zlsh|647!JqsZ zDlL>l4{=;WQ6GW`tHHR{usOpqv4zVW9F8Q8g3A-_G*9vr96Ke_yL3;|`8Xi6>z51)aSf!Ubg$n%5aM zbbFoLj9oBcoL0_4*p(LPdH5Keqhfq*9xuD_C(qioLD{YYYMetNBw0}E%lMJ65P6jv zTqUYR077Sx%xi4+Rwo@u8QsA-`RqSK3Z&VyIc5vkby@`N;|Q@c3JkB=P9 z1lWy0b-e7dhnCDljD9z8p1L*(xMxQ;S{xLYj_fCF*Ct^PoRyo9rx?jC6%9@aBur?R z>?6N{3FD27^bDPUlUi#;Naxf0ppAAs5|qqh&d{Pg&-!x{yBV<@Q7&!W?1dD8h+sX$ z9(qOdW{=*SeKu0GcGtr&n6mf*ldl~k8w^j(o=00SYCb=0^tfLq!e~>-L#ieIzp2&oxCkI7+7X*8^!K7dT;JcR7l zrbnJ!v*j5KGKzw4e4pNpA}HL-B@k*F1pGy-e`#XRzVcKv@)cm4d+R&L#Q&RjafWg| zDWnJlphQ9cbTqUB2sZlH=~mc{5Db-0ZO1@x6tOp!dAzJ>F^tanCqNNivZh`gCLzcgWqJ9f91UEn%6E46BNrwTeglS2l1x{pIQUrD2N&}t@&^0osWxfpJ%>8mRKx!-QXce+uP0%P^T0~-0@LDg?pBVw5tT^;&SHO?F^jwbWF z)hC;NYqQ#d2ae}>5^e>2I11BI*L(GP{XXXJHDz>>Mg_twG@45a$fK%JXaLgxY9dCNG5GU&cCMrs;Z z3(AI}VS=eSVk>pS=oCwhbuQl|72YIroHAY7^)2+qN=)_3lS-t{H~=0SxhccBj$&dV z2h1MWD>q|v{fHJEpK%j9>D&_*8ZdQP|Lo*aQ&H@6lVP1N*w@^Kh`bT-ctIFG+UmW7 z#p8Xlesyy3mU@c%oX%gQOfk9y~mhzajQJApLWb3s1AH)C!VZT3#da6A+z- z`Flb}JCXv3e2dx~WXtkrR5hWM6st?uhcJ8FY*wyN|1XJ*?J$nDWH%aTaGYXonc0~# ztE7ug#gWu&0MJuOW$(At4DhsAd>f)KRdYXf$&2FB6XFKu?6B(b!=qQU5nkF?VMG4OK*4HGqv151cs` z#sp39bl5-g_g=;Cc*uP zzT5q7w9=XJekS@~WFdJMlYeyF0u!NB7oPahrYGZEQ5}iUloC;dHUVU;LuCA~QEP*U z0Rux!UNwVHVbbHGC%Q<2TE0+!AT9%1XD4=J_dTmcOELBUF}@+Za^V<xd7_3$Ft#EDZW)1g=A>9myTx}oO_w2 zWpf~U$uJH-yw-8|6oIOn&r0ToNqNIywh!D6eS!nG>;F+_>`ot#5d!sl>Dl5Am^;ST}Jv;w)4nX=0KO7Vybvy I{(L3*ANF9%lmGw# literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d67d67952565c403bffb57b6f282a6e150186c3a GIT binary patch literal 18337 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

U+>iQo6V3FQbdKq>t8LsKr6@#jKQ!Z&;Lo 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 K+pzz#wE9;&px^5N literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c851abac670faf6c9c981bc175c8ec3f16900bd GIT binary patch literal 3152 zcmai0OK%iM5T4h**AI*_7)a9K5WK;x6DbmkMIwl;L`cYqAQx7aMzhoH_279d-Mx0a zF(C$%&QL*1ebq+|wd$JP=O? zffSL5wNGnIe#M@bp%q5Q?Vxzn+ENjTi(*0#gTyaG*$TfkaN8$Sg7@tSE_ z3O$hVrcaBHKWdZrb^O$22yJNdnR#fq7Cgcyw|}?Mv$+9}&gSs9e$Z!uVquc(262yh znnegh&<_RM6H*09tXQ(me(rnzuGbT8>_y@!(+T4OJCA}`u>GCD-x*tzGe3#?o({V3 zu^;FimgpTJnLLV!YO^1AGQ&a0nf7)C^TN*0l`T4YuBH*|LHpy{?j&f@nF?!e43wTY9coN4ebt zca(v2!HwVqxlpdB-NNRTnL0{@+pi3H7B2qjY^-hVCvtb|Q4%J5w{CtLdTMt|#Cu!! zgYK3Jw75C)sJ5`nRToPN8GGSs7PWy!>htEF2!k$~d9foLY1M^wpk0?RD>~qH({ikm zRcih{oS&%D_Si73`Qx+U(+Ay4tY9CYacDd?4$a4A$yfv#+%jzAcA;A|o?3?% zEUZ0Ko~II~_Mrv6t?d^Mw+`*cC7R9cU(A;l5k*$!S(Jy>dz;^Wzs9a99Ps93J-5no z21}<76}OzFW;x7Gf9eGBc9NEn;qc45IKp{x5>05v6QLOBf^rA`=rKB@0z7a)5+^gzObMad zd6-WysExg61v!m|HeP@^UuHKFKvphaN2$fuW2a&kNx!4d7+78f`3Dmn!`Ihs&)XpbON9&QLKFVnrz9BF{x$c zh5QNH$AM0df#!3*fXN$Lb=Dj%y%TP3pO!FR3!h>*{-`|$Ew7_PQDg;3ur*>>KwM#& zhY?bH0_mridK_+Za`r7UXh96GoC zX}Rx7dM+FfT?xLjawPH@=ljrlnLUj1l3Xf+>G3?6N0%*NudpKXqj=sVd~FiP>U8d; zgRfwgRqUKOyngC#PR_|V^8F!REO1ZqUlC}Ws)BHj0nNDX4sGBa`JQz8elYU|n0^q` zO<&-UpPdq^%E*dRlY_W?YH&to@*~)_W+Wr?D^tk~&?yj`J%i1J0n# m`H?Q7Z2i-Kr`6l}756p0V-?X`(`cHrxHM<2sx@oRU;Pi?Hx{!1 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..952da2f7deafb174f1e592da0d3928bbbe8d3bc7 GIT binary patch literal 7441 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 X)AK5*N=ij7X(zObURkPqFu(jiHj6cf literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..181edc86076d3895a29d01bcee51b8a0b81d5d48 GIT binary patch literal 8203 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 dYU#>fXcuG^OIe*tN?Y{CEl literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 0000000..b206692 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,141 @@ +from typing import FrozenSet, Iterable, Optional, Tuple, Union + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] +CandidateVersion = Union[LegacyVersion, Version] + + +def format_name(project: str, extras: FrozenSet[str]) -> 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 __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + 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/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..9b8450e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,547 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, +) +from pip._internal.metadata import BaseDistribution +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 normalize_version_info + +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, + permit_editable_wheels=template.permit_editable_wheels, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.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). + """ + + dist: BaseDistribution + 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 = self.dist.canonical_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 = 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) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + + def _prepare(self) -> BaseDistribution: + 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 + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + 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) -> BaseDistribution: + preparer = self._factory.preparer + return 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) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + 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 self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + return self.dist.version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + 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.iter_dependencies(): + 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.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_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.iter_dependencies(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/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..261d8d5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,739 @@ +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.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.packaging import get_requirement +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, + suppress_build_failures: 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._suppress_build_failures = suppress_build_failures + + 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: + base = AlreadyInstalledCandidate(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 MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %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 MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %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 incompatibility. 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 are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) 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, Iterable[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 = get_requirement(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 + # known 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: Optional[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: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + 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 convenience. + 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/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..8663097 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,155 @@ +"""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 collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +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(SequenceCandidate): + """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: Any) -> Any: + # 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) diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..e6ec959 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,248 @@ +import collections +import math +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + 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). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically 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 mapping: + return mapping[name] + return default + + +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( # type: ignore + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["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 + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + 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-airflow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + delay_this, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: 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": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + 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] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..6ced532 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,68 @@ +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. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + 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/env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..f561f1f --- /dev/null +++ b/env/Lib/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 canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - 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/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..32ef789 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,298 @@ +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 .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, + suppress_build_failures: bool, + 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, + suppress_build_failures=suppress_build_failures, + 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 + + # 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, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + 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]]", requirement_keys: Set[str] +) -> 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 first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking 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 on its 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. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + 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) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + 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/env/Lib/site-packages/pip/_internal/self_outdated_check.py b/env/Lib/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..7300e0e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,189 @@ +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: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self.state: 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) -> str: + return sys.prefix + + def save(self, pypi_version: str, current_time: 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: 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: PipSession, options: 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, + use_deprecated_html5lib=( + "html5lib" in options.deprecated_features_enabled + ), + ) + 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` on purpose as it is not possible to do it + # correctly without knowing the user's shell. Thus, + # it won't be done until possible through the standard library. + # Do not be tempted to use the undocumented subprocess.list2cmdline. + # It is considered an internal implementation detail for a reason. + 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/env/Lib/site-packages/pip/_internal/utils/__init__.py b/env/Lib/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a8db3c11a0eea40855e3bf66afff22ae1bb0df4 GIT binary patch literal 167 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wu#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_#SGp{7IC@(QbzqBMX jr&vE8D3DnaAFo$Xd5gm)H$SB`C)EyQM==wSU||3N)|Dvv literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09f83a0cbb6c272a4064a57f624a27029335bfaf GIT binary patch literal 1495 zcmZux&2HQ_5GEzAv@3fZBW+S3hn7dHu;pWcA}CV-1qF;XV5331SU{0QuB=!qZAi+7 z7kf+2K^`FvdTAd?*PikO1$t>`s9kr1n!t?65jmXs<{MW1en4RS)89(}atZkp7psH8 z;u(lO1trLk2r8U{4k>)y!kM^3cfy8@62XR@=R|ab_m&7x(pTOacjyaWc12hEVrkdn4$%`t>@-hp813Au1sd;LDS-Vs`EfTHyxKi9) zNd6LcOBG#7bzW(?6-80_l24?$s6-S5d6}Dd;czSD6Y#{(B~O#0kOF4lM)IV*;T1Sj zd{T+JfE&$4V(g}6Fi|GWaeGtn2{0go&}rNs%bSL!i8h}efGI`$>gdAa8HoNClq7%_ z89IUvUExS3T-gx}1h5)+g)h2*h9^8gqu2CbwCS{0&VFgZ;q7vp3j_ur;t5~mjdAW2 z@=6v#z+t>NJl#7vJLI{BB+a#yCI4w~bONagesH+=^Yh4VYut&>8kVR`H{RuS`&H7^ zsvM*aM7!eux@#9!jDVSYtltPaR3vHubQ5$IMfZ7Dnm}8eP`gOi8bs#g57{1(jtRd0(ZMaYy3&f8G@ zg}IdLqOzcGLjthx=DRvTz|%&HCyS^9@)u z!V-9!R3R*(V@p2>*VGrVZ13~T%@oSoGRl?*-8bH`ePQhN>Py^>uv<6xUfq4#^7aSh TlE!El>H3?Lv4`%%V59Rd3b1(= literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..718ce2c34f1c57aa06f9ac1677d57b7c93373a11 GIT binary patch literal 1593 zcmZWpPj4eN6d%txlgTvyh+wyXge=5?5xa@R9#%pKAwZFkR=v;*QKXSOc9TgaZlK(wF|K5AQ_iQm3#2&PN2A^lYhMxC_-P~_o z*nA6J{SE{379K;)FVF(H*M3yka;E;_q#(S>z~M=a#gDP~<3y}^qfd(X*Y z9y@u+4p{$9XL0a9`G5^U-rpl&9)0Km%7~2tWx)KOykv6uSA4wA70CqS$x1tw=?c zdKS}?5e^<}r$?9+73cseJ=I(ixJ>q7;3mn|v|MpEjsJv1ct;5`_*Jen%>AmM8eHGm zh)owlFX@h(unjdsR)62@8bkjcx*Ecuy$xzyPOmMm!ODqv?T<}Y3c3RxGb_Dq)`Jdo7tnXGxDBX* zGQAG2eC=<7x47|dkQ_GH<-j+xJ3 zW0_%S>&saCjn|;xfDIjNFr?oHwu0-x#co1I<#}GtWgjjj9TTVvWun^}bB0&%iR2SF zmQU@_=G)e9dYA8!+qN~~3ZSE^BG=NsDATogidTC&fX`gQck?*E<3||k3%IN-=P{Z9 zJuwQ=B#;CI2|7-OrkkcrWNGTGI0sFrFYM1EEpg@mUez>he?S?4q;)+|TDlix@QDyb qn?IWl2Yt^gmoZm*(bw&_`HlT9)C30XMNx$MP-v6j5FZXd>ir9*(~L#{ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbfbdf11cdb3aa4225f3bbac4a56eee0128e6b51 GIT binary patch literal 1483 zcmY*ZUvDEd5MO&Y$u`}TQr!a*JXiwh2;!28>U1KY6MuRq3Q(t*~VF~ zY;U7f?F+}ZKu9e-@s<3_6JOz8%6QYF!;!t?8P8rec-$NWFgB;e?##_P9e(qI7(Q_O0t{%bJVVGZ5{ z&2Ad7knMmbT6nDaCz`alf4+C~9^1V|MbF7BT4LGb_vvY6Phzp2x?NPR!x>^qq13PoT>8<6ypurzK!PG z#052rxXhT{)rN^|78lF8wvF-0;CMJ5*}CGURC(fj9tH*>g!w&8{RJ$S4FJLu-nBRO zT*858&}JWb?sw+pXzhUW1z!2r2zgfsN(u%Ff#=U{WTTT&e0nxKeK8n~`t865vDU)w zo~#O~%nPNYvL6&#(TOj3&ZO#;NF)pB|! zg}iw7 zJqWA!VZkUwbsV7p;k(EWu!=xw0|#W{YI+zx2sM}$OfwJ+z{1cQtUfa624BJM+=m%_ z=iTCK1iIQ4x<%*pYYcM3$p99>31`Baoh$Da>CeE@bdoz&*>ukR8ne3wpcwqI(&9`c(jdwDrmwPP&LyeE%U^Y&T(~%C}AZh zM*hd#1d;*!w6?mh5^VOTh?-yEi2jVngPV&^6uMSJP88(-31gs+iIv z;|0&Fq6z#zeW;E|MG~4nHe|+$;uOGemD=Vo9t>X&`~Bhgvim=eugEwPq5^8$0uDmJ zOg)6u?Wp1gHAY!1wGCv!a~lrhSI5Ia|4cc;*jlO$HMXuz)nv6qNX=Etnd+H#z}uiY z(YUXm?Qg9(Wj0JR!JS{l>Fu%$uF7@bhcNX4EY0WNY%WcN^@H;DuAuO&T{J~BC|L*?E~A0VnySi0Rk?%@50Y&{$;#+85X=THh;mQu oJ5{WEjTnki8$nAb*sM8AX`{V) zc4G&DqGTQ-azX)yiFWAIzN*<|g$n2Pr=!mG&sW6%op%qm-)yVGH z(OhRPsny;G0oJM&Sa(})&23(WA@!7*7mWS!&E@+O?<$#9WR#7lSJ(}Pl9~gx%bIE=j!F(I3Fib>gB=1APn+7=YhACwQDaZ zI2$dq5O;$tFYGVUJV;_MEGiHBY3R4?qH%98-%jE$eU)LRF!5b+tUFQ_`fd(A#e6r_ zt45JRT`-L|)fTLoe?oD$1TNpKbrT<(}P?lNN$v zeze>T;$G4&ENJbkxQk>udZ=H;`!U|^BpS&MjGX0sfP|C$FG!7je#iisxltG|I9Aa9 zzexh@F7ndC%yQLYs)30g47G%xmk(~=*d#zV|CEHu;}6e&8hY8zrXN4vyc;~+%!1rM zpL*RLZ_Cd%(;&S7_pn>wc%h#MVRm7Rmxf-$(oXk^<>}41dE&;2OmZ9>BO|X)abAQ+#I(`OqAS+#K+IhSuC?JwB}b z)#%ZA!W=3E@Njcm9ad(tKL^cIbXPEUJialI^-1EnZj@V=phv(2p_X?Tcy^3V&dQpajvF zE5f0u-3*bJ1mCUq$Syfx8N9mk+IsnP-JQvq_RTQqdSP}8o$*JlO3`r1EMe#({fi0= zcee{`OC|j@D@;U65i7N-+6U#JPm8`u6n=sjKXtF0_q|Z-DC%T$oU|6H^|R99Gx)Of zdSTYFQ<%sok7`V?akYxnv!_uAFj6&H)z(Fd0h(Ye%9c|cTBSYDd?v20aJct0Rb^)edD z?*+Sstp}N(j>K8N2XP50fmT9#+U@qUJc)qp$gv4ow6RL#YXMuE*;bP^nW)+?n-$=D z6|?_=FP$8X?`?FZkY$7|#z^BsrWT1ba5BU|05?=9;QS8G(L_e4MbEaxhH61qVU>B_ z;_6ozs`F@CLS3M#T9yNrj7V8WUAs00<`S*GOwAQ)2&XqOSa!Gke2l{pRqAatv0UdB z6BYZF&4j6Q>qCeUj4`Xuz(6TRFF~P6WME`M8uvja`^I-T-5?X=w(-@OAs_JP2DaXO zRG*>_Mx>&N!+dTW@PRo>InWIC9@PgW$Icj~L?WY_M2MUD-Dy?PbG?H zVfni`C9F`_$t+4t)(`W7rNx{lrB3S6fxkf>XqsC4uVy#MIihiavu|<1Y;H5oR=@%C zOmOuP*{F{AWCkj#V?+fyzSq#nk*MHTwjLeSL^KpT~y39f|&(5#~u0BDxSO_BA5F$U$aj8h+E`@gd zP@i7yI}se!-oBx#lv_hON;F!?8AkB-dq}=F{z3JEp*|?OL#jF&^gpHk+ZZ_KDQmSQDthBJQ zGL``X%li`8{XySs9M7Rz<|I8Q>!)d=a$h=h<#JF$9pCG2JEIsmS?YI#UV!-^t~q$V z9?fK5w`*E(1FY;t;}32?H*PvXyfv1bBQyE7Pr4&#{mPYf2S(PfTwXt?zbB;-Y$UPY zb{=5e*z}Vi44sF*<7HVtA_tSPw@%Vm&hI|D)1G!<%ttpyKJQKKay*wgdr9AU;>Ef1 z*b4)BRGZbf%@;th0`yw`iJwpe?a4^I7S)-Nt-gSQ7T?%F`Nq>aT~u9HCSBJpxI!t& z_fnh>MO3CtYKS*Fr*Oq@;|>_hM77I%KUTFVGZitmBC6Cop912D)AVh#sM4J_2z^D@ zTFu9bYNEdJPc8?#GL_&G=ayKL&r{e;?nw5{D3SfpzeQA^-9{rof=lcyuhmbPE0vX{ pmF4w%^8~lWYm0IHa$ftH*GG80B595DpDmOBR1^G_RayAgzX1wo;?Dp8 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e40fe10545f35817be8698d26a1a4ad5e780ed28 GIT binary patch literal 490 zcmYjN!Ab)$5KT7OcCFTncgfKTZI6P82ucqkUOZVAmbi)Cb+<`L(w55h=7-dyzm%&d zuO7YVq$oJ>-pr8Uy_x84w}T+QyGQvaejh#?1D0xSb^=m~G4SF|P$ZE%Ac+(fTrO&ikCio!nl zwnuytEQ6h=q4KfQ;LwXr1QI3~7#b)X?c+(gkm?PY@IhbKSEuPxn<~B6wO*X`M>V%q zD%B#rDIZc>I@zD`yy6pSQ@D4SmC8w@cs-oEvbMuN=fP~{54N^hX|o!(Fqtd3YJ-Vw z0d?>`P9n1hWiR&aEE77@*EW9Sq1_Qm{b) z*nnSz6}7wqMn?_8O$tON$07b`#O z|9sUj{z-$yXAOfJc-6l_J~z10HMq%HYIe=KWnG5WO0ALIwMS0Z8M$3|>sT1^Zdez)7|7hjf?FdIcjE4M%R^s^6c-MoM2?(WsFPe(33 zCI&a~suqYapelpZ1aVlk`Ds$zKI7<%hS%M;Rryhr#Ul|#RS-pu#OSx8=&LeLn=k(` z-9y;{i!mD~96Pp{QDK|9?9qqa{CdR~^ zu!%LXC(f}8!!_>JuQn&9X2(pvrL8A6H=mkQcj7*ACdN~mtgR$dI!@DQc3#v-PmC%GcITLHyJle8&*hIXgio{vB8G8@XpqLk$|3A) zgNaq1Rm)NoY22?}zVe27CZIa`CU(l7fXtC0M0~ttU^Ox)=uF^trI{~lLz~AYOoAPo z51lE@M6BmC z9Fy636G#49+Y|5D{IjW@2kykvHeco~(nRg_E3si2#&1Ph2uZQ()Zh@V9wkas1RIoD zzX?Q%KI{ZRh({ur<=NG`Ph$#Dhy=6wkaUsJae7~brNYroxI5TC#8jeQJ~P~p)%>KM z5ZM_Qyc6Er&&!mDJrTxXKc@hzMW_&CMb;Oc88>q+yvmX);Si7{&;Acvh}|(6REAJI z7IS7^5}kxO4Eu3L5;YgkG`?^t7ff30Cmj!C0d@OjFWX-XJ z=x1@Fuo1Vx%yStg^=WUbuwP0E>F3t~%^}nQ=5Y&_W38a54EX1A(DlvHi`IO`_N{z0 ziZi}V(J&-KC+10agItcn?QICWJ=^)4$BRcyX+@|B-)uO)t}LLa?=c;ct9GEXo9~c6 zg;_c3fq$roF4YpLp%F)i2Q^ACp)m{qco6u5G7W2u)9q)sViD!taFApin5MvlhdfdJ zQc-RMmOLzEK2A6U6N2|}O@qqr5qms6dWY2Ycp4rgX^Nzcv-_0S0dP<3$Kxa~W!MMA zL(w^U=UxKys}=ls`fjrd3$r{-b1aadDvKhQ;GlDK;) z)T|oNNdf-@`n2{Y;9Rem13YJ}b9CeOnWSW-aF{_}LS)$XzSf1hy0bG(^nTgvKs!6d zVG-|8>a7)`b{UbqYZ!7A|KTi0R# dab5O|dBHcq20O=0_ZeV(PFCZ-^nLZ4{{l0xj+g)d literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..819949e31cdd9802b970dcf583b3177fd8055477 GIT binary patch literal 2058 zcmZux&2QX96!+L;ukH2bt7+1TLKg~!6>8c;X(dFfqE?YWReESa>S`s+@l3K#{ISf; zZfWY35UIH3%B4a|j{E~0`9tQ)i9dlzZFp~XlWq}XdHm*mjNiQX`%Tqqg%*sH)@SK2 zk!Agbi`fyt;vT&6SD2W^NNyFRO9;w#ZWm71DQK4#Zr3fmu4nX4-YER8Z)BPWMc56E z?B>lP>P8@YoU#UQF`u`#JQlFscQ zpDnR-FWv4Un|o|^&i@U$SskMNM+22rWs-NOZhkG&em3IYlv|Y!9%O>2>N}C^28c%2 z_&${=KpcITmAmk54ieRmRTU3K4ohd0N*yv2iYiUZq~O{UTn$B;+W6P$pz!tJy$`Sa z1E$(Kw2mxd)r65%Yiw^@V@HwN+Od_hZ;Q*d&Fn*p>m3(n&q$3U=QjA3A5T4f@Vr&q zXh*&A3B(t*a~MwKBWOg~ntC_)ZF%=w>u2&#L?kxQpE(c_ty&mSJK`z)pECEbRXazJ zpV{4pQhIwg?pNiA3)N2AXGLqP3YLRx&=&lMA=IPbrD{thvT}QE&uQOl@A)srpT8L2 zdokW?$>HXtW|eq;=a^hMCRaOi+8-r(#uCMKn8~b^Dk)R0X$Bn-SUK&1P$Wtq;9S%B#`sYwLL;cYC}X^&V!MJ(($fZIGn9$u^fgIR5oGD-{<2ufR=!`bni@+wTe?Gs8O;*ka7pF~bb zd@@JupBC)U=qOnNyLcbZ6Uu5RQjVLY1Qe$OWh{un-wFuILR9P%Wi!I;1HzmG>@VGT zf;{0YQ^{t|JGM9n&SDX!jw2Ao!p8~s>Jae(%2=t%bO|KAI&(T`S$w)z8;lZzZOGau z-W!3Mjde|PV3%IOInE@MFn-qOJde{P?ei2ndpfXh4S3Bd{saLqYl&Nm93u7ssbi;h zWXoXOG3;@VNY5G5u{-u^WR)u~8LK;PltE48m8q{+6Nql8MopDpJ3B$$s9i=5kQE`+ z$9as5Z5~M{xo8~_8C1uj!&aH z?gkVU`z)4W(n|#RU`+1N$3)+Kn!5uWA#L6~T@g|@V zz#n7bC6o`Zqv>}U?LZscJ5InS8LGZsM$NNK^{b(ZPw}rK^gYdC(stzFgfr)7IrTPX z9+KfdW>Nv^5q}c`2FS@6??sceA!;WSAL4EXJs*Ljn{bNL+$RUVf@%_*!b~EsVaR{5 zwmge9Q57+Q=u>c%>o9pv1VE$kgeR2x9>C5GiESP_nO{@a`^OJ#<3)-0nt~SvqM-(3 zz1QLfY}K(h);mkuQ_lx*Jb_ocz6^|CJ7fG>Q8Av&wYM3WvrdYKbeY^@7yma1(-w$q zec@fZxklEYN7C?4FTQI&YrX@Qt+@dVsWjcJs@x<#Q!!IJLs9=LNOqX>yLc@~>_B8) bup_u*BC_Hvt=c|4fij(V@Z#6D=idAayQ37O literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..050cf577a9d25fe93bc2e1cdf258d91a6766f6d4 GIT binary patch literal 1074 zcmZ`&OK%e~5Vm){n@1DWLRG0qNGndPMA{<~qKJx6I8;?74ydc3$XPoZH~XsXZJR3L z0$2V6aN{rehB)yT5E9I8nkI)bE6>{V@O4Karrx8gG%``~~+TADfM?P`c0}R{Jt~C1oZ-xOPC(aPpe#EZ4qeNLPf~kVCNa zTfTkO;+H(^l2f!VG`LJ!@vq$UBra2-4Q%K1Sttg3ibV zn&L0^l$?^UQ1UY}#ZW5i>ccUWihH@t&IRMl0}w^RQ>`9*b0i{-Jeqph;FO2j(<7?A z5mm6^O%EucIvlO~?KCU-eme1rbev`v>GDq4aZf~PCOO-w%zP~CkdW_~jXqm+OFyc* z!?^Rmw7|l+MGlqarrrm`Q1|=3Q@NHerixe_8=xE9H%g6Ke?Tb`%nbLT-YTVr=sIoje`NVAI<%_ML zEfw1kOO*kMTgMjO!YxdQ_2-UDu-pXkk-uivZ|>UR(PuBt2AhO030|ycWe( zcb8TrC_sVq+!yG@KK6ln;kBo}LJm!5mXd4-Jrt$D;m+)GIP=ZSC)I4$J-FUBZ})zS zJnv6b&R-Q!zJ%NS3L^0ml6u|pNxH=8v`gVhQ-2h61A=>gS{a4ia8&J9ogSposMf8G z>fJi%l_VU{?xmzE8c8G?{UE6&^o`;KAXNuEEj|!~L7d8L2>$G0+}COpo2hZyziy_g$1##3(tHwUd?boc3!Ce#M=;pM zg=<9i0o-N-g!N8HLJ~UnPW{B+@*ull_D7w;^+09ELR-e!9=Ky8VR^zWXU9Cv1+xk^ zIuK?X!({lyJM3V}_;{R7AyenV9tvjgWs@HmD{YP;GH%#-IEb|{D%U+>whbKW3l}x( z=UER=b)17eWyLO=2-f3SrYr+Yaj7!dCGjyuw_LvYSnBKv)zMP^y52C`TB znyr2R!&mJtZ_hqyf7W^V@f*^f)m9lmk*F4h50SQrt^qW^dwLBXZ=O8d-Jd8u-2YCc z>iE<4KGbgisXW-n0=Jh%-yh5I-B@N;Xy}Q%kZx-3E=$=NPm8s9skv;gVi_oi zjZm+{<3g)U_o+vq znm<-u$I{sohv!qJhODpjh1&IHDx7hw)sg7gvtmwoI)qv>XuS?L;-V<6GFkv@YKj0i z3aVgrq-0iv(xAgu;6N;z7ZNUNuAc$3Q4uY79L%M-3~A~rh?{U5gg*-EWQ{aPMCjXq zUH}NeSphTyW#9og-fK@^os$z{=_w(e^4bVS4)6bo*IEVpI2e5C$ zqv}aC_vaJ<4xCn-gActs4;BD#mjLrEsH4O9nHxKXy^qN{WKmhQ8gqclKK85lNg8YJ zFa;;{L>d^PJ(Y=0-MM-JMgilo!%ROzez6+!jo()l;0$zRVIl zf-Tzl_W7e{@$;`=Ji3FCmBtlWxfk!ZN`IMZmn`((JYRIOvv4vM=Kpy)7v5RS%fxOc zD%-}PhAxK07GW;AuT_Hf7~1>RJ;ovVTRYC32GUS@ny>@GRFVLL7y+115M4yWVaziI z4Oy}o_`dJHxpZw-1(61s@K7aeBGZ%|<;Jp-XkEqoQiB012xSMZUk*%NW1|)!u%pNl z?SrC26gcE=^z{{7Atmcg6i5xNN;yLntf0}?z*GddE~*eJ^6tB%1OKGnM{pYkBG?E? z-Tmm#0mW5BqjSU5S}#A^fV28N5JhOGW0-f1lvHd1nRQlV)>%POMvs9PH!mJ>eAhYa zN0+qAv#7=~Pt!OC&ak>n7{^>=z~_>{iPuO1MfCYdC3z~oz`rbW9Yo|uzyb}jPS*(y ODGC1G2(Q&{H2whyhd*He literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..819db8df3d42f7a43241ae35b17ad54b2f103234 GIT binary patch literal 1280 zcmZuvO>Y}F5GD6ZtCeIcj$u9FI6EwV<| zf41721fQT<^%D9-$2CJ)tw=~^znr9up4$`IuRl6>G(32CUd*xHqe~Y^S+=p4FE#d- zS#TLu){|%7oro={9wsD;2d^K0dD;>8w_n#gXFI2#*OWy987PNSIpJ}Lbsryw4XEb< zOz|fei4M`}R>!!&7sd?D@eD68zdb|JnBn)B;9ua#b8}`auz@f-K|gAiMIa`am^usp z-@h)>0MYei{J?s`%lq3JhSG71tONNP6~^B_tkyw!9J#R z=SAW!aQeOU=A{K%Xkm-zza9)}IPwF(HH-p%NTl z4yjM$Trkh`VH^dF^#Z5^be4nxqdNmCQ%?I7{w3GsZQu!7^I0^aev;C7yXGgc|9mQk zN!&R8Tg&TR8eqA0FSW@QKT~!f!YDebl{q|Uq&y)5F2z|ShstC$Rt}-i5LLEFStM1d zd3^Bf@Y~~Wx-Xi_5j5c8P&oshOj4noyhXM7e?2NwOoiHj6rufK!sK=HHJj_}R%S05 zEBAU;SuBdFejoz4e<1!5aQ=OI__%YH@KNW7ge7mks2{OFj5;)a+i69;j))|!ryy4_ zprVsT>25cQCFOCzb|*4oV)wfGPC8YkU?P)le!NX6EV{e&g?5)xuYBlqVva@#uqDrpTyWJp;6B)=TiAA@o3Slx%BSv`@`pDYO nP*PeRqv6uA8o|d5k$(AL3?|bk2WPNe5h^T$IcwBy(MbRH&a@uAz`I5SO zNdu2~ETc_$CNgf4P12;BG!FArX3cCfqxYO=m|}wS2hoFw&+x3u_?(~pGTY=l{ytjX z`;(BO>t!-zuZ8nN{>FHr6_d+&$QmZpkTJV=!`z~8tt#WN{n)~LO8o_O_X!O?dKdqi z@c6elj(qx4^mB-iu)k>I3sl}R2?xuJK?{|(z@!8%IfSL&Xra6-77L*Eil}HSO4`wb z5e91JsB>`GVSqU~0vs!$kQeYAOV&CBU4d|}MK@wGE1Xb!sH|?_=GpD56}a9NhWUC0 zO)I@H65*!zwN`EgzD8kzxKNxjl!Cr7#i7y8k9dSmdm5tC1z0xn6Uuoai+lydz&dbk zRZ*IOZVz5GNFXPyVUK>I*XWM8Pif!kP!sF~^GHF2149Z-@r~7;-~Iql@Ro-f2M|2}ui6cOb(yZWsp!DHb%SoAPO1HKD7YRs= zqmFKbpcqiL){-iq6&6$7ACl}pJp1nYo9nNyrXo4mVc;ZGr|*!%t`D?=1zc%`@&BS0 za2t|82r@{;grozMch!;u5vZb$WC<#hGm6EHL`I@JM5w(t?rOc>3tzXpqSVdW^oFfz z-+FSy`pJ{0Pbc&7PEZ91s1omwg@RUbw6Y&L1_u?3AW5eMKgwbCPLlS$ZlNUVQzA$6 z5MN)zqsu1ndPHl^BUzSs+E$Gk1t(9+$i7%CvmqrX4s+)zsvTwrE68e8_Cj_uKHL#}T}`_d&|w_ZrM zKDjN0>4*I7QN1$)cR3C7^CZqbFE;n}#p<3BULczbK_B q!e3%!P3d?$q!fI_8M&VfABFSz=Z)sA#4p0nV~m|gAIIkjr2hbcONO)n literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9d4e0afd55435af583c98dd22df5deeb9b1181a GIT binary patch literal 5135 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 Lri-)Qp0WP{QQZHA literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cda3a15628265377bc697abe40589db8c66b7c27 GIT binary patch literal 917 zcmY*X&2G~`5Z<*N$4T=?iTZQ%5g+PGy;PtIQA(;-R0TBwiWSLqyqk8_jcx5ZX={}e zJO&3i@-95VUODv@xWKF%LAus_n)zmS{?=);Sx0dGG@ryj4TOGaWARvEya1730p1~k z0z@z|IGz}RfwgXOb7BP+=vGi6mB6M3trB}|tRw1>>JB1KP$_y-=@v6MLOis7b|Fy*l`UvK6-kWsAoBxng|zH}NEaYSx9Bq_cpZJi-_a+0i*sX!M2i@GL`>L^RXjZ@ z^SA>sg%yq6GoAg+Wzvn@I87uYR8ZnZU?*-Q;tMvT?ihCJ-|5nWea{poD5}EKD=O6T z?#bT4;rre~$DSb^9bv+De?WE6f4_e9YFN%Qir zl3^$+;1afms)mM+v_@&l%NEMn7oe@(&dwwyQ%;}jeabF?jT&adu#7J5;BnWH&pG~aj5$2T{91mol8z2v(tLVudY z>abw(6dqZDNl}V(G+g}SA%-={NkNCSu!a^!DP@$|U!XBbtCT*mjZh*Iw;sFY~f5EA!9}?{yRx0CVoNN0{UFA$Wf~i`RiP^9^Ff8`q zk#HNN&;_b&g)a~!!?VY)+ZY)f=h;yboG~FGXCRfx%H#V17eSwwEXc+|$yHEG@GiFY z;0wNLgQDx8Xb}`8yd1++fBEURYFaV*2NEuPOl$sr_58``oQuimJ-VPAi?H;7*Ke~k|I zpY26&U%VddANE5}Q#qB|tMXWlxhOQ@QoBpoZCT}+(zkwAz~ND?*b5=J(C*=2G4bEV zdA)D~g*ejgHGlsxB0NAs*kEqKBe%f#j)e)nO)P8YgG0za?b|gdOsglUz&wqu!OS?FtL;ny4cMa6|$0BG$!KRAF| zE9>Z(smS!rl2EY?@!CtG69(reS#kmi$8nu2lbaQlnl5*@$+9v?V!1dg=X_FE!8nGN@3n7@ z2qN(qD$GMe8^owy;OUU08&^Fm*4CTxtjS1JM%( xDnX6;+8CoGZ4b1-wqYx$wAyC!YVU`Fr*+PLGH^?i)}tQY!aH=w-r2sh`!D3MsWJcn literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1279a744cceefecc82ffbc4d3685b08c4e81c8f GIT binary patch literal 5169 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 OC?y+D`&`AEY5or}%&*D- literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b076b2216f64adc19cece8d4cf7231c6e148726 GIT binary patch literal 962 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≥6w zkVqR&Ao(05v0p>FnZX8iqkQEJXldNe6gCb`MY$OLh&eYv8H&+_!qcZz+olp};NNKj z+PPr25A5(sQ_mvH5!$e?(E1d4rb7EotoS#2ohFN8`HrAInSse(ijetU*FIYwSyQ1h zns_;{(Kq&f#De61T|tR|9XhE)PEbmCl&{&a8^_QlH)uG4@oF4I%SLM-Ms2irqwS!5 zlnfc#LujY&nBo-LDYVJJxp17wHPS(h#oU&;k?N$xxsJ5~zj!0vfQz%?cASkgoSn>F zL(H&j!^DWk;0v?-Lu(_$3T&7aQOmC2dh5^OT#0wt$cou8R}5q?hVUNmQ3kqVHycIW zW_uo5Y%jT6Y#(a-H)~@LZ8%v6*ujUEdLCkjAKL85L#yL-vh3&>#dT`z>To z;VQr(peZ^da>lR5N*3tmgHq~ut6_`lJc)7?L${O z@w?LvTyP;5;><71UDKZ1MXYHTk*Pm7Jq<5oN;?$WdJu3zk^UG{mB)c*`z&rArZz8O zrqm_ORQJ47J2?#P?|$2gXId`2m*Kr)835tMEjmM?7o*}Jk%;9;uid{WlU`3+=Gv#f z?ZsQwZOQu5nkXsD(Ju79Myo3vgj`PPka=!Tf7_lrC=B@EK(bPG6=cC1plU4lf;$os z)R1zCDg$R9>CNo-wTH$hy54Xp?jA*X<_PT6xl}{ti81;v9dwUQU{ol#*-yx8Y!WHO zF9`fG0h$l5oQxHM2)cCD(Hmi2rnRn%`}txaewSALNq?32C3Pr5QG6->l)#@6AiA|v ztz>!f74Z=D?rYQn>5(Q=&X30%wTJ;LGR1gUT~~|Y!VF@?pp%9-~9a464a`5+J@fX-#IwFb^ zohe3NDX+Ep&*|-Z2wWs^835PQi}N?;uUxt+eutVlWObG6vOwOP3!a1mkXc+DBw88B zU443X4#SKqrOkz8VdssgimM5Lw~iJ>d?U8f1oS=D*!L; zAuoimYv9kdvXo|YsJaOj5-{QFN2~|LKS!O{U zx}FS!C3SJCh%AdeiSKci_z6~t4FH+J1p%)r4jtP3w*_E}oCHC(Sh~r26UY$`^(dd3 zEV`h4jShfRD3qn<5P;l2z_nA*0;^M9H8zk9qm-FSiIopMHG3c%BgpvguwnOm#4Ze% zpMGCAEvWN|d!KrN$`Pp0zPokr%6$s@NyqiEN)~jt-W=A(fVf4A48@l6fZBiC97?!X z6MZ>;bf*c7BL_k^Z&5?v&*-n%woN^VYdWqJKT&jHXsE%g5=l`&!Nw{kAk@MjhE)1>@o(LUfh`2%L5FydG*7R}=D M=&MDy=pD=bKM&PzZU6uP literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a36e265ea3c2b673e1a62ff285df591fd70fff0 GIT binary patch literal 18690 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 Z>EUrNJv?-1$R32Ad%%l_qt5V8{}1#eP)`5= literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3dc79e8284ffa91e9257a62cf8c0d49d4e41a58d GIT binary patch literal 1963 zcmbVNOK;mo5Z(t#(Xu4liu1731Of^a)gdv^OMoB1lmK2~hr8eI&THpeW$kv8Vf(lJd3510_BTzI zo5aZr?Dh*3zybywM8X4(Uzv!h4CK@aoT(eQoPEQ<0rxcn_gn-Xh(p%*&K~|!#7SJl z+V)17>46@_X`GIG(+qTCoByC*cF>ole3{Nle?Lr;aG2=Q`FWP>h!&Tdhm#lB?O!M~ zLpN9;fCmx;$gv0&_QH< z3E6;6L|RM87IYD5FCn*J8^UI~Hg`kSF-{;2!MYjxA_lVs^{z z@Ad4<&}!Jvrg>=ekMZwudiLZelbyzZ*@`MSwprSX!aN)>7br2`hwOqM z^o60TFbx!VcaGJ`$oPb;p}1hCji0yQe)V+lTV{?2zh+5x`sC5q=*jUwr>BD-;^Dx? zg?^NW(Q!D|c96&Uo{G~#n>0-JPOxU|UR@%ObF2%6YjL3z>9ts>%;Qad_TYUfe7x8j zaoo3PG`@<8YQA7|cEr#5Av5bZ?TgZxgmzNJ)#s*#SQSMrIyfaSXp2%?IJ2bf13uI{ zOE)Vf+C;Q@(P&H|P=eo(;yL>RlU(p4@h5Voc1NPM%L^_2EY~J1GE;g=C76W^QTx}$ z!`GZNcM#hq&19y-&+f0t5$Rd!mbpcmtGq}<+RSYfm3gg{xl0IL#k=H~9h_G9JshmI zipOtYb&Srw*Xk}Bqi#NEm5$%U>Z(}pqs0dww|cW!^{W-Jeu5TzAGJ!yOK+-+Ne2Jp zHF3M*^+OyW1CZIs0b%_D3y&CnBwNLO?(I|o_u-84`1R3lxX zCX8Gv$SO0}s)K6iQ|y+WjTU!!N33G+W!3k)#J4n@ViwD$Qur90Bs6X*_39){E>{{# zK^7srrj$*x!ea8M@(nS}Y@jG5J}ZVOTROumODcv`OK;pZ5EixCm%O&~bey&*SfhorXm%4IEs7dJ(I9Dnpn(&_zEp84(c-x&Z}FACW5*p%QYWatBp`O|1}=Wxw2^s%mo-kg3G)GICsy13V%rCw1PDrrAFWb2#oV&uW;`$q$Y&rdFe`4&;X5Z88O*q`1mY_S& zN|h8jOLcR*DpSy2%%tkO+LtB7$tVFKb^8E&T=g5#3oqcODiM%DuJrO|Au^UGN5H>( ztpwA{qPEJgoT^EY>)vcB-!{Gv@s(d-cZ|uc9MR(LmZO|g za_pRupIzmiHhAOIQ%%)6CMWJ0!P&-fusZCf@SAhEshQPfZiJ@lP+3}Xp$>Q1(X6L zCMC(o=(qM}9hi_ZwpWNjmgKgNMRD$rs)AxD81F3@j)ydoQ#rhtvzHt9UPb-$SnBj` z&}ds!5dAMk$y6e-eA1?2Ru@yX;XJBmm>_YONVtvRo4U~GF-s*x^WzvAC4G_~V3GOO zIUzRalM#*HD|JLC3^STzI_zpXGTfM*wz;jzu-_I&M7lS3v;|6-((5KBSt9rLiX_*K zjFq|}mFRn70j;8EmfU>ryl`G9y;PGeJZGsRR&d8(-#^;eIV{Bf&JRUe9DFr+oHDt; z1Np(u(`0u?CJF{6i}%?W;ZI#0Jf>^?Hq`5ab zOP=eK6}LmgDh?9|8Qv$low3&v<)MAt7$PL}79&sR&HNiNSn}hwgM>eJPK;K`(U%X4 z9Jf@lLPEU@=EXY!(qeZH(0rJv35{7iLHELV=@an*erz7iYk{zRe6yQSXxe4US%MX7-fP&jIlz$fez@sJtwWtA$L;I8zLO(ji>LlAh$0iV%)dxFMMmB;2HGz&Q@JBgV> z=Oa;MG>XdoG3HGcm54z`(U5Ky3eY`M*x?R*@7ZA8VW(WsenyWH2 zc%z6G#t_1I9HvRWKbx(^d9?iU#|MLe4UX;(z8(%nUl_J&R{$!c+SN^q z2Fv}Cu^HN5D7P=!2tu3XyJ)eMUhRrc@V~#RyB2a$q{n};ye zEfW&XG*Fb<+r==guyi*SRcNRVma!Jh1>80Rmg}ASS;4CmzA+M$pJLZ>I;2BZ$tAZ( YeAjo~MvJ&_eSBTl|J%QDjjZ_p07BbRX8-^I literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35cba3baebe67f8a267e62da4f72dba266db2079 GIT binary patch literal 4570 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 E1IY{+jQ{`u literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df701e8a348c177be1a48f325115d11114e8a310 GIT binary patch literal 7272 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..096199f26e115325cbd188c16088d2afd4789ef3 GIT binary patch literal 6641 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 KTHCGv=HCIj(&1?U literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cca05315b2016cd62490a358023d3ee9393b9637 GIT binary patch literal 1568 zcmZ8hOK%%D5GJ`#tsXJb)P{Q~SfB^%U>nV)fl(9%k_Jc-I6&Pbh_HaL7HMm3YPlgP z88%jzK7K_JKtA?A^q26`Lr?w-Y8!V**@aUsb~xW~IOM!2yWI@IxbAL^{)iF!(}BAq z0`Lv|dIp3ch6Ng|W<0A| zAY&~rZGj|XZIHBY^qi!_x*+K=e1Q7BD>xhN_pwc1)TWeGA+9h;K#;tCw*TbC>jN81 zm9VkmW~!=@Tf7~P58;0dzotMKZqN*?n4tsIpaoz?E(r@Z(E?wBtRL<#@tz7mRrynh zjdU$aVtb|T z9CMx5WxYErE5jAIusb!S(7SMNy;Gmt-Z3{r07E?*^9gshH6#S3IK&UI>HurQx-jDp zydxlXTHd=IU<^9J3*u?epi6v-=g5R7(IRFT=46q2DVgKOg_c~5GYaFetY%ypT2OZc zH4?a^Qt&RX0tCh1-2ztorq+pyDhgyoM0j6SfT+Fz)^>!)^XDju(P)6@~ z@iOuT`z=ePR$b>$T1ho=2igQoc_xMsi1N@zuv2rJ06dXpWfR5UPPsO=kv=10r-PBx(abw^>O?im{nz5V%_}?G18!4 zp+epTKj9y-!6#(lW1B~FJSX!2C~k=Qv>_}!CF(O4%}LcWq1s|`LpBhg#6&D{R^E{t z8}TA(NE2*8j^+XA<_*!gNgFtWrKb_#fI+*k3@kdny@^cgB%2|Rpgn#eu-d!9ZFbM$ zdC&xq)wPSQ|7G>RT&_~>VdNtU%Zi1Iw~qED{)R;58Y%RVy7uotn}E0UDK^f z8oI=N+Y)kAh_QsMpbL`c7mq4gZF`|thuV3jX`wiEJM^@!rE--aD{982rnM-{5mdk) zy$awKzT1{~*SFr4tL!V67RYhp?nw4__xo*|Y2#|@tTbbF-|hMch)vx^U6U%e#b&Px zG3DPXC6)Tv2|BR;@V0VnAb4eCZB$tu+isypWjPewKws*9=!?nXp^YnUz?oHrxqiG` zTwu@DmNWSYEa^u;!jRzjIwRrx^{_)?65@;y0u6k<76QBm@IDL3KUqlr?nLCTUQCvq zG$d*ZHut;go;%}nApW}01v|b8yqmTMCpyt>AH?RohU+UACmWBX>!X$P0XXL03t#5m l_?_PHj`#*iznVxk75r=W%4rwN6kZ$mb#RBQ2lwOk>|c_>i?RR! literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5101818bfa9db41d8ae8a7d79ecbd6f979074f84 GIT binary patch literal 3263 zcmaJ@-BRSn6;^8`%`m{g{!w;fSK8~i*m1$&*h$6ZvYl*L)^QnQY9Zz96pmI*_b^&C zlG5D+3xTRskz6Ku1-Q&BK)(kVS#8OG>)9RmdzVn@PI-8xXJGd@q zA9c=V9p_&pOkN&@U*ggKz)LuSB~H8ivNp4_+ji}@(yrLA*Y@yr6Tcs{gMPJLWsY>t zYjWy>wd>M7pB5FgW`rkayRPs>@F%a`7)n)9gETjkrbHdmJfx}&Hbi@Vxs$mKlh>_>Z2@96hG!}I7Do1Y#;$v}Q?)IgqeqeRPQ5h!T}D(%q9la~)+ z6_37;mvLS);~F4Gt+UF01=_gB>1t1Q_BD^Y9Q(F*BQ3*R$!`3LN2#!VL$M#3POnw3 zb6nfKSo0nRBvSLuwN3uh4}QiwSwBzWC^h^bR%Q?-T&8GcXHQt7yt5wf?py~ckMor< zPK{ImbY)=TM6V2W!GuIAWh?RFC3&os_+2)4T8wU>%On1@p%o$3OX&0L{Z}y zCfJ#4(d%DFPsu15p$CApG`Hb(8#=s$xkd_p7@Ho?kMd|yk6c;|+>O70Dk2xgZK!paL6W{s~0ihy{{c!o}E{0th#IdgK~urmkdv*TYq zv&7@uAR{s8P%bLThY0gH)v=H~ny_PuKPAfY%=Dx>jJ0evU5mNh`&JX)xZ$uX&3`n~ ze8yFCH#H}B*6>)(yJ!&U&s|e_=?Qk>o;t_e_$NpYqVgB_Z*!;Ygq;T$&Uy91`POkA z;dzedoK+a4E$1hWe&>)ehwkTizQzA7{5Q3u4@bS!bLcev<3B%>k>@wL26`T^ zdEaG?N}WBroN)u@UaB9U^BVgq=%BQ3eYlARvG3G@*Vw>O4Fi7)_X2(qNM$F^6X&}J zr_5B&y%To9PTdn1n()`f8L1buK$`H%4YOy~yyxo=k6_A0b%Cje3yhnMUxNjPFVt>Iboo zcN2J2Wqp1XL6Zq}iN6@T_yz9|z#Sq}6sIK@vLwk4;cL4dVgE^~Cgtz%D>eKxZtF@p z`mqpkS)h`mC7xtpFh7hGrBI?{Nj?%r{KI6V-I9eH$A4YDBI}T+i({=9xsWEzeLOIljptCq23nTJIMX0r1__ll&zBTb_GqAKP z0vNU@RZ$(9R=gX2xv{$bnJ^o^CD}1*0#oBKR-dVbBVvjv9W_@l=Z z1x^Rg)kP`ps=|K&VVL45(N&E1(!ZcED0>468l*j2`_HQsAhv$}v*bP;`7q6vORcUS zJX+?JdC27}q$UlA*o;odqnMTiu}6V^OnCtrEZd7aggjNSiPCFhNJtcBc#wREpr8^k zj0;QA>;9zJ7zM$Q(YMsiVY2(-_bA`2sXG8i-Nmb@iWo?z6sBA=hH_H+krAt?ckE=7MqEsF@ z((Kj@)q2|W%JNL?D{C|iXX9~q+y$n(~i+l)Yy-k0rbnZk6Qgk3FJTiFVNI@q9 zoHB7pqWWT^$l`0YxYdr@r*QWmk)IRd`XOF5r^d>Ap4DBC+;rLS8@0yNg5Q{HynVOv EKg`UIJpcdz literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55421ee2b17d52e09a80f44952f0045e6ccd706e GIT binary patch literal 4388 zcma)9-E!N;6~-<=kfNv`OS1eM2kA7n*;aY-ZB_Rd@ zb{CW)h|F}Xyg+-K$qaRwo4!R}0=J!BbOG{?@54h?&voJbGuv8T6hty>n*GB6{b=0(#Gx-m|9HM(?6Hhu-tzytIw% z3*v&2?TCxw5=JhH%h++yn`CI=Ib~{#yx7CT7Nf1Zc+lrO9 z7pqr6wC(K$$&RekJLKotyhcLd~RbB-yrb~h|i|;&Y`GmDu3UVO5>!8VkvX;lV`S0R5st-kPoYkzdp#%`S~(mqt>H19=&fKUnG=){6-f0MTof!%eua9Ca0a#l9^{0GWNnju?%1Z834d>NxwQD$@E|U3n9%oO8g)K4&H^8A-w!ROYME85wir^HKh>p_&Xhk zUa;jwF>*uPiNpa_|ILKi&um#uV3tV+lwoumxI%{EwVN4h8^q*~^O%)Q+|e>2 z1gza<%q*vZ-cp@2$yk%^bR$HAg z36PQB1&06_FrHoU4tgoS;TaRBx8EuF-~-h&&NhHR!UAO&a-acZkP>;Dw9E5?9m+_} z(#f5#;viBKMp@Y`%k5HBWYRn>6m@442}frW!~CGtJS~_Sz8j{a9?=Z?z}PpO=%Z?{r!&pC6AEKJC4J$g zMZ>5oUbT=p)T0P&S?N!5-^629dD@ARpe4C3ftIyc7!Z8AXPp_ zs>U9|?iNN?aYm%-99n&3z9WX5R!D<9r^G4J7v!K8>>mO$+T(qYD3Je?#ECr+353j$6!M9njRx4U0u z7X7fMU;u6EApqG;H}40#GCEaez}}{087oAnl3RL_R|~n}|6l)1y*#;gJ-w3SA<$kc zfWP6Xu?ZQgrRRoq&DaQ{tC%OG0$hX&vXD@Hn%OPCo!KZG6cJEXe&L6m+_i|YKTua? zP?j`|yUwEPRIsTT^fhrCcOktn{NS=hQ(Ew2Gp=aiSWFQi5uKfK6ATS!p-!OMf%m~I z!tTR4s0ge>j(Wj3pbLj!&h^CY7lm_r2EIHB&&*wQ{r`Y+pXNMoK(2}3_k4x=9$^FC z3n`AMx;Hi9ux0~Oj2UoHF`&xw^o~hjN^W%!SxJma68Ss~J%4-&FyJTGP-~(l_zIh% z$N+!xR+4m~~=fqs?_$+xBkPZhEWUt=g^X$ELg`y{V3l@~R`>mtf#~ z12=hb6z&5Z5jGrl<+~Yyw`#Ws0tW{g%vphi+e-!$KyX`0jY!P}kD0-{{)oF%#!+8~@%FYdP*{Dzyd-En-#6{fg-|^O2EP zH0RBX;pazf5-I-^~6O D4YI00 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/_log.py b/env/Lib/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> 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/env/Lib/site-packages/pip/_internal/utils/appdirs.py b/env/Lib/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +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 +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/env/Lib/site-packages/pip/_internal/utils/compat.py b/env/Lib/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..3f4d300 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py b/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..b6ed9a7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_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/env/Lib/site-packages/pip/_internal/utils/datetime.py b/env/Lib/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/deprecation.py b/env/Lib/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..72bd6f2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +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 # NOTE: tests patch this name. + +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], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + 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 an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported.", + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None, + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py b/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..0e8e5e1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +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.utils.urls import path_to_url +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_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +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/env/Lib/site-packages/pip/_internal/utils/distutils_args.py b/env/Lib/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 0000000..e4aa5b8 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/egg_link.py b/env/Lib/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..9e0da8d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,75 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import re +import sys +from typing import Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_name(raw_name: str) -> str: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + """ + return re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link" + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_name = _egg_link_name(raw_name) + for path_item in sys.path: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> 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) + + egg_link_name = _egg_link_name(raw_name) + for site in sites: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/env/Lib/site-packages/pip/_internal/utils/encoding.py b/env/Lib/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..1c73f6c --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/entrypoints.py b/env/Lib/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1504a12 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/filesystem.py b/env/Lib/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..b7e6191 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/utils/filetypes.py b/env/Lib/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: 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/env/Lib/site-packages/pip/_internal/utils/glibc.py b/env/Lib/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..7bd3c20 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +# 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() -> 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() -> 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() -> 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() -> 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/env/Lib/site-packages/pip/_internal/utils/hashes.py b/env/Lib/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..82eb035 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,144 @@ +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: Dict[str, List[str]] = None) -> 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: "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) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: 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: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: 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: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> 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) -> 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: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py b/env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 0000000..276aa79 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,35 @@ +"""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() -> 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/env/Lib/site-packages/pip/_internal/utils/logging.py b/env/Lib/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..6e001c5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,343 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from logging import Filter +from typing import IO, Any, ClassVar, Iterator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderResult, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.exceptions import DiagnosticPipError +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 + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> 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() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> 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: str, levelno: 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: 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 + + +@dataclass +class IndentedRenderable: + renderable: ConsoleRenderable + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + if record.msg == "[present-diagnostic] %s" and len(record.args) == 1: + diagnostic_error: DiagnosticPipError = record.args[0] # type: ignore[index] + assert isinstance(diagnostic_error, DiagnosticPipError) + + renderable: ConsoleRenderable = IndentedRenderable( + diagnostic_error, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + 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.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> IO[Any]: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: 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: 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: int, no_color: bool, user_log_file: 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.RichPipStreamHandler", + "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"], + "stream": log_streams["stderr"], + "no_color": no_color, + "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/env/Lib/site-packages/pip/_internal/utils/misc.py b/env/Lib/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..b07e56f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,629 @@ +# 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, + BinaryIO, + Callable, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +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 +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +__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() -> 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: 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: str) -> 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() -> 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: str, ignore_errors: bool = False) -> None: + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func: Callable[..., Any], path: str, exc_info: 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: 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: str, ext: str = ".bak") -> 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: str, options: 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: 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: str, options: 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: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: 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: 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: 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: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE) -> 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: str, resolve_symlinks: bool = True) -> 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: 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: str, new: 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: 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 write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO = None + + @classmethod + def from_stream(cls, orig_stream: 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: 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() -> 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() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential: Any, **named: 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: str, port: 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: str, scheme: str = "https") -> 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: 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: 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: Optional[str] = None + 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: 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: str, transform_netloc: 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: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url(url: 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: 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: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return "".format(str(self)) + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: 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: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: 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() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> 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() -> bool: + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +def pairwise(iterable: 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: Callable[[T], bool], + iterable: Iterable[T], +) -> 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/env/Lib/site-packages/pip/_internal/utils/models.py b/env/Lib/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..b6bb21a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""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: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: 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/env/Lib/site-packages/pip/_internal/utils/packaging.py b/env/Lib/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..b9f6af4 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: 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 + + +@functools.lru_cache(maxsize=512) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py b/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..f460c40 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,195 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Sequence[str] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> 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: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> 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: str, + global_options: Sequence[str], +) -> 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: str, + global_options: Sequence[str], + install_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> 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: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> 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: str, + global_options: Sequence[str], + install_options: Sequence[str], + record_filename: str, + root: Optional[str], + prefix: Optional[str], + header_dir: Optional[str], + home: Optional[str], + use_user_site: bool, + no_user_config: bool, + pycompile: bool, +) -> 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/env/Lib/site-packages/pip/_internal/utils/subprocess.py b/env/Lib/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..b5b7624 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + Mapping, + Optional, + Union, +) + +from pip._vendor.rich.markup import escape + +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 + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: 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: 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: 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 call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> 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 + + 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: str = proc.stdout.readline() + 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": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("[present-diagnostic] %s", error) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + 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: 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: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/env/Lib/site-packages/pip/_internal/utils/temp_dir.py b/env/Lib/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..442679a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,246 @@ +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: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> 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) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> 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: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ): + 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) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: 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: 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) -> 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: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: 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: 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/env/Lib/site-packages/pip/_internal/utils/unpacking.py b/env/Lib/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..5f63f97 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,258 @@ +"""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() -> 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: 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: 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: str, target: 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: 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: 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: str, location: str, flatten: bool = True) -> 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: str, location: 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: str, + location: str, + content_type: Optional[str] = None, +) -> 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/env/Lib/site-packages/pip/_internal/utils/urls.py b/env/Lib/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..6ba2e04 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path: 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: 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/env/Lib/site-packages/pip/_internal/utils/virtualenv.py b/env/Lib/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..c926db4 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +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() -> 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() -> 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() -> 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() -> 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() -> 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() -> 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() -> 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/env/Lib/site-packages/pip/_internal/utils/wheel.py b/env/Lib/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..e5e3f34 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,136 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: 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: ZipFile, name: 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: ZipFile, path: 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: ZipFile, dist_info_dir: 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: 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: Tuple[int, ...], name: 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/env/Lib/site-packages/pip/_internal/vcs/__init__.py b/env/Lib/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58f804d7742dfaa0bf8c8caa7623834f3cfb3689 GIT binary patch literal 490 zcmZWm&r8EF6i(Nz>n1&kFwnz}?y&ACh=>Or9%Kgnm-l_V7ha;0WQtt;B&WsW0HIHx{12z0E4Q_W5|sf*S+M6p$6?3AJrDRu zL|G)p*;vF`EGF4ROtWd=Dj(1y{Bm8;W-+pd_f#lDH_EJ4Bg-2A1^>h+!dWLqOydT) zoe5G=+!h)GeQ6j_L8aL{p%WJec2=`G#Y`FslJL}t>6W|`0ycDxJ?h$ia78HsG z7~%G$Z|Y{-QqW9EJMX)lRVZmdaqzDPp@*S|k%!2^2ZF?(J$&C@pXaX%s{C1T)t)Wa zoaid2vd!<!3SNo5RhjHN7 GJop6~@syPS literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2491d1366dddfbb753b239cde22277a7e475ae0 GIT binary patch literal 3317 zcmZ`*TW=$`6&}uTMk860Wm~@PHdWeW6Q#A?7A>||6hYG6I4!Vnfn-~t0~dqwkdmgJ zi%e2>Jdj@M1=5%Nf}()^xPOVSeJJ)X1dD9X;aI-xZbu+>$a6@Z%Xbc0v|0@dzSpgf zZDi?ld-xV@J~^5}r)CkIcH!vmQpzCDiO zqiD$G!8jT3hDolt03hxH5OxoZr90y@y)@)1Jd7j{LAx*#L)n8fB&y@vz0GUz$*#3aAYUSCtm(}7q+xpnL|u-n8H#%1$u z=^%}U+K)44cDV_%=%Q?Wz*Rg7bAI{(4CQ_3e1{U-{5(Qm`JP97;*qx9C2dl6u3~n* zEXGnf|B%LJ;(!WGt-o7}UAt4pNt!~A9E(1z={rU_@jlQ-*S`BsH6I}VuCCgfj9H}kBVb8%P=_qvC|vPk%!>Jk zGR{?#J3uJw+`1rBa!C%H8JXELfHOk-l89w6gsfXL-~vdUfn(fTdQdtZ?e3NoO9fmR zuAGbkUR}&KNUSO&b3g@Decg~M5(+&x>QjhEDl1T7UC{N3rP#m|E2P#?m4k70#%U! z6sPVDeY|$uR<(bSer;d$;Pky`FC4ufN5yF<6@&DKf%y-MJUtVifJomiyD=63O#Wif zt7`hAUb#4q1kcs=gxEr9-yjG4Jx&vqCOMZ77$uUi*abGwIIp{5B13c#hG~oiuMlSf ztDL}FweN{vApL7xLcz6CQ`}3FZ#2aPZ^EyQK^Nvy$Jp<|I+NNv)A3Ef+7Pr3 zX%hRD{hE5^>aFnIti2O1gy?m+dNBC^;bQJ4=DoMCU8v}JvG+{;1{S=04c|QXe+v_k zWjD6@Ae!Jq<4uE_l|dEr&#+9kp`-S7<$Bfh%9T3?RI-}pQO09beEuPg#o1sE6VJT0 z?DE0q>1lK(djR%H#(QeSdvN`rHnPWx{3F%NBB)<`Mz^`zreu8qo4l##1_O%@uE(-d8O;yQvG|{4@1;C40R(6vw}@hq?=)gyHp&3XX+YD;1xa+D}Ii13nt~Ol>%KP z&}pKM9p=9H47(@LX?j=`sX&D3)>Wy9d7944g{h0bLTOVtFlx)tB!=F%D5-vSV}sZZ zTtct!G`sP`*2g{ zxo9HQ!sF|J>!;=&Ail)OA7h8+X-I`3y!pAf1uWxCbB+7It6=dd0$HL*eXC14b`#S1 MK56(Jr~UQ+0MvvwZ~y=R literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d66baaf6800be6bd21ec01e88aade7d2802da457 GIT binary patch literal 12520 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6272961b010a4c9eaf62af4226d116b6d1e7e88 GIT binary patch literal 5036 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d0cb9aec9700693b7e27b66541a451b132ef7cf GIT binary patch literal 8424 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 Kk@2JA#s2{!g?~!` literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..214b85d79cf80e6d23aea8ceb7d8d91f2148173a GIT binary patch literal 21119 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/bazaar.py b/env/Lib/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 0000000..a7b16e2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,101 @@ +import logging +from typing import List, Optional, Tuple + +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 ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command("branch", flag, rev_options.to_args(), url, dest) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: 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: 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: 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: 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: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/env/Lib/site-packages/pip/_internal/vcs/git.py b/env/Lib/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..8d1d499 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +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: 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: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: 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"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return tuple(int(c) for c in match.groups()) + + @classmethod + def get_current_branch(cls, location: 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: str, rev: 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: str, rev: 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: str, url: HiddenText, rev_options: 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: str, name: 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: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, 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) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + 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: str, url: HiddenText, rev_options: 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: str, url: HiddenText, rev_options: 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: 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: 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: str, rev: 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: str, rev: Optional[str] = None) -> 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: 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: 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: 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: 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: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/env/Lib/site-packages/pip/_internal/vcs/mercurial.py b/env/Lib/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..2a005e0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +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: str) -> List[str]: + return [rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: 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: str, url: HiddenText, rev_options: 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: 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: 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: 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: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: 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: 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/env/Lib/site-packages/pip/_internal/vcs/subversion.py b/env/Lib/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..89c8754 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +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: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: 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: str, scheme: 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: 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: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: 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: 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: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: bool = None) -> 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: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> 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) -> 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) -> 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: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: 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: str, url: HiddenText, rev_options: 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/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py b/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..02bbf68 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + 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, + format_command_args, + make_command, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: 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: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> 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: str, repo_root: 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["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> 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: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: 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) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: 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: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: 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: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: 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: 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: 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: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: 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: 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: 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: str, project_name: 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: 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: str, dest: 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: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> 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: 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: str, scheme: 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: 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: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: 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: Optional[HiddenText] = None + 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: 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: str, url2: 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: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> 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. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: 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: str, name: 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: str, url: HiddenText, verbosity: int) -> 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. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + 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 ", ("i", "w", "b")) # type: ignore + + 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, verbosity=verbosity) + 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, verbosity=verbosity) + 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: str, url: HiddenText, verbosity: int) -> 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. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: 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: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> 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) + if command_desc is None: + command_desc = format_command_args(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: 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: 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/env/Lib/site-packages/pip/_internal/wheel_builder.py b/env/Lib/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..d066344 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,377 @@ +"""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 FilesystemWheel, 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_editable import build_wheel_editable +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: 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: InstallRequirement, + need_wheel: bool, + check_binary_allowed: BinaryAllowedPredicate, +) -> 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 not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable() + + 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: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True, check_binary_allowed=_always_true) + + +def should_build_for_install_command( + req: InstallRequirement, + check_binary_allowed: BinaryAllowedPredicate, +) -> bool: + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +def _should_cache( + req: InstallRequirement, +) -> 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: InstallRequirement, + wheel_cache: WheelCache, +) -> 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(_: Any) -> bool: + return True + + +def _verify_one(req: InstallRequirement, wheel_path: 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(FilesystemWheel(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: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + 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, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> 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 + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + 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: InstallRequirement, global_options: 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, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> 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: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + 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/env/Lib/site-packages/pip/_vendor/__init__.py b/env/Lib/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..3843cb0 --- /dev/null +++ b/env/Lib/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("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("platformdirs") + 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/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fbf50129681a984a8a358960a259bbd786af5fe9 GIT binary patch literal 2890 zcmbuBTW{1x6vusA+w1H?fN%)~YVIr)2TD^~gsKV>R3yYhQH5BoWO+T4tdp_FotX`+ zNuJU^R_aGc9{WxD8Ag5U6Q7_`U)nR?$u?@64Qjpe{KhkXAJ65?IZNB^z<}$I_Kg%B zH;iA^!~V;KhcDsgfn^xT=o-jG7BO?HYniHU6T55Ibh?e2Zr4Rl*Tao9f2UcO0iM}4 zcg=1KHIVzA(QRYzN0Zsu-m&ZcBe;dUU2E6G?wWtvP$jaF{k`?jz-{Djo2Ft@GtivT zY-zSNk7yp%oYg$0d0g{^=A7n9%~P7EHP2|yYo68oK=YjDdCd!&A8Ll07d0&# zc~$e8=5@^*njOuXnzuAR(!8x1X)b8q(Y&kqvF1I^Pc#=bKh?ai`I+YDipYLZ-<=25 zFF~1=QM`c*L|K^ea0M`a%8Jzx;Szdqk!F~ObR`6FC}>zR3>py@7$YScHwR;NNQ;ou z9E*YK!fym-MM9z=c#;vYk`+8dSR0#snGfiYpsR(WK8Q844U{c}bag{v^?L=U>V@&z z5bm0{Y0QslJ~TGX9UnQUv1|3LEo;jb&01m28=Ll?cH4#>fww#E^U8aBXDfPpcZ;d< z!N?l~7Me&idRI3D(uMuW6CwRLE|MI_u?%88E2w*`g!U7{rAuh4IP*dPf^{4jjQf;f*&aIqM)h~3(@!{-&HyLqCxgww=zf2+^q}{e zvi068O6bP@+fPWs*L%3w=snB&J)Q}CyG+vcWEJxsILLx_vIQ7#k%>5t%8~T$lmNS@WF9PC;|kxEZ}35ZOwTbb!G}1fxWHDP|&D$)umc7+8`g z(nA>+Bz)RF_u*~-bYnZ zN~()fm4d+%-#k}MRgo$(z4`96NKv&EE>9t4&7lLz$_KEVD z>gp6TuxEKvz=3DeJV6_nwuo>dO7MDIT{!q_Ly?iHGrd3B=fzXbgfbQF4eRShg1Eo)Q*vIayvU*IB1Gcl44L35HxZyf0E zb&g6ejuB1A31np`h76JkgTIG{bW|3R9_0}I#6Vhz=)0`?h-i-@n@GzguaU&d+}W1|Nxr literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..745388980ed607342a3c96500b573717da75e903 GIT binary patch literal 38208 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 V?Af3B;qbqBwv;P90g?XW{|n@78QTB= literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4443d5e9887f2b9a36cf67e7978ffe5a0b6a466d GIT binary patch literal 27561 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0869e852b9c984cdb0c67c38141800e33d99b77f GIT binary patch literal 66573 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..8435d62 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.12.10" + +from .wrapper import CacheControl +from .adapter import CacheControlAdapter +from .controller import CacheController + +import logging +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..273d9e2e0b2942016e6334d83a054c470d19665f GIT binary patch literal 618 zcmYjO!EV$r5Vf<}Ch=w|f(yqS*+a7}7bJvGQ2~LplmlFdB3W+irdAv~vc0?Neognt z=WxxHQ-6UAOv)lkFCh#qjH;x;J~z%fr0DTp9PB1`?X6LnY&&Cp_DOqTuURE>LO!!bWYTAXx!cT}|5vW9X|rn3RtN1?`Wv(MnKHW0 zG;4+Hpn}WEZuZ{FDqAt@jNUyKK+dJn)>KVyY`u$4^RpNE+37vZ04;Ezjx7OyI_7UV z>%bhOkH={x>^-Q_<>I)HDCMT2v?r9ZHJGx16G}zPqyjjjbR(<-3qYc+WnCw%4M5#T z>|c3185lXV2F3007k#8mT}xf}NiF;eu&{kh>Co)(9OL{W(;Tk%v&*$o2l4~iC!l`V zet&uQs@xjel;4dqo0lga6mv}}^rl?NtI|m?PGD>etA#5&*)74U=Eg3^qh3-fwe*zc e-EAMgZVg{6@n)Ew8y*UWz#&e96sI^2p5ea}y}Yvk literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e32900399f0bd648d8259dd00ba40051324391d2 GIT binary patch literal 1556 zcmZ`(OK;mo5Z+xrMNzW*K;J0T76r^htYZKp2%6e`05yc7P70I|K(O3}M47KFR}La5 zC+C{~ARqIW_S#ebLND&jl4_j*Sz?#p%sx2t&9|&aqkurW9UWzvL&#rf+-(*Z-$8G; zFmS?YL1KKff|e|16tPuUr5)P_+l5oQv1_nXc%>iv2D`P5O<+B}Fg<$jZ-{`*BC35Uo~}i!TEHKirrA=Q)|HZV z@rb955)#~lvpiE~3JkZX7YpMaKaz`eDJu1ADqA5lJaOMB0L=CjdiymDitMOjE9-_* zqS(&9AurJ9YzcZexgf9UEOI5#Mzr4wbuO+%p*{RsUM;k9_QUs2e$t~0B}H2PoL0OL zQU@vLJ%-S{W#@iPpAc|*WM z0E#Gj4dg?Kq2RAn0Rk}C?lD<8Tbj6AC|cyq9!HiQn$QxV(nYHS zAU#iud;>%bmSQdQR^{2oTPoF@Os5+kK?^AIB-TROIACDfyAW-g*Ohk4dR-|U^w}b( zhut^+_e4y4X(tA4x3JN$+YJYJ+HfIMf)jA!N8o6Y4Mqd%-uhNZfg)y8`58Fhpa?aB zAsLFk0HDYIfR6SAh`2B0$dX9B4nZ49+DlXi4T=)v8KE(6xXM60(OS+?i=#?U+lkw z(Z!A>HU(vn1!(;RQ#RhaEnPV~cgt2DbiXS!cn0XXq4HZ5aC+U}1Hf#LBWt$tPEn5h ztIcRut1eYOIXQ}kCMrX#wjgl%IfP+^C_e_I$6XzzXq&ofh4%W3t}U59>t}hgcRG#C zD+Lm>F@O0fo?zqNw>h%QG_Q_e+Em%4E)6Z$dfysjrJ0Oyqn{+WDoLaVW^^bA=pDix zJMQn8kzqW!<2g3r_NqJX^=5P%fBDX3W{=Tz{LQ-;bvGHb-Tz%6!><0Qla4VIXUFG0 vfhsKpB!EAXJA=`?|Dde-x)2Xh5iM@@?U2C(QV*GL`K})ZuK!^`?c09=F4Bc1 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f917930a1a916eaf0e2bc1bfca5813b8de6193d GIT binary patch literal 3132 zcmai0TW=e=6&`Xfni*Z}I8K^uF4gWn?5f2oDYig?b{iz?*x44lLJ%w1u3%s~7O80D z(TtX)>{=MV)B(~yq)+_;3feySFY&cc`xDxSy612t+3gxw3OpL}kcWpnA3vVFUJorO z=k<^KXV)$3pV+uu9B4d-Dt`}xS&XDsuly%HV%oGv;h(1V*y%aMVm5P9ckK1Naiv!= zZ8!DDK`$`hUK)<8y(+PuS**hR*B0}+b87c$jO<#i;5%5w>a>Wie$nkdf5PI4;^I33 zoh_=@w&MPfZ{?X1d75&e?>ygr@zs;gcBdP?*naw(7u#FiXt(>M`*L@C7ii1zK)E*_vqwEQGdazN@VE+V54~SdP{6VW;cp(8X>RJAGusy4rsJva8+a zPr6%QXz%Ivm)l*~VZVZoEegiWg}Me+{tkq)6e+AzI-*4-u?qk1auO6lVU3)E77n9tZP5740zYjGhW%{23+G?$qsI|f z@hhoA$wd;U$&8Cupj|nI^AtX~qWvgJvP4CZ@UZEcSvnZ+tB|h7eW3dh%pcfK9ZdNymM?&ILN_69*z=oj3&7ddlRN{vF!6{tGtL>BDhFllm8DJ>pcxKCK90=fR=vc5SAt4x!s+RTQL$*@uy$r? zvaemhYA$qRf10GID;Lz2A&(gsQhU=0ixt<`A<`_t&BST6PztwH#bkyoa{#qPU0RBM=`$l{h_gLqf?qX#j@kxkJ~sXOv0+RF$^I=84W0Y%0C{gT<0`OSr2 zzS)a4`Vp*mTKJ<|AkpvJ(ElFn2dVAO{B98-)C;@tqk9FCaAo$76`DRrC>Uff(6@iw z9LEPq_UZ!e&0I9661xzmCZg?dWuZGvWb-IV(!I(DGtWa82AdVrXnj%PIARF z1q_-VuPl@pfxA??u%Utp^V&Hv7^liiOQF%3@EXhGm55^dB3gJ}lONuEkw znZyFarz_?pI1``Z2v;3XIJ}NunTM?ljSIdIAL5A3Bs+w66Zi#yuzUbD%?}oI5luy^ zZ4l<|(;fpSAqlz8Vl6rZCoJo7XBGCYHh{2Ho6 zWf(MwXV*w*d#(e)@g0ZMJfC>9VXqSkEeFCz&%OV6o=0lbfl=Q1hO=QeNDXEJBYp70 z;rt#{ZCDzsMEXOJ&Iv+OQ3crtTyE1ske-oF%P9}THITe?q7Py2|C8u5=zD{PF{ud2 z2ASQy$~|MM<#oCpC}Ic3w&+d=av8{9vUtp+NQY50&e;_5lt|a2=-X+WmKyOGhMPCv zP__xIz;$(fk!19FnnDI-sNDz?0dx3x5im=T*yUS5?hXZ_FMo}HHEz(Gjq}alnkNR{ zv_~*X{0hbUAbR&88)+}Hk@n)rk?ln$A_WqF!M;hU44%sz%H(3z0VKaiW%66X8lAc1 eO6bOuA9Wc}|ASfb}s+L8K zl-(upY015(-rJ-9C0%#gxwjtLy+`?nkhmBH(vRd5-}fHB&r+R^PoRD1+=*W?LjJ)? zy>XcQ2;F=OgCGMUsBls`b_Nb5zYxI$KPQ4qcE$!A<_+P(+?5>W4bgl;y58xb|NAo; z#8C{RI(#nUBDnwSv3W{f1M#4AIkqnY- ze=NsJp9CU_i$rCSKI!@Y0y@&AB|lK{D8@;>L1I-BJuoC0P)NkVM9#^8314v0IHvYnlWHbjj}O~(upja@~=G6(pcEl(8g_MWN{UpF>XB|tbep#7vgCT55RiV4t9l1 zWg)Mx&fZxkQ*Ffvf7#GpreiQ2L7ps9!h^fCO6fw7Mw}`m_rSqm$v8dTUPrNewkq9b z>4jkyjb#{?ei)9Gn51a8!|=~ZlvX>s14rmx9IoMDp|1m43u~s4k7yVyutz+{XC7-a zyZ&+Vehtnm^7_IN3`h(51M(6euW#u~YxJcReIJ5OEPeZz?gMj1{+dr=K>p51NM|%} zCTKaU5_XwJ*OI3ouab+Xh`Np~XxU1#qzF-q7cUShX7|D`FalnQN4Mzd?g~$D>2L`b zI$K;wsu_7sUIQvY-Z+aZh2S?}rz-dc^4N_p!NcAv1nsPYf)Fn00FSWo?k(cIyh<@H zeeKNX%t`1QO35EUDGtvWqn2FX5VQ9J*711?yiE*TSIPMY{QEFiV9wiohh5+P52(UdH2?qr literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1763b17c4589c70378326f6135dc6d5e72e2977f GIT binary patch literal 732 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 At^fc4 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6906e313a1e86a162e95c8f0cae42a5774eb2799 GIT binary patch literal 2768 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 Ol$QLZ*OtyMpZzZl3_xfA literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0832992d36d1106ab2a47002e7543a81d42eb844 GIT binary patch literal 4227 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 H=dJ$(aCWL{ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bcfb0701ace9d0316396d680fb829b5c3c884933 GIT binary patch literal 663 zcmY*XyKdVs6eX#5ET!pV$`?dKs--}IpeR~6=ui||nx%#SgAs{Xup|m3?VtudwQK*O z9s5gMGvyD8EbXQ20PZF3!MP9eJ|vN4M+oF^c2Lkzd5!!wK> zCoSo`nTJv0B|hl>u!sdL{ElZn^FE_IzQ=Gi$M*S@)(bury_TYV&*-4J1b1@T)Ork+ zS9J`jkCFg!_7qfo1TdJP6_Sxg-%yVY-eMCDsm9yTga#X8JmZ_dL=683x3NJ#2_q){ zMKBt<_sF3szsv(Wsa->JuIY`kM~cgaw#|l1n=JTBHcB_OJ*jv7wp`BZmMUeRj<@J_ z%jX@}3&GSTT4+676vZZXL;=e^={6?`fDJma>UEx2UvYRK7$1)s z-ZLSKvFd)B;#SgO;PU10)uz*f&*FBjP63`xVod%!;X@jy*eCJ?!g*9)l}_?NW?+wl n%86s++%9Kq_W+)N&&F>$!B#DQ>wXIL0wDEMOoGE&$AA6-6`7r4 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..4266b5e --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,61 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +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/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..94c75e1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,137 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import types +import functools +import zlib + +from pip._vendor.requests.adapters import HTTPAdapter + +from .controller import CacheController, PERMANENT_REDIRECT_STATUSES +from .cache import DictCache +from .filewrapper import CallbackFileWrapper + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "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 int(response.status) in PERMANENT_REDIRECT_STATUSES: + 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/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..44e4309 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +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, expires=None): + 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, expires=None): + 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/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..44becd6 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from .file_cache import FileCache # noqa +from .redis_cache import RedisCache # noqa diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9a9a15dd2ab418d656ade3b3072edfaa5e5c1d8 GIT binary patch literal 269 zcmd1j<>g`kg8#f4$*X|$V-N=!FabFZKwK;XBvKes7;_kM8KW2(L2RZRrd;MIW+0n6 zm_d`}B_mLYCgUwmx6GVW=fvcUR3L{dC^aRs7|iq2WVywa29%3W21yoyjK0NP1d@k} zFat$aG8C}^DKPOX%*86EJijPACNe)Kzsy|MEhn)!J0>-+EXF4@DW*8HBvrQ{F*!Ri zJ+(NdAhSR}zAQB_CBH}?Y(a82KczG$)ehw3 MViq95!y>>403udLbN~PV literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af4158443234ffb8dd3717f3c0cda52bf4ef85b6 GIT binary patch literal 3343 zcmZWr&2JmW6`z^?UXc>5v~FY9$u?*k6OE-NXd1vxQ^%^68c@kXa;u0Cuvl@1BB|vr zJG+!bVhI$Hi(ZPRhu(UTa!b$s1NwK&H7ETCX@OdOZ#JYTdl&O|KHi(1_w{>|R;xaN z=c;&$3XxzCqiewou9 zQmYHLbj1<_L$J|plv|Q{thH3 zeL7_YgD*DYF=>)1%gr1VJ!A6Qdc~U0F_?Q(&)GOPadL9*6y$g@OBgM(Som`OUD=+-z=bHFuTU3?Dyj ze7wD<*vUb?s#u!g-0pU>v9+h1X1KBa<-sos~xAAsGG{|^kR`j1EH+WAm#Xpqr*(G4*!zK@4}w{ z{q$E4_fJxJw7-|e>G1~-HsdHe+84?3{#Nf`KkMbVB5 z&Oq`6_LS>|JGB#A?@HwRg)_AaT9D9z_#>fP7(l(k1nL(y&?OErShpLK^^GV=(mWVt z0$a#?GK|yqQ4l3Oz)si(4`)H19*Vpxqy!Z)`P?m7L;ay&{ml`G%_b)Q^n-<`(R}vg zVem8wQptscee|zjt6*-uV4RME!6?gvZgebeNaG1GOoCpLsoQKp4EW0G%xmg@FwxHdoqXCwJ0E-pPC3{#nF zL5X0aJm3-SJe6bRbW$mfg)B2lr;-D!y5r+MrB&;`GBXi(11{8jc+hTWoO;! zz4v~qY>~7POuVi*EP`SY?kUl@o&p-l>LI7$3 z)^l1gtXO|yuR}f;?2vwkOpToNjXoqm-#Vm)@de!`f5jAFjY|up>$d*CGUHyBORN>j z97cIpnfZ&m6_br>OfWcygD@s1MR&_7?ffY-ZLn`SWVs~+1(SUBKYn>+lBQVSkH~|JF{7w zIYEULlLw&8L->!p1w@%rL|om%^EJ|ZGaV&dhxJTj<4BC<2gu1f-B(lvTo}Sy2Db3UapbcjjJ zUS%C4Feyiz4gpuP(g7xdhx{eVVL2{|PJJU2`52}$+!Xv^+`%ddKByQq$p1I4mR~UT z){8}tfW(b3#A-PYLky3(N1%xGX?Azw=Iq?Kwxtd+b9`s!i892l?P8U7(ZGhrk;_Pa z0id08X%qD;Q}!&+}&dzVCbQS@(Kf0^?KfPVtTt@*ZEdM*uGm zVcL7}kVMjoOz4PGv{}U_Y{b0HD?SNE0VRJB8OZRA$WR4u`6!gp0ZBU_;5JEV6U%a5 z+EUlv&Yg1QM1j5YD7WfyUL30ePi_xD)grhLh9V;>$%siR*%=ve$z=d*Ap0_soihsY zVz~o5k?hJ{SUWP2Jy>HI0*-4<_a7xo+eTtrVbI3;7^X!@mUKxnV0l0;=nxPFg|6$A zHGx&tq3OVh3u1O)`S|?FZ{t&KPR7r5rRTrieOl%AWUT7>`0w(?*p^P+o#w?!ex&Sp zT2A+~xvHf$`-P{gYiD%TzSw<(=rZpaOkX!~mX&qsvaE-&5MP%rZd_6rZ2ZMlE~uL4 zl7O)!|B-XLq$_$rOavP#^9&k(q}&BFF>E#bM7{Qe+6QW2@bVr^A3C9n{#IzXIxMg} zHUn+^xDSiTT5`L)3B6=1UnmE#>)1J8k=x`A_ugPhUAW}u(TcpKaE@a^ZGd*xK&^5H zIW^JD6}3KXLfBES8eZ0}={fE4Dzgf5ByAdaLZ*+$!+BoKRMSzfrlnE#D#2@T<_1iQ z5(M-*P1yIJ(}XZz7ZC@mD=4@( z12c>gdwB&IZQvDoLjH~4K(#`S8RnRhm!X7Ar)=@ppQ@TFBM!9@MWu36)<+_*D&dZm zfP7m~)*=@&clirwz=3#Xl{hWkaaXKIkrca!x0wj=nnCPeBGrUG%n#tUSPOmL zr@^Pi-WD}~;4@~(5~pW|6xZk<_*-ITl@-{1sz4}Ws&xfCei5}6wNg?z4dgT+M^={y z2ScxTO51Y4UcD@B1PWJvhE1=3z^;GvuvW}tU^1%lB3Y4!mWtPGb_Yn0I;HiFpzk^bOMp;~mc2%s@PY`S&d_ p`VsyjgY{ozP;C80+82Wo`cHf*ZWI6BQn-(j`?^npgeCMQ{~v9DPFw&0 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..6cd1106 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,150 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import hashlib +import os +from textwrap import dedent + +from ..cache import BaseCache +from ..controller import CacheController + +try: + FileNotFoundError +except NameError: + # py2.X + FileNotFoundError = (IOError, OSError) + + +def _secure_open_write(filename, fmode): + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except (IOError, OSError): + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class FileCache(BaseCache): + + def __init__( + self, + directory, + forever=False, + filemode=0o0600, + dirmode=0o0700, + use_dir_lock=None, + lock_class=None, + ): + + if use_dir_lock is not None and lock_class is not None: + raise ValueError("Cannot use use_dir_lock and lock_class together") + + try: + from lockfile import LockFile + from lockfile.mkdirlockfile import MkdirLockFile + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + lockfile installed. You can install it via pip: + pip install lockfile + """ + ) + raise ImportError(notice) + + else: + if use_dir_lock: + lock_class = MkdirLockFile + + elif lock_class is None: + lock_class = LockFile + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x): + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name): + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key): + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set(self, key, value, expires=None): + name = self._fn(key) + + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(name), self.dirmode) + except (IOError, OSError): + pass + + with self.lock_class(name) as lock: + # Write our actual file + with _secure_open_write(lock.path, self.filemode) as fh: + fh.write(value) + + def delete(self, key): + name = self._fn(key) + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +def url_to_file_path(url, filecache): + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..720b507 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,37 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import division + +from datetime import datetime +from pip._vendor.cachecontrol.cache import BaseCache + + +class RedisCache(BaseCache): + + def __init__(self, conn): + self.conn = conn + + def get(self, key): + return self.conn.get(key) + + def set(self, key, value, expires=None): + if not expires: + self.conn.set(key, value) + else: + expires = expires - datetime.utcnow() + self.conn.setex(key, int(expires.total_seconds()), value) + + def delete(self, key): + self.conn.delete(key) + + def clear(self): + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self): + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py new file mode 100644 index 0000000..ccec937 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py @@ -0,0 +1,32 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +try: + from urllib.parse import urljoin +except ImportError: + from urlparse import urljoin + + +try: + import cPickle as pickle +except ImportError: + import pickle + +# Handle the case where the requests module has been patched to not have +# urllib3 bundled as part of its source. +try: + from pip._vendor.requests.packages.urllib3.response import HTTPResponse +except ImportError: + from pip._vendor.urllib3.response import HTTPResponse + +try: + from pip._vendor.requests.packages.urllib3.util import is_fp_closed +except ImportError: + from pip._vendor.urllib3.util import is_fp_closed + +# Replicate some six behaviour +try: + text_type = unicode +except NameError: + text_type = str diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..d7e7380 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,415 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +import logging +import re +import calendar +import time +from email.utils import parsedate_tz + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .cache import DictCache +from .serialize import Serializer + + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri): + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + groups = URI.match(uri).groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController(object): + """An interface to see if request should cached or not. + """ + + def __init__( + self, cache=None, cache_etags=True, serializer=None, status_codes=None + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri): + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri): + return cls._urlnorm(uri) + + def parse_cache_control(self, headers): + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def cached_request(self, request): + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Request allows serving from the cache, let's see if we find something + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return False + + # Check whether it can be deserialized + resp = self.serializer.loads(request, cache_data) + if not resp: + logger.warning("Cache entry deserialization failed, entry ignored") + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + date = calendar.timegm(parsedate_tz(headers["date"])) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + if "max-age" in resp_cc: + freshness_lifetime = resp_cc["max-age"] + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + if "max-age" in cc: + freshness_lifetime = cc["max-age"] + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + if "min-fresh" in cc: + min_fresh = cc["min-fresh"] + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > 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 "date" in response_headers: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + else: + date = 0 + + # 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: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug("etag object cached for {0} seconds".format(expires_time)) + logger.debug("Caching due to etag") + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self.cache.set(cache_url, self.serializer.dumps(request, response, b"")) + + # 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: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + # 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") + expires_time = cc["max-age"] + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {0} seconds".format( + expires_time + ) + ) + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body=body), + expires=expires_time, + ) + + 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/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..f5ed5f6 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,111 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from tempfile import NamedTemporaryFile +import mmap + + +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. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__(self, fp, callback): + self.__buf = NamedTemporaryFile("rb+", delete=True) + 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: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # 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 + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt=None): + data = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + 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/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..ebe4a96 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,139 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +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/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..b075df1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,186 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +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") + + +_default_body_read = object() + + +class Serializer(object): + def dumps(self, request, response, body=None): + response_headers = CaseInsensitiveDict(response.headers) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + 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/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..b6ee7f2 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,33 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +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/env/Lib/site-packages/pip/_vendor/certifi/__init__.py b/env/Lib/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..8db1a0e --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2021.10.08" diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__main__.py b/env/Lib/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e2a469684833e667d4ba7c6d7132ac3b0283ffa GIT binary patch literal 251 zcmYk0!Ait16h)J?N*O7*^b_o2+Rkhgk->$y5OL$m5(qVUYG|8RlGs82$Y09VmA~Ld zlbsjdd0Z}BE|%qrME#bhau@$sGXKS*xr*mbA{0?{BopoE#5zWaVqK=P2U6wVG{zMR zg+$}Qcoz=#uVCS0wQaYXdeheJ`F)j#T%rY=N^KSqj)YjiI*mq%Pht;KknnSReZlu= z2mXj7E@$hTv3COpv+z6p#GUrAo_jg;FW~sB=O)$|g|?Aky?)k>5ZY)jL_NQU;&MXu OHo`8Aba})vDcB#h>p(>S literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ca99fae5ed02308247875d1a89babe47b6c1185 GIT binary patch literal 430 zcmYk0K}*9h6vvZv?P76b;CB#v=ynuDL_s`=h~UXmD6x6YY;99sx(&VV?01+)zf!KA z{0d%XT88={|HuEImtUS93_{{+J2=X>u79@XfBDXwyJHe3l1N&Rr0uMrB}-W8B_1U} zHobR}_~6e1>B*k-W$@PK{-*D84t&P&5cYtr$(m9}xhKwfe=h2OIX=0KnB}>y8mJm$ z{naxdys|id4deJX4o#yGvIZ9rQ5%T7QM!sk%LPtrfd=eBt?F^Mgi2~0=YWlRQpg-1 zJtuZ}fzw6lzPM|r(FWZswEIHJ%t5+48+K{yjqP>n*Ql!IgW#}5weo#^d6KR)&eI27 z=;d*IRR}Xrp<1Rl>M=E{fw&g=Tui~FZmG#`smX4sNtTsDRarK!Uo1Z@wOkZ%MjhFV RoNzK?oQ)`_0UOdG`vKCddQkuX literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0face24c60941543bd16401e6c87090d0786c36 GIT binary patch literal 1525 zcmZuxL2uhO6ecO!mSx#V)2=HzU~`9Im=ATZQ;VV48o2HjtniH0Kv%;6p^8k*L>4uQ zPMRRyVa~PKUx<(WOT6y1AFxX=-J@i$=@uG%CMlBd``-H=RkIl&Xz!X|#kU#={plu` zn-7zR(DMs09E}mjoFsURzen8T^c-<2$if?Yr*{NCpcfThS>kb3RQ0F4%4_FnToc{` z{f^1~RHcXA&i_j``gEtt1XcFQ^6XX3 zCQ6dXNR_q|6_*3G*N!81Q#TW{w$g2B@^-9JBT|!hgTEjcXb?MlxnY<*gr0|B1R7%q z7~vRz5qpyjWj2gVJQciGLIhu8(DAI#SQ^a)V>V!{gb3r1v0vv=Qhs@ZbQSI_%-hG0 zzL^{=eK>ip5_NR%?&BoN4<{l$nmmy&Cb=}?ZWhId(Z0whnasA?kx04H+pEZI$4Uzb zk0x-VLz+`CKBBl-u{YRocgUWOb_S1jp8PcEvtIw_(Un|#>%#^CM?C0Y?ey{d1RtXWL$zYR6qI-dhUd_g{%0Bcg5NV`EUw%Jc@kWhJir`_yTgU#IMRR zJp)EdSBzw!ow^{_MCIB&Gq%R1c7k@2-;;@xJUvh{?O==d{tL+IqYu51XNX(m10?VP zRiGD0S}*`*fFj(Z^x6aOm4U6TGGD;ZTd+sp00Sy@TrasRN~=(*zpn8gVMig<7S?yl zL+*mkCPb8R6@wT)fw`^sU&bPHk4ITNH7G-=Rcbv@R9Ov 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/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff144913cbd9f0ab162e792741f0a745747a1843 GIT binary patch literal 1875 zcmd5-&2HO95a#kv6fHacN#myNfxSgQY#)lEsSz0cu~VyvPot@pCnH}za-z=M-cQyE4&)@6+ zS<|$?aB%(8Veknwu?-^BLK15UX%m9F9_xwGHVWN{&BSV3iQTq|Hqb)zSJJM8R%rjE zwVkjMI?z|cYD=rTFA0RI6Sed-jZP>RLA*^R?MudC(ru*KNVa4kXm1`GdN-oHcL=x1;nzS#pG0DlKl511=bzzsJ3CUq$-7Q=;vw#OlvEakPCWi42AV6tKpN}9C^(6D?iy(1m2^AKA5p` z%FAN>ca5*WO}zSYd$V)O_^|Vg#q8vxwMTIvh8>!obRI{&j)){(%Yyze7*Ns4qHF^I zk%o+K^p64#u{L}^N+ap}>)9E%A>g}s$IBqxic3ra?X_dr&^x49zX1$%s6Z=#p+NaB zfPnxxu1fcKZm9EUppA7H*S59q?vIV!n9NUcePL+wc5WQs8k;C5i&JfE<7+qquyF0A~lw{Wk! z0|H=m&i}X$R$xm3(2NNY_2Mh!0wDf3(B%%?$+;5=w)Wt`hacAs<;)1C+&)VWqY!DL zoH$4aBf!W@u)oQDtOLmZ7BqpiE{7s^SDP#N+vIm(rT`+;9-C7!ie)h@#cfzs&cirJ zdSS5jHHN@gu6F+3Rnb|07_)v5i!D$}Lx^Pz=~?|9Ud8aZE1yFF6;|W(C>Bs)EPe~c zA_!FjC`0iBo^|9P?e0I`R<)T=8YEO%F*~JPxv&A3;xv*+YQaAWgnt^Peo5=OMr+^yw$b$WKK)7= zuz|9JECb5%Rm{hTX{v0&I8+mU7iQ`Bnsrw#jb=~FtlX4k z$)f2f5#`ZVE?<_bH$zo?d_;V|C=^AoYl&jD;+KF(SU8I57Gg`_oz|9X1QIYDqqh7H DjkETM literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee2c4ae7043dbeb823f1ae53048a2b5b469a3807 GIT binary patch literal 27154 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 SG@|%dPNKxf8zXw0X#WRObfbCz literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8269deb65bdc9e827c9bbbfa071cc9d23d3187ea GIT binary patch literal 1105 zcmZ`(&1(}u6rb6zY{N!tY^~r;F9vLTu?QlfO|%G26>@S344a*4x^#9o&P*yPy`|89 zqaOP&4S4e8xi>HR-fl}%qyzKzy?HzDQ85r#}Niexb3rJTTtD);$oM za4JboV@gqXq?5a`Tj{R!azFMf-IGDyh#Qpb5bpEfl<+{%xf_SPF(94rH-%6gY9IBd z(q!8+Bf1BP8VK`6l_R0R)9#i$E5-wp7|~DCgRBs6`gl7VZ}l>5R5qHLtSsIaiJa+7 zgRiyyX=jTK`mF!C_hC1M1ha8pf{hxXZm$GN-W*dQ~;( z!5Q&Lj8!*m6Vulvrr5#tLLKAd)-OO9V(1B(JLk?1LWyyWHwT;fCYTd=HcrTSh#pQL zF5T-aSzk{lLMgzX*pRWT$P8l&11cZSmeL9jrgMdS*j2uO0!t8vW1+0Cgcjz4T2BkP z56>mWQkiJY*ai8s+j~9yUaG_4*HV^8uhu_;=Wr;Bqv38g8tTl5^+}Q*CS#$8lWeld zjzqyrwV47rT$s%fv_GjB+L+8#2z5Mztx>s0n>3^mJ$`tD(Z+Qj|AB>obzxs(FPs7h z&Ytz~rdoy*6``oKN<0A5Mpy+j$BHBu9XPpkKzPpa+Cs*~ckaxp+HeswHo7=hTHKv9 zlu0q30wC*fMXiFk)!?o{=r>+XUP|Xb);hVa}x5%W%|3~yB0{SDm;{F55kO@=( literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c09fe9a48e8516f57393a19b603d098b80134463 GIT binary patch literal 5715 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 Zj!8bg2{T7BTJ%dB>BaOo|0Xh1{{tQEq+|d9 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25a1465b38c6062a4fa88a319415c1ecdff8e91b GIT binary patch literal 2204 zcmZ`)&2Jk;6rZnMuN^yWL;6Kgn;t5QXKtQ1_Eg*0a2}oE$BgZo_b{yN8SqIf@ zq)Ls{3*7hvl4CFZgZ73v^~8Z2m-2hF4oyl}d)~Y^pYQ$N$BY_{8pHRZakcYep0Phj zIQ%IHAEWuVK@2l|z&3e{bK=E7Y|578>^?Kns9k21m5*ghnP{1%@pFzXDKF|@yU|*2 z*j>)rnT6cA^JCjB+l+>->tNB5k8Y&Te*E-eZ1a@PD+ zFd55u&K`@t$hqOalKCQMT6P(zGDIW8aJX#3z_~$t*wyR3L1x`^Ix&rl$WO-BIWn$D zwC)XinbyUeZg;ZYw$;PQW>FajKzy;F*R0QUcVfNQQyYH|5G;$lO-;V~P?VH!`VP<314!2jo?5(Z(US_Y2+ntSe*ZS3QZ+t^<+o2h` z8y)z;*evwkW?h1#yzct=p-XVnWi(IB0*~>l@#%&CVt4((oDMns;3EvlTEfwP0dj!h zp4ex=4|r;sv%b2^epuMyId_+GKAQu|I?A!VFO9s(1XgY}0?KhfSv6gZ6IWb_u!^fd zD4~s^0~FXrTmtOoAf&?8!&qsgYtX6_L{1Vp1@b1EUjUg8<|>|`pXcHcOh0#w z>EXH~c9TkE`yI5umOx-5^YxtVak9IV$O_{6Vj13SrZVVP%y(_3JEP%x&)8wd7IpFv z?9s#arhUqT_NBrvwLXh0-l4n5+*pvlr1kXDG1?wJ?thhbi#W)g2AQel&VVlx3hD`B z$epA4pukHlUdPybG=3iB*dRIBek9Q-K&TN|{udAe1p#quN94jMTQV1Y?(5X=At?6w zj?ATBge)`JR~y1z$te*dlF-N4UlD*A@Y0F|D{dpyghsd_oT^5=OW{<-x~h>I+});C zM|a|MoPuOl&3hrjLa?Q^5KxYSqfqPC8b@v}l6w!nZQj+Nuaqu~wWl(Nd=FjRe6XUw z`ZNS&s><+7)*faS%ba@+2e^wwUV-xh#y&v{#is^`3b<7u|A?!BPe7@k2PIxSiuv^H zF)k-XkGPr&2<1zF{5LQJIptr*`vP#)3&vs}%%|tYVHkYe?g&YvM+FuHa^Xtrd2l68O)I#ND_t zjho$P_kW)*KKt`l_vb}ocW-r}Z1|>)D}HG>%9hI9o}Pw?|I5T#`VewjFQFwbxi^Sh zB0`1WkSF88sEe2`B4gJkT}Rmz;@we1r%{=5>o&}ft#r|_FzKE`=R%R!lwbM$;rJ;3u((|U7cCIjN@T5nC-gK{Pm z?@-W+1jP<7Pxi31jm&ZsUS(D{X75PH4hC8u3d2wvLs_K!TtW+FF+pLh$D)Rat03|! yCr^jE+f1V(vUtRNnG}s#rI{64dIQ3`Ll^v8JBs9k(uj|!bb2c6^$T^rDE|S$;@SuR literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44f3228f6706fc51cfe9fd871ad09d2c17a02354 GIT binary patch literal 3458 zcmai1TW{OQ73Po>Ei1C)buQb@rtP4cZlmtn>7qavHPUR-IJ+Al@GfE(MHQzs#TiMA zX;PUPIh7%!0h0a?2k1+FMS=FEzk#oP%1d7Y^r0{5cZRxHj*Sw~aOUvLxy|{`9OVlO zH3!eTh3oNuE;!D=XmR}UvAB(&{sji%2$nj{^39q|xWY@_J+J98=Nm`(qVm!a73sh5 zniat|oks8myPSLd!yp}qcbcwXO;21Bp739? zCKQO^rPHj)K+K8iOXme^&WU+Z1FZ_$IZ?N?d9ffCL95Ag;=EY0v^wS=h-Eup!2E)^ zXy=Qt80Kg-qb_8;;z-~V#u>on54+cMkVevq`bbz(43;_$+5<9p&6Oh$0TTEv;erQfH zvGJ&5Vw@-Bzf1nB3J48PQNW7%^?O_Q?rz=R_(qYA*Gv(+^{E^diL0U{jQbo@O=9cp z;KHmG_WOG#kQrpcTgujn>Qe3pAe~fGr)WTt4fqW(SZ%(0aAj88aklsJV60RDHl?pt zO~bXG6<({~KB?DlODTQ{_P6An&kmMn_0i`uowH{%be>Ei%WNdoX%1Fw&i!iaS>T?G zqy2uiDjP=vu)EQL5c`}R&P60~80T3#5i*PA8rao`7!Iz^x;M-Ao_0zXn@G!;80Uxy z6qup&$~y$eV2ih*tN3#Lk+bsW$Bob4(gARQ#8tBJbidVL>JmsNgMO*RT-Z%I-LN$< zGR(7d@EdSya&yteIeao}=&3tq>?K<%kFCAim>B1UbI1%kLdAm3?x8z$*PX}w&>ONN zZ|G5}{EPdM^NKMCE39dC=nwrP|COUZ9s0uGb=0S#0vhc=Az{wbb3tF0e7`=0hG zEst1}er>!$+u6hSlSwYMCE zTJ-)ElM=mx9lF9j^bD@@A$p4!3<&-bcyxxqsqj8@EM_ai3b5*`9}#~RU{%5Dnh1dT zikJh6*N2rO52#+pK5y4ow}-C24OEjPAbU~=KoM125v=q>@96?KzaMjo`6(yrUoHA4 zO5WsDA4=0#nMPX0d2c}Q-`N4Ac6Q4AR+2D;#6+s_hxI3xNk@}?p0n}5OSW?;&EvSQ z)C6j`&OpnkmXx3or-No(U0S*6j$t!VH-(RlM491$@14!N_wOI`^>b7&!%=QZvkYQv z0}Ut=)+h3Ib{?RlW?z(D<<8DDMqewszZ5kB7H_xgcymkrn8<{^4FHPcjjjl-Bks6V zX6h6A`V$O|puFv_5l4_@p@}+$-&1nG@X4s6iexwyZXb`}_AD{oaC9?-sWepH>9*G- zGN}8&*pj>CR^5PAY3|kCWv}K|nfu)LmOY@aaVq*wlUw$J=N0|gC~9H2my3Q%y>2}W zpZ244)cG!Ne*4|St-HV53b(#}cn^yQ>*_qVC~66cD!SI5RA!(q5{=4&`T-3e(bqcl zG)cTCagzx3L!w`&;R_n5cRn^yv#IFzr*LYHq3ZZ9e5<%#ja9wr==wG0URz|A8!@L2 tq^yG#nf3Q{+1&xqnwWjdzDYPF4R^=9euEjo1D##FCXS>3(p{SPjrcDMil literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9e49242816fdd95c012ce8b4d1c7a216129fb44 GIT binary patch literal 2877 zcmaJ@%Wm676djU!(6X$id7ue`w9^(SA~aD7bP*sZ+N61OlemR#6sTZ;7;{DvZHiQ8 zMsgfDtK=KHPL}y4ZoA65yKd5RhoWWKYAJBUd7XRa+y|L&Y_u4zj~h4RMu)M#sB`+N zp>rR%xrs(H>7}gCq%VWi8~c6VW4|z2ll3=D)>ZI2=+~sT&AN>bSj{#+cxby`(S9c4 zQIe@`E3ArX>hu+$b04>PghsKxCt2T@UOyl+Zx|q*fqq>!WE1^{4CNaBo3bU>@gJ%+ z*_In`*lVxfk{y`;q`3Gnmq|8s2It1bpEyg4<9fgi5#i&K6}LH`DV+?CxZrz7m@w-3 zRAsT^gIr^5BD787X(}|wr~~ftC%JZD3Lxb!J5pRK9MEEyRr{MO4 zf#E!(VLs7nmgG}2-zhSpG{*+finT-6iVNJ|FR%ce!Tz#UcO+Vv4=`<&R>qQ~0!ybh zzgt@n}D1y&K znn(^WDL%=;r|X;uX*7gZnvaCxdrCnLsWO`k5+!>jvuBShT612ROk%_d(Sz=!)AGp| z2(Y^pIA`fO0G!iIR1A|b=|gx#%P31Rf?26dGR)vC7k17y!k&kM!n8Wec@7MXV;Ykn zOiqH6AC3|PWeg9*d1eKiW=UwGcowb-b@DitxJU)LR0%|eb7C?cE16Kfz)(W53fG!L z7zWL=aCE53;d5CZZ*Bd$RViCK{FJc&rzw1tE_{F16kkqLC-EXZ7pGZul=D~_V(iS> zO3@aOkE+~uBB>W~Iz^C?vghHdU3{SPF?qotSTrmk58V(Phm6U3ZfoqL@>Lf-2e=>N zHs7H+_KsPE%8S->tuGm#16zArw~co+-aKY+!*|R>g+}@FH?=FgYegd(BN5V~6U9@l zBMN{BUaa~Qeo?BjV!fPq;axP-d^kk$EY^m~KE<=rMHoey7^^5M8Z?WMI`UlEu3yxQ zN(Y5+#_yTF0J{I|Ji51gnCpYxKk_u6-M#%J73N@9WwYI<$=)tPNZp=@_&}gk?M{-( zooJ>qnd>{m2C;Letgw#Dyh8UTN5mk>5*tN#NtZU7hFAXDUfX+l{d~diRXbu*qq^vs zBzE!=jAi>IAw=C~@4d}#ph^9r?h2I-@%-M?cr})%b4S#lQg;K*Pq+=ifx^`l6r4y) z?xh#%iF-%r9J75m_Zr-MjlJ^G^Q^xg9QgXGL@%nj`2h1iZWh&Pg&V6~W0x`d8G9AD zejW3)4qK|^?* zpbg(%@H)Ql)jnSEJLtW}Yk7!gk}zY1luyRO%DZK+-pKd%@zLhyR{A5D^bDJjf9AvQijb^ER_~O-Zu4ek5;xo?Jcc zD|pe@ir|C)Kkv`)y@aU2AR<`bgR|^|6Y|-H|3xv}q09_T5aAUhCO|fxpgGY)!D1?S z%z%TxqVW;B}pCP*kwFo=M6ly~&_myY}c-brR7dSG~J5A9_->N{o{BZkyeXY0b5*GNYCJ7clP6Ht$)j8*1{cOvn&s&lOj5~evZ$dHN>8%a nR12_^Ol_;wo>z?vZnjG73b<{*VuonJX~ek4y#N(?oc?t`!dGQ5 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20f28dc1f8128204aca8dd6e50be831d985bd80d GIT binary patch literal 1112 zcmZ`(OHUgy5VrS~CEZXOK_BX^y)`+>MNl=KqzX|LsyZk&Dw+&`>O3w1#t@! ze}f+ROMC69XKuZ;GY*KL3P+y(W@hb~`DQjnqfsZY{x+V)Z)=47LS=qApuB^vx*#~= zG$k1gDMf6hR%VB`!FK9oZs;29q+V7FYm|H<+~wX0;hu1(cIfk3pS1kn6s~H~>e1%c z&eoT1qO?qgW1STF`#ee~DpBBUb_$;4qrQ%`=tc2Z z0eh#!AtB~ntL~T>vyd?sakUU*0Nm;Y2u(CSCR6Lo`bj9!wsxkVGgo_40?*npIrGuO z30zEfS__q{#-)(bgTs~2Sdu52F^LyS7i|l%;e)A6TBxt^Io?==#2pD)xl$;h&uQf- zk?z5Bfw4G^lw$0h{ONUH4Sp2zVDPO-i^G?zAHj1l5c%O?I~fjCqQz<%#Rt(ys6m;O zZFVSfUdVO~WOJe0aS0rkhVr#?B7I2YDQtyck=Chi2lQxpj-|D$O8%n@DeJ(#zyaeF zXs~uF*Bq5gV3Gj}gN(QbY87B2P#?>qOgsn61#;n7M-S&?&cAePT-k(^7}MJ-q=@p{ zgZgQdkH)}B8&1d-5I0M_a<_bJ9A?H?Rc9U&pQ_F5rgS}MvHxfJ!DE^l1f9(DUng9R* literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41658723a262e31a9d37e5a7372d4e72cd13a7f1 GIT binary patch literal 2559 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 QMSSM^u-9{<&xOnX0CnKz^#A|> literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9af3e5d354f3666327b413f987a029b9aebe1d21 GIT binary patch literal 2410 zcmZ`*TW=Fb6rP#Aca#3tlVWpaGb|%gy>s>Ru zro=K*C8y#C@CV|DKJb_3wNE_vtuOSPS%)~Svd)}2XKrWaJGUg2N{PVtq4GuWXO)n@ zP?-H}5PpD`{t848K_k+m9ol0ZMp0&w)w4Uc;jPH&xgFQ=c2wwj9nbJiRP2>HCBwVX zT(8_IQ}T$2g7A)s@T5JqIu%iDk$UMp1vPc1%Udeh4dZSr^E0W->wd5w#?nZ2s;{mO zqAdLJD3gtSU$tb0tEGaOg+?Myw@o*}=yLN}sW@jgblnc9pMP~ zn2c%11>U?I_<|^k(lP0HVosEyFTNo*>68G8ik>t2^Opq(%jt(aD#w<710*9E9g#6R zVG}}0W@YvmWbS0{m_T31Jku9PS~-R||3oKMre0$y8?VsJ2rX?LlAUJc#@><@_D_XMOGa zo!=65xbr-Tl9%7!c?dIyJ2HN`^EBMuNyALu>HEQ<-<9c3KkTpamogTKS`EPDLT0OS z5FGUT#_)IhN2&~WxCJdmf3DIJ_25^g!`!?%jCW6;crl)z!0z*Sj>v(PBa65xJiczL zIp_>-s)pP=l1oS~BUwap6$#GXhL&O=RcVzDFU{EXu0iO3w?PXxp#6=T1O<0s8$%cN z-FdQ=pKVkbEgx0sG9m+j^VsjnuW&m9Vzc4Wtj5_z7b;fQU?(Wm-V?v?$6&^b)q0U1 zcL!i5bVaocZ?FVvXpCEt3g-ZH>UI z51d1$K8G3iq#(e<4?Jka5t~5z$w~)v;OmfB;w`hb0&Bm9(du-xX-4N^bYRY|O~`9| z!~}zppGOd~%MdFEmxOf>`-PLsD2?n1q&eWO%*rp^=?b`=u$BnYYvd0+VRromv#^^A zd#a5YZHsWvt8kCE=G2Okn(tnIaXmd(N1%Fdvja6QPS;7 zr5z!62VJ#<2i-t|Ce-f6W}B}!wVUtM?&Ed~W$)qUvyC+^Xc-H3apSGJIJYB0hY5`C45D2)V(lmtNm}W9lP&~X1M;y+_kopof zeg`eR52QwG4D(2d+8;b-o1B6a$EvhO7w8gWFqc#Id(|q#`Z8s(+GWGqY}nx=&xIS} zjm<>Br@(-1$q5CoM9*f1W0{G7F+0mUCef_I@*FX%=fA33`Fr7sriO9o_jGxhs*UvD zXW{|Rp{1DB@j)dzygqx~^C&~5fa-v0g>x_&OO#oFy;ZwuGVeycsvQ{* zda3ct+=J(PyVDGphlauwsuyzW8~5tv|4W!E2Sp33$xKnp>zsSg58~`qUf5hXGKC6= f6){iwXE#2}zTUkYmHQZRDY|p*23&jkyJGzdJheqA literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80f59e3ab6052d5ee88b6c693fa5804b4340d4ce GIT binary patch literal 12038 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 LER`~O+7$l-58q1u literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b082be77f14a28bf7e6b025bb95288ae810fec0e GIT binary patch literal 1113 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..043196fb038b45bc57823143cab77fd76167583f GIT binary patch literal 3926 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 tP;>DeE%m)ax}CjdP>> 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/env/Lib/site-packages/pip/_vendor/distlib/__init__.py b/env/Lib/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..1154948 --- /dev/null +++ b/env/Lib/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.3' + +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/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9804f3c60531a761da01ab9bcf0875eea575f479 GIT binary patch literal 1038 zcmZ`%&2G~`5T3O+w&SD_3hEPZXbw$~dO)fWszk$|s$6uvY8Gcs0%p|OjnYNJw+FbRq05w(47E0IN%W8q zRRo;5KV4>9!(*-AriIkX{52wF?NZiLRCgmv?;H|;$$r9RLk4I!WJsJDdasNUZ-wr} z)hj$dsl0>(xMD*$cU47I^0*V;Pe5)g;Q`bx*WrTf42OcQeq zE!Yy6D7asOt7%?8CdWfmi_R)MxiV`0R_IQB&@dI@O85rCjpWK8qgi|MeT;ZQ2m}?wVq>-DUC6K-7@tsxHPayVfK-PRQL+N>)`lo^5AX;t6}?0R5sO%x zxxd|(4Rtvl=f&8z1g?vza5ZrUn}7Dyt%VD=t#{K|Y3hM7rLp17irD5@)%%E{jBCvX p1gMOSQz>s^{?(O@UMx5MB{5jh@KM0Mj_3IuY;S{k*KyEczX4t7)vN#j literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd14138fc6d9ad04363ff484b43caffedca357a3 GIT binary patch literal 31512 zcmbt-d2k$8df#-2k%9{YPTQb`smMtCG}~?MhNfr5vZ)({T}@xAYT_j}VC8pgW?&c?3NuEy@t?#6g&yiqI_8+%H7 z8jqG9ZR{=WZA_FV(A%{70Of~JezG(f^mAWnpVYO#v|qjtln&y1xc*qnKglZ~fJha`Ul>8DGFjYRV{o}}uZ31D(WU~)uYvKF~VBbclWV6qM{;d}rh z_#Ul46NATtr3Yo~0bGJ{C+v0gXJw3p562tA=00Qnz)+YqjP}`Rv}5&S0v$pL5DiB6 zT;uuDz99W<<9KODkUoL@{XzO*0F{${P&w6jq4YSQ`l3K)J)m)z&~Ofw4t4Tqc|$$j zI9)p3c&YS~kpOmWA$EOWEX`>AdLdzNv^Tw%us1m`-%6HVvS;kg_5<%3rC01N_EyaC zX^nlI9O`-yxbbV)!^N_s_^=xy_pq{C|x2*d5#@W(Yd24;}){pA99CQ9P ze9k?Od6+frhwVqu@>%^Z+S^_~-H;qwU?!TWI@D+>hHu+!vkKaX&46-&23PQ7Vep~m#e$?KJk(Po!>$P~H zbOF#B2}=HPP%>jrU=87!kqAnsoQtK4C^?3bmp(9;vO&p&Jz0OJQ7)A+cl+%9sQ+RJ z6O8zB=`yaBQUz~r$D1>F6L`*lPU=qeZsG%T@ge&_$#!h};DY&qsdn3sm7Jz&KVEX| zC+sIt-(~wL`w+e>VZDIK)AiZLTxm{5$$B%W7d_xVJUv{$(x{bcjrr1ifKi}9PV&xz z{h7N)scs*!kD|VY{fzxAzUTVtJyvfvTBVlMt6^d;-H7TvR$tUl^&3K|O#8Vnn4nhA zFJLU{w)5Dn#QfFL)h3~P9JL{BBxGhz)K$YRxl;H3pwC~8>OP65Udao}o~pMS*Gku= z?3$qLF9&6-_KWsu;Lmm43t+)Z_RGM6mmLpS;P#E?mHLgwQfWzQc_gUi8@d+h(JS>% z^gL`O!~olV)t*8tOS-y^YV8KHs=ix+QPsgPITMH+5-@^_+bkV?FP@hq1mJ)G>%U zrt4p5d|&DN8t<3h=liyKJ`vP_`uI=g|8*xhfBUXk`l9`Y{U+xAebo4t{WfZRTWb7k zwr!W}3mEtJ%eXH)U&8$l;r_B+!F@$2!S}r_ZC+0losY;P zi-y0ZGUK-DZOej!X9M7BS6yw&uarZ?Scoxg(qo>Z!(`~j)gLl3L$Vfe>1hjSbscPlPl zqMPuHTc*l)6L(D8xNF=@c*$s6Xn=~u1VvK>F; zH1&5``U$`o?uQBW04o0E#S@1wUT>*|i*L8;t!qzBoT^vcg^Nz}+QnCDGZ)>O=S(bC zstc7l$Gx~%TijQ^<}~e=+Gp2XuU?zkS8X*g&dJ3kHH_*WVuv%h9aaH#^m!Aw^n_w?Ol1X(zNT2^4Bo;Y{hlaP5ae3 z2#YEOb72iu?SF)33gAmb1^N+1hNa?&*R- za<)=;9XuMEc5Zm5&%CKBi;F0bQ#p)H4e&zgO~$9zFhy}q6?j>POEIq=WO|4fPM{j$ zWi2ljFAwwb2rt`t*?~(jskSjq7^+cb82+H{neLA14>u}a^-B3l%k>1sMvgnmLzk-+ z&k+z-@mlPUm~;#umtAubCBsfYaulpldyzF&O!~QUnYES6e!g68wCr}B=|UOUQmN}F zf-8NOEqGPlzl?;N!X=kT8In^a;)Z_&645~r`I|`0C2j(3-3+?`RK~IfDyOn^vz5+eaEmfc%JQMyXHbl?eWVQ2+BrH|riiEvdVSuEFa92vaw0 zXBJHLnQrn<+RojDz}(!1nlkplUBf+za*|S0eC}oMWiU1KAJ&5a2!J72hK-W=!-+!^Yk92V%B&f=?_ zIFKc)Qmq1wnetlJxl_ljCl4HaVz1=_duy$x_2lH^laJ-|R`7Sl^A->9+vl}fb$7Dn zc(ao&HMj4I*QoDPvsJ#jJ$Q3MzZt%G$~PtzCtnf#Q@*jMvlq2kjY@OLx{k$Btti{I zYE7%!Lm}(L)Om{&e%R`yFT68(>CsN=Mss4KV_w{&Gxi|)96poyl#0WCTGPmMwbgEV zGW~u^Ig83q*IU=Ib~9WzP210dBq`6mUh}T_rXodhtCdBNC={+&NUKOkK&<_gkl+02 z7pBgfJ9+%M^C$hZAbm0Kn>Of1g!@B{%8ha~5YBFb+3j% z#0adW<6t#cEI`b11!R1QcU6iVH$1F)?~3K%;wbC*$#c`?GiRqypP72@6&93?b0=SW z{q(t$C;VZzJu?q_^jzJW0x^&!;wM2Hru=O1$j@WFHd;-2P72f66;6Y-Q(1P)ahtn6 z-OI4m)~vPD{lwgBb++EW>`oZB!Q3<48fgOA*7=F=poiLg4yIx6<^J z3(k_CzQ#(C(VkgGIMkzf=WpTT9>OJ+%NeO;!6-lm${QJc%+IBa5#;2Ol#6(8ep1M$ zj8QZ5X(36qnfealeOw-a;5&2)1}o(L3sXSmCr5D{@pfjZ$Mb2c*;pWU>K_ zBHvAR^D^Ea?B-3Vg8ZCMTwS_4%dr)QDlY?2FVvtmfIe{Sql$eDc#0G+V(EkQQ3*8juAms;{4Hv9F&o(Spl? z()W2{G|QHbKUCI5%izS-h2LcdxHdL{=$ZFATV>uRkJMXLs8Y{N#tKjQ zDS`t_tk!(&pb&gN%bb&MP5X%zR3(jSA7lNG;PSnoE0+p4joVNj?h1Y3_g&)+pxss2 z#KXav>IszgbC5no>;&mCC-?hF@WKxbKUrfkN^~|Y z8%0!XMIZSJ6+d?jmpS$^!#;MQ6#TGx6>3Qz_!Nq$HZMYwqzCyUb-b&tk49wEEcq=hRu9?aUH;)Iqsp(sdTWzLp>&L+9=kE`FAE1GIjcs|rZv zI#BYHtTxL^B!Loq>ZjOMJ$8Wt0ibML{vAFpTgeR-vXHRxFK3R(cL5wSZw?z9k{i-F zW6aE?GLXYHf6W=g;HX49a9LAo0{zaGYKy1X+(5YuyNjdBW#s0Od-8_I2lr>HJJ5w5 zQzeN9V@=vAVXROu@twA_AZ|JJLnyjpMUp=p$H%1>AF{!DAgN}Avij5|JS&>&GQRxO z41nB+Ap#LHt<9jFf(xTYXI-!B5z~v|A&a*)5k;bqd05&Pqaj^U#| zzy&k=gZPRKo1o=~GpqgvFQlTn*)K<_Ufb*$954y>H<9S94bTx&_nly>C`anbzrxht z;iWe^K@N_1H!J@!BswE~l?yau9VaUAa|R#R!iCJB3-;eNe!@7Hs6jyaN#jcf#2B-i zq(xD)honCUTbvVA?Wbr>6VMe?0oIDRRzZd8hk04n#lMTZN6|$gr<)-4b_!uPS=A~N z+M7$h+gD!?sGODUth8@JQ!-ar-0K&Yyeq9HEy8uD0Weo+Q(3Xjqvg3DmDvWNaV-H4 z8%FM#^AMpSehpK2(M;1$L9E+AfttE^G1GbSoG5HoB@kMy8hAL&a7$vT?Ig#u)=Af!|A8K5%&vJY)=wl;^G-0@1iUYP+E#7og1(-CxNy9@2kAx@ZT zJ#y7Qzy*~gTQl>0z0nIA{9YUs{vn>Ke}qfWU-fg$ z_*q>1jJBqzf6Sbp=j9i8`9)qtBl;&y^{__I)2ypsW0UHaSmIZ3!K|*a9S^_)nSzZ5 zqlOTed;ZL;<=3ZA9r82vR%@ZX*x8_;T{wL7(nWXA_=Sm!*I_O!#`;f+8cv}5B5t~( zFwwxPWjFFvs1Tq-RC(O>FwUAb48CfkSh);4dkq9ja-o2zN9+L_jj;yvo$=F+8kRR^ z6Vi2=B1WYyR&1Iyz1D)$taThUS)H8vh#bl{%AXh$f`Xll_(~><$xap`P^~#};1hUF zS`&v3J@NF!fzBY)!2^`Z1<48hKo^?m6#7a{sDDYwB}L*?hmn?bO1QODZH|D1+}W%y zpMsI{vcAJXsa5Aquq8tF!9Vj}3X55N6_v(d8`>1PTHRmArIWdB&V!PD(SSF2Fa=7s zv{w7(Y~*QQo^5^+GjP+elQ+%xO{j}7x4)OWnS4L-KJ0sp?Z90MJRkwvW15Q!P=CtK zeUV1>0o&lr-AvngsIF=EXxE&B)eke0>ZWg@)~=ymgf%cdhq{o-=`w^IFIu4uje1?11~=$~x|Aq^A?o4=)c*j<}kg-UA0uEVOb zH>#9ahn~8SY_02+C0aCjA7Uc9EH;;l*HV4D99n=;x^9tXMwOyFFm2Zw?S=(C(z{-( z2AZ-qk;Vtekwl#sN2?)IDhA3m6$aKryFa_^TH`d1vx7qLidN0Du80A)Vq@{dd#7Ql z#}WZ`RzXSS=oSGPoM<)iLZK{{#xqieaK#&BC<-T=2nXK`Zx z!6zRh#Aoq7l>UlTLmO@dCIkHzlz82q*MmBZw{S#O=9EJiS?8C)^KS@M)_|qeN-VOv za&|iGR#-7GsM3u3SZl)WRkN+?6?z9b)qFi(HR_sz-xnYNa>2sTKXlY47RX*7cWZLv z*5-DLfjF>p_rrOXwuz`;s3L-oSd2Al1%?U2T35NdH^ivU(ET%YN@!gbgdz4vsY%pS zIvG2u+lgCn=hK<*C6eyw_Sh4HZh{DIsIX&4sH#(>38L z1?H7ostiNM;#Ww{C`FhcWCfT(VHeoBY%TXJ1pRNuNFA*TQNO>2n-2IpJclqW-XyWx zh~67Z4+X>ycD37Za<&cifStSp8{2KzKVVl&(!KF{gur>JJ8-7pUAS7@ajGm{rVB>2 zIRVmyAUa47DWn)g_aJJ{Exo2|mRb|)1siUejd0q8HQE_i{){deS(JA@aXX#u+MbAoS z@ZFnY#eMf-byM5WN88PXX6t%yCBm)u;PSlaox|3r(ww z)Y6BraIiP+vhKu>6JL+vxoHfiC_8HdgZUTv3{4R*FyI4|1H`plD)Xrc7hujbzm*z* zNgqraru}5*VJS78$uRjq;|{Q8d)ksNo|DeK2cqXdhAdBcW)6?a0$F()-724aO^^*}^uR2E3fS$9u_2-qr^eqDSXg4rw-bR||DIdwb(u#5geiC0MM zE6DahV857n-xLWeDeeMv)H6U3lDEvRQ8p!=l5|qiX-TIfov9^mB~c0l3q#9J#b7}g zFcL)?dr2Cj-h(h9h-HMvZK}0H^g`T*V67c7ox*Kche6-WH<^pdX_e|i2ljG0EJZ1aMc&k2yKm+Ol1R~F5_Ok!OV;{fFqb>AcCV0X0WKrs@-gIkq$vrQRPr@ z>sx}^>pHsTo5Vs|%!XwV!AAz|h^lPiUgs$Ap&v7PYy%6N^NSXux_b|Unzc))%HC2R z^4FBhl_s=5VP`Jvf*Ey-`B@CLf)%%{y!s@Zn&iVspNxrbZb*uCS zF@ahu&ln?Sp}++;Od7HGuQDXfb4_Vh{ckoZ>fG0vl9tyjtL+cjD%W2jlUlF7fdq#i z`y>7w!^fq{*fV$b`w*cX(9}uAAW_QLyT!j`l(IH`Nr_U<9Ay#TPB?*;vt>#?s6WpdDPQu&lsJfVb z!g?jb00NNG@@)ljx9dS@oTj`e@;F4i#r8}c9$3n_@CQX5&^{Hsh~DakZD=d#i3r?# z(1g3kB901IkV<>*Ej>Jh+IanrEzLtAREk?k>RGMRL5u=uZ+!`)LX;$60H-&FR$-mJ zxP;S)8iHS0Ra^+j*A-#}5!#@8iv)*cJ9US)H!4o34)#8*(a1+9%qbdj0Jc83#>gCL zDnGO~i+2TvA2>G`K^tMgOq30Zt3|W(w@<@MT!Zl5;p9cgFtdb#d!!Fm0KK^DFu;Z0 z;K($fhd?5a%_qd3YoLN~U51!p>EH}v7e-o90x9ZaeIsFIQxHHPw16F_IDLW5Us1T$ zt5}w@Fyk5It;b-+%{`XxtPO|JGx!q};UCld9LGltq8c=xH?#p4-1cQ>Nrb1s4ll%d zS);IUl>@=DT;3Ws4r}dLU*l1Mn6D#=cFBRHeaa8?b-+hFdeelA4vw=K+J*K9i;Rv< zBmDPv;%f3bod&{_LepYWL*$#NM*SHsG5!MKPGp2t`i>P01Z=>Az`kp{8U#3y*%TCx zycruuRCp@p*ylhZK+;YL>qG*~Ge`I7W-w4P$ey|X!#>uheuo{FDeTSTS>){wK{*D) zcLYjwAcox_U6IB0V=_OFalVOpFzNZ^mq0#4@TAmhZ0Hs)e!AVHSy(XW%gl{8&$tKJ zAj{=F=z{v|D9{;+IuJa%Zzt3ztdO1!L=&d~StV_%|I6(Aw#Xn2aj{KAO~!Cnp2cv7 z;3j_}=v_v!c!{1Yhrt^-`(Q;f2YD4TLQklOoWNLApJ!zPl|PNDrIScAWrWc7D%j6P z*!fLHXZ@;8te6v)K8}wl(X@BZgYbojXt0^pW*>7ggLu($`7yk&eg^Ny=!kx{qAhCJ z(iU;aHtwJ`+q`3V)M*p*5K!+zkCxf!YVHx%J z(1B$uQDrbmpW&c5l^c?M0}AU|F%fB$l!@3S1DcmmP&m#eo>yCo;Kj3KZ0?2qmxNO*XBOr?VRr6?1BWk(=|Be!Q<{(F zS!NIMaj0T7tW$Z6^jJ93U1nz}1oR|dSusjZos3ebE!c+U=JVo_{1PZGChaq^F$FO) z9EVI+7{UoNrbY89jDy!|tv2L7jBXNZbASuvzBo64iV(VjNa#~xug6Tpl?CeQWb}AN z*NJhlu5(>dwd0gX*OQ$sv91d~3D5!HNex^zc)#_FSPBIzv-?uiuVf$n4j!&xUlBmb zM8JCiQX);)I3jL&So36Np{5fg{mfOpiHv24OQ8T_6L1@h^$a?q*+{=g5Iv49NfhnH zI@7<}8R&K8DEAIwZbcZ_sD%L!fYXA2HqU|FOGiH$hwLIQIuSm_tpjmeM8{AvgUJfU zE{sKH`I{Vu(48JFj#x4W1ff(9=o}%d4U?myj=?b5KeVXein))dB53vhG7R3G|vN*z+*m78nj*sHiat|~QgjmxP>`>ndY~f-MN+D~q z4_6Q>BfPY;`* zM+8m3BZA!n%Oh#3=%@~-q2#Up4=yn7Fa6BC~gFnEvX^C4mSgKL-9gif|3Stz?Tw`VJ;ah>g5%qi$?S$S1 zH~UfodyME!fE~>io0?ir=PA?zb0Y|uo$95F>8VZ<`{1U1qv{(i5ZbG#3z#*FFMrr} zX4-S*Am$SrVBGfXZ0$zhphX&GtkNRKJA#+A9ZaI&k}x$Jicc|~!7~ar2gg1EfdtL` z4{1hpJ@*Y5D1y*;ogO%iB`-=-^S=XW*xkCUFy1Wsb3l)+sVceDl30+h1{ zV28;CoA?K~3kvsn`$@3{8KuF%7F5u7pwf`G0hNXW3(%Ut`ZE%25nmfvenuS}GvJKf zf(^)7kM?K>GGGUK%6`P&j?_k^cGx?S+N3vZ!xkhPwM!2;Tkvd;{pfp;l1p3dz4iop z^q@Uy@5A>)_I~>SzPH&2?Z@zK*^k>#;QL|wVF(+C)PsO+r$~?n%Di~@uzSd9%peR0 z3z5N*cm~T1pdVZ7gd|Cz1XwL1q4jY1eo|_f3{Kzcc$7{WhG-?qDec6^+b{=*L0h0CjIvI3{(ZmsBj_Z|NEDUy zfM6>+Uz=-IzFp~*ryb8R@5dT-Zg;i0z`gqhngBVRb2r>KtP z76w`bcO%@k&mqmaW}IpTRuS5r!048Nk-V*@p|+5T z%FakgaSX>mn1wNy1dgO_U8ZM?SES}Iyc zjvjr+YS|ZRmyRxJw#XikwLDBB%v}ut=4Iq*O_{Vr1u`v#Ys82B|mWoeAhe_`##d2o>{1bqM-b!*Yc{7Qvaqzcdb?9-Y z2#;XQ7#YSK$#3J~fRV#NFI^I(l5um$9IbF5Xsnmfq6|40ZBU6n08isWnc78=M4#8EC)_9kWYgHteWdG2+1?<4v*8e|#7T+A}cqWIUXDxUjnh+}T^OjRXn? z?Hfq-J#h;hd;owg0szQ)2zN%%iOe?d##?q#kNrQRi7D7YINcuxhAcg!aImQ5GfLj@ zOX!{iteKx<&^5O&<&2R}S0J}G@}S!2uYYXVX-)B~vt4=!aDu8jcCVLVj`Wn3DCw!% zgS2{-m-y=A2IcUba`|7Nj|!9&G5c{`>lIl6bG+@G-MCdc(>1g6= z22W(W4&e^6j4PkW;zQ`+UCaoG`2dJ{Y6*knKTWE=G&f*K*tfP(Ph#vMhhb_ao{=po zAj_d{040_JI><4#0Td-!BZ^{IKVYjjWa(up0uyPPO5=GTz9O)m`!qP2%U~q})^7qt zLa9u|(K8%lG_sNoo1L}&V3R&h$D||zE7E+sxar@-3IM^Qhybvy8c7*jL1YE}GC`-3 z02NYPr%h~FE(hj)FsS-%2-w_=;>d)6FtqteEcH z1$+W^L<4htVXt)!8*Bo1F1--o-lB9_<6v8O%FTO4QMlsf{H z%$`9$BzNRio@&F7p{!G}r?NqR8UO06>oH%xDT-T<Mj`oE62sj+#Ga?K!hE(%%z4 zj4fGqg9L>iF_ri1#ka9&r9(*}FM6fKyQK4Ur()HzZ6fwMd}Mj_@7~$GV)qUVOD;-k z;D4DZAxk2?-@xskqCT~RL}yq3Xms;^Mr49Yw)^P!do@Xl)%h9y5}~8UF#68u${J%s z>4%Vd0(Y=HkmLweiGyRsiU{T_Rv$q_t}LLTjb1<_krv$A#7*BTHa9(qX8UG4g3Gs1 znauO1L}zFJIHYrbHNd3hoj;G@5~E%6EH(^+g+n2&R|g3eqqARwMfGr3+hcU72-P%k zl*SO58?*X`7R|f10ki1;WtSdD3vu3vE=fbNUa?0+muI|c#i;AJQ)yjK<>=W z!JxkZ8iRSP+TVUGpAyUhzFtPugvyHv!vO(RD5v z>H0&xt`CrHf>sM=#JYbp=)O!2S>LL?k0GTlDnvw&M12MwUN#7SfUuRKDF8DX3O0@1 z>#Scs6e-6}M}ML8Et=a`k*!IaXl`o)%?*@g*3h~ec;0&CVv`K)0?_`!r%XG|{l6rL zcngO$AU{L?#?3Syf_&7I-6W<}0;{`tgB0!DD%;XPY=# zgl`9jIe=Hn+b{DR6aB`rCvQn)#6X3?mjJp}XvRAp(ZGd;OV&~AB)(!g zrqss35N%0XUSF@apxn2q^b9o2u$N+A)#HKBL*~9$wNwg`U|BD(#k+{mNqu4h zH$gHM7i=8=`&AC%SthtMh_yLt?GF@^BK*LXv9S?}nf80lv* z9TNYf@f?6oh+g1APRQ3S;(>{{Ypv;--(dfG}5W`-cQMTAq*Kr4hcE=2;N z!2^gNG>7OYa0?OceP^2hH)Rg74IEXf>kKV_ISA2^f;v_`jxO*$F0)cJDqtr{B*$Pc zo}Q220esZ|}r~Mn>R8ttV|oA^>?`WCVeJ z1Y}LXdjjBvdLKlj_CXo>h<$*NZbL@LmT+vwcd#*m)Zr+A1lS4Kgx>4!e{1DHaE?$^ z_tP8?rBR8;_JT6_sP1T@nYZ4v=Pm0cs_>Z;ZzBUw_E)m`mutFHX=F8F(H79F*Mn@Z{cRSI8K;igMo3!xXW;P z>`1zWJ7I;;p`jVWxOo@GovUMAQ|-EqAcHO#ZP%Q|@(u4q*-LeHp3^%nCA1AB8}t^@ z-ZaLN@-Eh@3oz2m#kxm2@oi<-xfQZ&DB9z^#eO+25@F8*X6g_gcJ?fXj@_=}%(T^{ zSR6~@r>1uCjk4Vp8%|p(xk%(orfO9^^*-6_2Ss6RLz-SQxam^Z+(-vY!fbbNN z;xai%))SUx7Qjs=II0+>A_7O?p<4j1p*^%^A3eGR z)6;RD-l(vbk((wV^yvuFGbhN51f~<%;6-WVniGQ`0EKW^>aTrogNuSdX#kbs;hd*Me9<{EY5&puwnT`Cu7vUqap-flJvYpSHLPVp4>zVg+C$ zDMGJ+F2ER_i=x|jd1Y(t5H_8Z7tx@Ot6J6+AFfzzVN;>zc?`3`IATF#5kRoa9B-mt zTYzC{h6isUmW9El1Yt#Dj(NCE%iiq@KEtGf%})IkDq4YlF08rDKCaY6!^hvTmq&tL z>O~Te19aj$^iLN@4|$x!s=9KXUC_mrqCUn5SFgZ#?B(-8FGaYIXx4WNOnD1^weHu~ z0d_@7-Hf^#Q!1n9MPpjWOg?gd*E&V)KJPaz>uQpDV$2n1xX9g4F;7+jj^M^gR=n^i zJw?%4ZAZ$_=y_1bm_5qNbG(qTs~317B~}Qxg+Rdzmx+3Xmsfe2;^ho4z2y|)kSxXT z2iEG7SP~Eo28Tz6^SOZ>{_=&~=3FZHm(HbA+cIXs%n#+Wx#1i(Ye2$h$#gDNNJ&kQ zUPpM0#Bn)!pe^zv$ZhO8GYwMWujBQ#OwZvr^}c2?1)V~7ZAX&`2?*EIM)c; zH+TO*cpJi*pt#fexsIxs>O4FJ2^>p@t%Q4fgF_l>jyjAZ>ZTFgmOp*sRa! zQ_m2#v;q`OwVCOAy!5~$LclqI?0s}aNO`y`N-?*J(y>2w_!vHNX3=WSbvtYGBpCzS zE4bY+=MMuyFgr0){REWpj`bXa?1P*bW7FGZCSyd6oFe2FAHRef4J7gahA7Na-a-f` z*elEu@Fs274#Okh6+H99OMBS(IGcpbyB+d;vYdm|nk)~H^=ib`XXU<+tg<-=#0;qmGhD5jx zk9&kN_cA8!+non`jSzrfdH0F-rr^QPaeQ38ON$6aIsGo&ivhH7peuwBh#-L04!AGy zT%d)`p?%QWf&7#}D+Op_CS%Y#ix$)yTxf6d@{7DBfYe*Oyv++wgV12;b3y8$axv|% z1`AgE_W=trS5xw%3KW9{&&TUSCaPY#V=E5Psj^Q5t`7L=VSJAuu*Y9vbE0jLAeh4i z8AnVzkAd|BY79~EzF@V0d~tAE-xi!g>Ap*Fs!IfHZ#c4mS;5b7Bn-$Bz{S8Oq?7=O z{h|DKSjxF*Df3XM0h!&-1F`iho{?ZX+Wl9qdYzrVhz7BdR{SP1GvDoyFRU_TR`9DB zg1U%@{cD5^vww|zbPs>`r76M;!U??(P1(AFmTbjzl9ohNWI&JVyPU{CJ@S(^`-YBE zU2Qe6vft#Sj$o*I|7y4vKo$B{f{d6J4)FYU@DgNC(V=Onk^>_Z=Uy)c>0u9hdW(T8 z_gC0jv=|I52IlhR*dH0!F?>`B7w8LI@0~3%wD3p`v4si(Gfykw8{uC+MR%V^?stIx zwiVFd7C?VFCHK?PtRCq9FK+!7VZr4ThrCeaEj=nEWWOKXRvy>c2mRFmPw4#zHbzlj zj_Nc7qAS3TG6Ht@2axDzy$*K%^Sp7yvM~h$U&=}f$DEXMlER_Nr2$Fd7#c*gNu1k{ zncUIn;8@lDa51x?}TR3kQoJjB2)BkMz@?`LVO}o$+VS z9zl=_VhW$3AceDdaBes=b)exhlY5FgI)!(5SkJ}lj~4OW8Gh&DWdHrTcP?J&yT8bj zeLCrPF4~Xo@CSJ+QdKh*#C^`rg*T9wJir;7A!g@d_)A>o=QuuMX`=pm3w*XrUWTF&vV*=Oov9YmEakpBu zW9{d01EpD?Bmt8j58%fojO`OvjmBD_uQS5g^SqXhlF9DVL&&%A&-bLV!o#M^`_;E5gffc+2 zf=EUmr;Srs5%FM}-5i9ATshy(@dS%vrW45AwY&2n*AkGCIDwh!sSaoLbvlG~xJ)qG* zgmSKEKgB(kIN^W?Ju60?`-bD2-i&WtTZSh*US4|m=fss=D4NH??c7$*&yWr z?JF_Ys{;!vF`vUT5M1{R7ZYo3ZtCQ{0Xa=7gFL!Xv1pn@SYY|3*zt={d4(=VLv zJxyXSfOzcSy}OK=)K*9Q+ya)pXsf4z8mf$oZ#0*!1T}+f5USvKa&g2Ja2^46+0pHf zP_Tk2hj~yQhB85B&I46tA0E^zxbXfcwP6*!>*E9~@Q%b;@Q#~uLhGfwPEtI$Z=H6{ zL5&AimSOmX%VlL8+&u6kX^~;}DCR*Y%} za!zPc7E@~M_ByeWx4gL;6 z|0=;@BRso-!3h3{7zsl$1HqzNK_xrsUjTimzrppa<3;5_W#@^wHx{Bf=WvZ^sy z;~}Vyj(uIe*W~|%`<-$$Ck*EQOrHS6!-eS`3%sQ(IYZE14EsrOsSYRcaTP8+ty&JO z!g((|h{^?CLBt>h#7X_qN`(MPoOaMn$tkT6MbuNEcqs}0 z$OmGB;Ac0>@b9a8yF8~f+c|JNFwxIKU(LHF(+fS0GKW58l#EoHs-8v)KUkrUbiskXm(h^!#b!Q9b6b+DD$EtN zlEOvbUPvB_q_=U8Ebqx#_M3Jn{uT_y&kb;*;`bc{RXPuU$C1QvB_>7CBP%qGex3pC z;h~vRB#Qm7<4}$oeh(x(L`NTvAFf$9AS|Fhnyzr`pEy@!A#x3>7B4;RiZkKoDsEX` zc!$FhM+%0OT1}=7OHLIxtg1R6A_zaj%e!o7kr$U2kC!$tH*p~;00FD&cpv`il$I9h zvSb;G_aYG~iao-+v;pn&yuHOsZw!(Wl%jI=U$Erd9eAG_Vm^gK!!beNX-OCgKgG5% z6Q=8p_&k!^S{N2}3~0(RVUB94L z@L8Tks6w+VOsBXj4U{P$Q=C^6@|OQH*&y=@Y$k)>T*EK5sUhajYpgc$vW6F$O!Tjk zjWWdrF2B)+@&^@tvifJtXm!^=PG&LnFfWhrvYi)#TkXUJ0Yvz{D!l6t+-TI*VwK7C zYi$R=nS$TS!tbXX&cSb%1ZNjo)j6yG6;*U8&tHn!#~W$Wh~L zV-Iu8S_{y}Ax%Zz@hA7t%A^3r9}ez#Y$tziE_{j#@MC*}>>c9oYiJs$-s^9u2)gW$ z?sE7Xg&TEUt@4NDMtY2$P&{D{eP=2yy_TPC(Z47|Wk&zh%-c*|;03>0s?WFgQ~Wsz zKgFMt@UxxTA`cps!>iSgv*0r<_(MpQhDk$kTJ}kORK5BvAK&5Sr+E2kT>Jt4Jj_WM z*&1jOILet35$Ms_H*HBrE;JfAjH%2 zT=lDL@z;2fmHls-`YJn+B2?tmH)#KJHT7SaIoQ_~^?NM)-nFufnwO&87lrpi}0fm z;t$tbb90cE5X>M31(F8gM!s=co#%}REW$Q~I*Py|BvJ&HRmh8`56o?R3qNVbpExrMgXY)Gy3R50je(Bh zP3#GmdgYtJdt(ooznl21iLGzA69&lK)aTH~u;k$<(!%yPA%&6L8%vqrNPHG=Wj7#) T5l15<`7I;)k&PP)=1=}V!9Z^j literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7a607750de8b61ed4431d07abf3b38c685e7929 GIT binary patch literal 42592 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 G`~EL##os9a literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f47445cde4e21ff670145b233c7766ced13e9d1 GIT binary patch literal 17293 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 vOo6RjDj!Jv!NeadzgT{>e6f5QIj{VD`Qh?Dpv@ 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 BWlI16 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8e2e8437b31c3a88395b7ab5ed9ada99d1a580f GIT binary patch literal 4930 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36ca54006c12fb9fa8dc6e5b0ae4094cf5afe303 GIT binary patch literal 26538 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 Ci;^z@ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9bfb5e321fbd265e9881881f9e8097a1695cd51e GIT binary patch literal 11230 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed23b80a0a59e49fdf8e06c957409296d6b43c1a GIT binary patch literal 52550 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

5JxeMG#AMg?Ee1d+FkNfb%lP z-0B3DFYQ}V?{T>esPci##Il}wL+@I+W2h4IYRKh>E5H6`NsEu%&nD2#^2+!lhg|zK-p{aiSk~+y|xVQ*TFjW->0cXT~QZ61- zn1U_9ClxlBwpCadX);u&;7&6osqaPK35R%3n801WW!_-^!14>0A_$5y@%1io_IHFc z;p&7J3hw*lUsEln@Gf%_b8+4&UJ2f6`+n`FC54~rIBCYGw49D;QJCQd$!Tt;qm*1} zCY?fR3d%$Xbd=?lW6CotEc1i5!*QACO#;qp#$?_~GfFd4gq1)R+44_=DhrzfS3FS+*72h^~Mp_P^ihYQmDnN%_PKklE^LyHu`MqS#XWs@=P7L zy39B9Eu^oW@He;}WPCBp)v0-S8Kv+ z%ACb~j%g;G26vX`b4>Fv7cB5me-6^Yj23Y1ZB!N2F4NkOF<&*Sk#9LkOSnW>TJd(n z^`P`MYh404kMshQ7_K#365gH&sjw?tMa%r?er@I2F&ikDO~L!Z?^RC;SLkRjw-?KF z8y!%+7+FEvK7}+2FMuy8q!lJLyo27>p0Sd-9fcXSrSg}S&p~EdAsKJC!hU?6;0{ED z>n-LGsddC-u6f!_^sS4$jNZz;IB>~@oe|`Bq00oN(Uw_93e_ueAApRaxwng#M7qYb zgXUg7ed zaIp1z5jn&CP6>M|l%{V_q$<3GzBli6Gd>}013`V{t{K!0>1~CXs1DnsuWCOgiy8fS z!@T8n9c9p`#QaJwu5bXz5xpxYcx1sFz?b1Vg3NY->m#S1o*0=O=%moZT!K-CP8D_nkeo5qq_%b3m z3GzOckL12mEem`W!D%D^gv)5g&&(+u&vZ-%xvAq8bCui?5#g>elDEOgk9qHqRt?`5 zaHHf#Gjrv}@WwLZnDI<|Grq?B4KtRi14d3zU8}l|DP;3EoMfl!edp}X>{TesOw=)n z`9yfo5pN@%ELR)zn+Vq9+pf10T;fQ9nF80``n&BhRXB~A&dgwDGM`$eB^gz1K1;3x z(mSSIvw3xpyTZ$4%m(?9cMbC#;ap}O^IY#e;2PTI%iR|);ANG2AbiN2_EFE1yKc}G zqzmB|F^icR);i5B5iVtxF`ea>^HwmA@O>b61664!S*cLKHNKQP?K@Z{x0-njvWEAG z?2Gwy9XHLBsmh$~S6QtxoMW^~;5Sx|QVr5ar6(tkkAKwdR#>rTO1X zg{tN1w`o|XP38KP>b0p;zhb5O8>01z9V&^KKWkJh(Q;tVK3!Wj>)Ea6fMWS8cWc+T zYs-#32DGdh^?u8~QT;mR@71n-*LIyd_HEfKs#n1_13LET(6dj$_8+wC)1hO(f*t#} n?>DehpN_o?^cs9C-h179cIe-&qt7Fn-*yr$R^C`KWi6#OU6BA>M+M*YVCdCjpO(xr&0XFPMotcHS;Z_p< z4LtJqc-yNd&)mG|d$SNq43o^;-^|;-kKgZYi&m>iVEt{a#y>qme&Jz$IdFIfTlK(j z!f8q}8d8ebO0CQeZG-L9$=uL2*h#&t5jH6KM7YbnQ^Gw#XLjiG#(;GE-xNZ1XtmNW zQ=NR6Xwf~0oo_4q3NxnbOkrw?ZK1gx_w@)^|c6WAriPAC|l{zW%_j!~~ zRHDGSXq;@&XZ_E;&8-+x+*2_zKa#cANQi24e@)=9=L^CEapmgzWAvTmSl}VJOdc@~=U=b2A6|!=rP(okO%26WS zgXaQcaT+Pb*ai91@4X%#7xHlUtw@WbS8E@^b2t?F(Qqpn4OODW+Bk|2qkW-<<7B+S zjzrE2xeNr(%C literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac4e1a13dedc5b11d7797b35751b53189f1594b9 GIT binary patch literal 19082 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52562870646707783c08e1b511d21e9b2b4691ca GIT binary patch literal 1121 zcmZ`(&rcIU6rR~%U79Um0~+v&X>&z5W!mT9y z8+hbjnyV+z+`Q;}yAXPDJccqv6v0wR~4Dv?Ypk#+|p9iOe2ZGMrIOL5!Sr30vNVQJw{oX{H zYrlM=Zx%APPua$#;)+V%e_-Fqp=Tu)j9aV z8SzMroi}V$7pWUfagOVSK32f3pMf#N&=WFq&Yd5G65|?g2507*U`F8CI3edDMmT}Y zbZ>pZ`g$@JN&ySRhKyxJW*AeLQ2BVbkXEQLohxL;uJSn~Sb|U-3uS#Jv@jRcdRoYR zcrGxO%0z3%F39h_?wi5)QXLMyma;s0{rnR|4hNz*8ti7nfzFJ0K2FlZWF+)poQ*fx zktlenHdCO83$r;IA_wD&sg3beh0w`U*czQh+N2?k=<(`2P8-*={0A6<)`5MA^Kc44 zID0mzf2)?^PDN-cuQK=GXd~<0`d_odYCumZ~ZPO}(Vp__FR{+#pDa6ROYYA!mu=4uD ussv`2D}LwnR7)&?EE@EN`m0jUb#p^V__iML9rCI1|0H@Gfea$L;`{|oUkVHW literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6f83dd6a8b7df43dc0aee5c2ae3f873de9b9776 GIT binary patch literal 2998 zcmZuzTTdHD6rR}|>t*e5zosOS(l)M2Xi|}oq)kJ?Ay%=8V$!NBs*&-mjltMt)#u+jP$(6|RBcprchPD^BydX%E9m9$OW(z={Q42fGO z6sE+fjLxlPMaHi_6qQw9K!=M`v0TVhvsFI_N^Or`Zv}@S_{5`}cp9gk&NWzB_e^eh z7B{^vZh1EE@*>>!93Jtyx#PLK+lzA7i}9#;j>o*77bH*lIo@+%d%e7u_Z<+gkN5Kd zsQdXKAA)*-5AzYI2l*%;gL=px=HvYQ0eMcn5s=^F6G|Qh`2xSF&4bi|`+U2~hZE;N`;4`v;%wJITz_exG1P$iS;Ueb&I8eYsq+A18QwT(W zqv+`qP$94A#ke8*K@tN9g9t+iV+a#XxPa0qz;{pr8$elTICQ_S%{Fytxkl80p7M&O zVYs`RGOUIsK{REEz|OcPhM^K8DC=SzDjBU496GafLw>?mhi$SKxMG_X?w5dGjO^eg zED@mlSQMrjlmxzn`Xl#%<%^z0)0Z1#Rb zOeIncG5t6#?NH%iLUxDJa%Ofud8~zdrMb=>*~K9A=pVq80PTrUn_8zG&d|_0vjdD| zwF5lTvpdKeudO$vlU{n1s+-@C(f)>v8;I0(9wx+luw(8tz_g*CRiSM^z?T-po6 z4)3)v3RO^E!zM{d%h>O2;|bSjOES0*EQ+76L4Z?GaWO)W4`^u{riekU z15>KqO*W_)h8_dCTQ?7_BdoiyhFQQKwCoK7nNqV<8)gx49eQvU1y+f;Rc|S+xRx%! z=hYLByv|^9IF(GZFuvv<%syiC$;|R>dM+XR7nc^2bKv3+5}!Uwe8JMQKtsl+tG8%!0bJb_l?KVnRG(RbmrIxZj;aPjl_&wvLF{|pYpi($Kjvdh>L z_%R4a#M}6(NrZP0t|GjPFol4-5+5MM0i;_`e=2Q@TiE|G!X1R$2zZC9OHy1$NyV~? z;2CI28}23eqp9wRdpP;Dxwzf@wZ#cl8w7wYCkN}oXqZUERokwMSAreR{g ztJw~`2D~xt4g~lZ6upnCKdE%wl+n5uh1aA&5~b;vw>N{33H(-z5$YcRjga<7;W6Gt NPgBX=9e3$K?tk4(qs;&S literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..470729083d72648c6b07e3d87020f78e969b14e8 GIT binary patch literal 22110 zcmYk^Wt3G{5{BW%-QC^Y-6bI*I6;E@#odETaN-^uBE)crVF?hy-5n0@E_0s#HCZd~ z)ZSI~)wlOK_cGm!nSM!$sq^-R*NkXiJtnose3B5*M%6=0�n}qQ-z318Onc0eieaJVKxZ2 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 I5cSvpA8zKVEC2ui literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc77ece459826b016670a8f7b0ff59b1b7aac328 GIT binary patch literal 46088 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..215dbf4a25753ebb366245d6e27d077043c66952 GIT binary patch literal 44537 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85290bdf633b1f2b28e0d2943ab679c922d3db93 GIT binary patch literal 47858 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 r%3o6A--oj4S!?;1qW&vSty42ZYKBP75Xbcb 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 T`A3erR(?r|zYk?I8~^%$ow2QY literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..547d2650d0b87e2945dc239e0c1367fc2d9aca3f GIT binary patch literal 44554 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 Qg*|W+`og@a?Hq)$ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..771e8c59f9a885d9f2fe2851fad13c1c1e709425 GIT binary patch literal 2225 zcmZ`)-ESL35Z~SV$l0+SHy>>RR2Wd9mS_VHfQkwNlC+J~I*_;sPJz|MyKyc#-?@A1 zLM%r@B&bjP5AkFErG4e8&%E(KnOQp_QIkFIcxFFlXJ+R&o0ZE&0_|1#cI#=GkiSqk z-&_#Bf}Vc_L=Zs}(xD-x$g_lXoY3jGp-ag_A{^l!5#dUD=!Bl|Hb~unNnu-^n)1?4 zq&B4fR%KgK)tM#G1qqp;p(CbVkZo$u zErhP+J>ee(p(lMYA%Y`vNW%%>3!-TGKun6#5eW;TEGqC{d_i0iPJ*RXbNxv#(eXF? zT3)cVUn|z2T|Q~28ZBnc8xiE4anC;lMiWg3`DQonF7oFx6`5K@#X{=E&K7dH)LnbScf0$l0LOd) zJr96PQy;zx?Z16_B=4U3)WVE8ZOESm^F9ct!8~R|LLq>=j+#PxCcEke$nHoM5b$%s zWeqg}I_kbci$<~Zlmw&IBn}`FR0+rlRe%MeDoCnGt|6HQatC^jYbxMQ(ROg^tt*_e z%3t#cy;_3)Hzu|wzta=ifcuzfWO}vJO=L%=T8b5=GNoo<$;gB=J4|UDYMw?N`3Wk* zq;pySy(`Q(zy3;V)GQt~hvYhv%T5k3GkcH(_i)7mkSp)=bmawbVEW<}p!fN|K}-Pd^+05O&$IGoS;uK!)_d893VA_4b&0A7=dH2?0>r4WJhWYzS3H7k4KCJS9rf zdv|^Avtgd06G|113WjPgaaS+G+gN<_5~agSDrPWxm=p-bVB5 z^`@C=ODG{dr64hFDZzsg1Qs&J-Ih{7g|el*u)NY-S!%8}9-66krnyYBUVDd&NJpk( z^3{{Rb$7t#O# literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3bf617dd2b30679d7883d4499b030c9192b84a72 GIT binary patch literal 1108 zcmZ8g!EVz)5Z$$%#IYSpL#epHnIN?l1w@MwLQQE!fvAvH2rJSmu{R;jIu5%|D^Lzd zsniqy0LT8)iW?{X0C9ntO-NJLn$eqCJG1Y-O1lFI@?dW@fkRMpgF9(XJ5b86e zn8Z|&goczNwuF_~p>41&oFo_K40c35DTD=sbHYuEVbS2c@De}t4K9cvDTO72U2!E@ z2p0@4imS3%5KC5y2#hZ(=y1#jUb5?p=-Ohtqh3_7`osWNaN-BO22$U_)k)N#;Q0Ao36e2p6IV;f+bh9TDb_$k*T-L4jeaRRgJf(d>6v zyDKtKuB3BnIN(zHFhjeHb^G0nF^O{}5|TMgc}#Fgh{Qw5A||{&x-c*fD4mmB@vLHL zM{&`X0c@UAU1Tg0O{Ew+C%<2BKWdz$ve$T*iuCy5$`0)G8oYnpc-d_=R5#-*gJ#rg zcDQN`x`Q=#%=>XF*CH@H=Gj`(ic|+(pUhkxe3VyU%pC}|45>^V%c1j6{#W3Ay78aT ztN%z=XbpS-&i!V>8PgtPNg59Y;()Oa!={+*m@&FElqXFFGX$M`?UJI`Bw1EzqkFt|#2kkV+onvM=A~Wqio=Ecq|Ah+s!OehP HewOUNu~ZQH literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20984c681e20c448ad3aa26f55795413595d2149 GIT binary patch literal 18735 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..756b0c7c75eba81b55dfc312bfc67820ac992eb8 GIT binary patch literal 3054 zcmZ`5O>f-Bb%tNd<$hR}72C4xViDLywy5KvEnp-_D?8FkRx7U@?Yck+6$6ShT5*@V zTo1W2q*5mf2zuxbXirjay5tAVt?0>@ra&%jfxvxlC|Od{9bz8ey!SZs=6y1$)jR^@ zUG1ar-?s?)2QDrT3l>jcrfmS6a2k^#^(iIX;AU(LP2beG65A5<$7$ zBi#8LePj6UD&ZyW9ue*e^Ns13dAUQH-dos{G^z4N!BFsQGLFStT99f>yMgS8?1fCW zg>0JYIue2~6LKlYL@$y1s*22L)aztGQL`QKY9dCVSdRuGj&_rTtD7BQ$Ks3qOq}ia zJmDg4mQ*!_?NX63JX*PNFzQW$o>143&a#9hk_*X(!C2MLnQVw3tDD*WI0}Q9jgvIW zqCLT6kVT1_9SAXIK^jI8i$w;SrpgWC@oum!vJkI&d7xo&q}u=l@hK<1!KrU@!?(EU z+uZUUe&cJhL$&G3eo5nH?j5Bkh6;crycU0Wk%^Vu4;(9@~*9 ziMTBVL_^b3Rx08hWf!h?-=9~(I5|7+l&UggAsm@9c1r&HWSqK7++o$8qgAZuDqo9or{lu5cSVvcwU( z8iLy(lFatocd&!hnd-?Kh@->gJp{KAlmMvN9;Vl1$igCFBazB^*tpWfG7&H3jo^fz*+Re2Ke{^kBa|z~mHv#0N585H@(+;i-e9Kv2 zHBAWxkjOHE4-kBWKx=fN7IJ?F^E(HCW4P2c4(?A==*+D;RHy1Cn|RD+4X`3l*8sVj zDDg7@)5GArXoUudoe$I=6-RrdD`1(z5@{JS(a7luJ)}8J>p(TNbx7Yj1owlr>_aoB z%j6I1hgNPJJGqsW`tFHwXy-OyDd!8IRqY|tED`)gOX{P=?ta_HtRP;LU{&+xu=d>aD0l)ER;#o()X*y|3^@%AXU0Q%!D zC}*M^(oQTbd-p=NX|*M0*TMYaMj{p|yO$TJ4ROtIybGYn^qUZMHhkHrAI_9c#da zMbyHJjm}zk?e}oXvyIK}(#!58VJA*{Jpr|ti|t8Ixhor>DqHJ9{nyt~3+>kG)2Uy# zH@fV3t6A3NM7i70^x->s$p}_a>UC>ZPOK}F&UfWq==g(-SJsXY{42PyZg{TYQ41;& zBtATK>Nzm2I;{fk&>31cW|3o5f#OmRrbVrHuHm@ee_U$71MBZy%P|h_PAeOD;FWTL zDU9)@({>#Yj)@8Z&kYFV`w*H?&N8EK&g;tECkvP`R^MJAn9zVbSke2XV$IEg4PRNv zgL-badw-n!X7%p}M~k|q_uv2+|61%JaqgRM7n^QTvvu{>wcS1UV-b%vkS{_8%X-r& zTtMXyY$>s&{Rw7@@nnH{>R=AzodYJCfm#Ztp$9*mW|pg=)HGJw&1?9RpgS{zZjOHm zlUTqHLzS^tlOQfQ@)I~r{sO_T5PXUN`>O6S%7v~A{~XzVQTcW8eS%z67Jep*Mjwhe zX6({^bi2}>3VYu}m?>t83)d>1x>2ngo<|J_qQIH?MEA&c(^Hi&iDMCBzNQjgt7=#J zzr?>RWeaGXsZLpm>85+CbP?0d_M$JnZ%)enys*G;u;-;%B&v6-#vHXwwD6qwKhj+7 Ag#Z8m literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c421c1c5b79ccb46e29973f4e726a797af439dcb GIT binary patch literal 1677 zcmZWoO>Y}F5G8k4E6Li`S7b*vjJC(>5W7wx$0>@U{)#PFwp*lI{ z*4&+3o+d`hZ&Lyvm~qMDZUWqNKV@} zcS4uAVV>l}0x5(=QVdI^6qZR@^J)GltdNSfGkh^zB1_uN^2cG7R53b0{(_%-hx{DF zHzry39S_yqf3QlihGlv8vLieeABf?2^otmFnNVKmkaY!nJ)IkJrQw~@t*!cVTBkeb z&4cY$WBY_2pYH89!{%!-f@q;V9@7m=S|F}JxI#k zQ;m5r%;_vzRR%)@`-m9t(JSm@-*}fH=6hrzVyUj0vf%CPdNaN3L7P7hkY_>t5HR{f zL5yNNK{v*&@d05Jn>Xk!j;%Q5@DW_(Ew0p>vl8fwxb|sPez^IRj1FQ_9z&w(`z>Hhhn{_o~qB{^{Cs6`tV+p zRM$ptL`9{(uKs9CK_1)Kg71@M0osNEn6{OF?n~L&(4YOUv-o>;PCaX%YhFu1{Rf?p zQ7RWGlzYs*%1>AR3=7H@C#;y|PuIsV@OcE}kw2X@2 z72_zni>1Y)WusN3^`xZ)@{%sBk1snx5(5Mzb&Pl{u7cMP1D!ng(A#U lN7o6eBQrm$y{f!F!P||Xv(Bo6i@0bw_#4x)9PHqV`9HYou@3+M literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd67637dee43311077f6cb4edb4d2e2781dbb059 GIT binary patch literal 2448 zcmZ`5+fExtbY}MA^G7SS;JlS6aYyADoDWIl07P@V5eSS8Q2mwz_xURBivJRLIW3I zqc*@LQ5OCw2|O_&DzKK{5}O1*n4zkD6t2*@jV2j=2qSMC+4nHzB&P#%!p_(^p(M9* z`vmsf$=wqIYbp24S{{%yA8!cKB=6~FV?sMwzbBO{0}<_U9wkxExkAFq#j|qT7@B8Y zg+ZWa#F%+`i1s~(_YUIf?ZUkO9cxF)Oy=*Ywlf*;!CL0L9fw)Q`Frxu`pQo`zoqJM z=Xn~ZuYS1m5HN>3GI_PL9_{XAQ7-TF!uDaMikCG7+g-YC|vxnJ;ArQPwjN zakqD*Dj>pb7#W6gjr!DsUxgkU#}`JtJ5uoD*8B_}U$^Ff99V^2(P|2*H*7Tli?N!j zBQ%NA4VGZ|ngR z3{GAQAa57Y?GpNO^38AaU90$1!`y2INbsj%kY);s~oDWDJD znOo)t+`YmA6)N1J1k6Y<1G3M8Z0`*HxpRWh+59<5uyAOrcO%_kKLg$>Z64pcoh`y& zks6EpQN9QnnySSxU)+US3b+fjzrr}XKyO@NzF%Cz*Z2f-791(H70X0b;avL(luVvs zsZ|(}+F9M+-rCk~oOU`=X-CN2en(-%sRf+Sq1xTtYVnO#?G`V!yVh#r-g~(9Y;%RL zwY1Z0J=kvP=?=tkyRVc?V1>8_#@gpl3yN(K@%EmSLP2i=_C^$4URiCeF1OY;AL+?X znsb??{mwoYVIJz5p_wLok&sDS>Z#`At?kzGvleeX-d=^x`bxu5Q%KE2lYop$(+Kiv zSnW_*?V&Ur?QlKT)z|RwM;O^dnCi4{ij7b0OOM$G#u*Dxjm}aA=TmH+G3s6-jF5fF z{-{|M=0kyE@XBS!lVb^rx?W36^bZb`CZ7WU&L(FRLKnlI8HnX3O-|UTR@g;VT7v6^ z;jC`>x?vS+gQlhxa#;6tWmwhC?*G~%f#)zXYzU~APmdSIq`huy=qb=gur6^9Zsgrm z^kal8oWJacae*<_+7w6aL7YMh%8$k(2o0=|udWUoMq9=)G^Q&@m^y1pEcUK1U}We| zk5p)-#B8533p`-eZ<#8+*{JEs?(VSi6`7$h^z~HXauZYC;y($~{-B#-n;GkNMFVsX zdhH~CU35GbNM_I)O{;Wd((h&_`c0k`?cqvd1EIv)yH{A{XUxD1gSzr5h;4p#deizB DPi#pI literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e4c29f4b0e4828a566ab490cd015497cdda6454 GIT binary patch literal 5800 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
oWfx>N3kAPG(w?sL|~5o#;V! zesfQ6>*3EfA4g+tJv#MB;lFL`jnilu#0-+vFxqN^-jQT32dXS>{$lfSuT@8@j#iy4 z7Om8Vl`RhRC6J{k*hn(6-44Q<)fN|b(jFcqH`u0Qwl+*U#Q@S8{dUnq!b4c?1I+8( ziCWwbuXiuh&*JMvXzE>Ug=PvG>&{NtQ{6>cd@J1y5TT}Wc=S*s11sH3un!woc8C2y zgad@Ps)JvJ*ts~3UrAh-zYfRaZxA7*T;?x>?&{s^nSi-nKyNQ?UPB~lB1>+zniM`A zz`n2n=jqIvpC1Ei_TuK?QnjPq$#P5^8j*-U}WjW-8cm}5*QQ@qco476%ggNoJD8L z@%X6dKQ}*f{}z9f`lpDI>0Ahk*#vWjlX@Sh#V4Egk2=@Hes=DVo#2x&a6}l`yG#;F z@^dthQK#RYI(m*_S)3M;^3RYHzXNGmkyHa+41rCAWJX#A!T{m$0c-+Ce~GH%#z8pF>8{_m zC<5xmWh0LU(iD=X>JqFTN-i0M+5LaomxZi8pbr~OPJN1_oNlyyoCs|_zXuYJbi$X| zjL!8&_(9t7Tg_11k%W~=+{@yZf{ql$#n|w~FMb`Ch+%`x)oR$Uj<7r)43BXs=*3#F l+JH+61D`kBSpQbC&hOEUTHLSHvwEI3+fYWanaSU1>VF367a9Nn literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..817a66fc8c1111fc4e164c6409b11dece41596e4 GIT binary patch literal 1957 zcmZ`)OK&4Z5bo}Ic#-NJxpaSAIfr+{^wHen6iy z_8U%ael|?LhLLQ65Jb?BM6^XI>MUfD)v_YHWt+JbI+5FQjc$jz$ZL6&Y!cxJ_ml`% z(i5wd7r6#0dlwYUm8mYSJ?p53OrNU3o>XO~ebl<~K_l&?Qu{ld;8{18W(LRS*9PKp zbGn5_cAFb3ys^V~YU`El04(47tm!Oif+9(a3esYNwyYOqp9&_dQ?F$k-4+h$j&y}9 za;M~kwsN3*B5!n06vWIaffRgEgx|soVw2Vkq*Kxb3?WP6AanQ2YJfRjeyC$0IFgS+ zq$H&ia>CBoIiV!AQu_qv+z|w%J0WK|To(k)(`wn%PBI!wrE+jpdz^RUZpyiGV5(eP z%LfJ;o7u+wkL_^`d*-D@Y^R4xrWLBDe#llHJXT;_)|76Y}6wuMZWN9q2`(7fLL;gQNi zC?CQ|JP;*Xpf2_4c;OnI`TPr;q-SL~3B<@YsIck<93*8&p)UiB@=?Qr zRx>DyC}vT-fnpv79{ChTf~aAH1v;L)5uX9;Kf&Sit-<&c`$1566jmKOko(d~X4|+j zUanke-{3D(9(N-70By;Uc)y(@g%)n-_NCgAu&b=WtfN3E~#+ zm%9PRaQR_2I54&3ClC|5PQH6^%m8t6Mknl?9$OPDWj(9U)ScAsIar;P#P6Eb9IW1h zRd2ewXjb#E`kAp%I0vx$4$f@Sn-T0GVT8{-NBch9E5gYN)OzV0s=hbdw^ilR8lC`{ zt?C5^tPEewnYY!2SpJam1Q|kM^xCP^>$SSV-qLQh*5o@C?PdqG`=r^xxwlc5_~I71E_#$Q<_-+RUY=fl;RQGN$!F0piv6cqxO|7 z(Gq1p`m6-2E*sC@C>p$Zt5^^tOy4{t(u<(S&?-G3={`{l6V%OofjlC|R9F*w7pP@| zm26iJUTyw5UVQcY>IF8%l)(O2Ewc=dVy#-?Yg>=&{As=R4Xm0(-BBEN`!Xy4tD;vQ zfQ4-s3AQ07GlxmB@!L1Tzl~8m#RW19fhMn!H*8>t0GafC7zy^42ci1RcbQY5%z}5Y<`xX4 zRLccjoc3r&a|*H6js%WPOvz<6IG;VWDV-?$*D~y^-DodJlE|=h#!}bOT*0QjFSE42 R!a_IL`R~j@N%(Zp{s*wFwHyEd literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ce6caa3048000728606fe1d581671d1f6980547 GIT binary patch literal 414 zcmYjN!AiqG5Y4u!l}J5$o@0CHwg*8dB1NiDkP21=OCW5r+h%F98+JFT>DTDdvwxGT zf8f!JZfgn-%nXki=Dm5c)A1Y|Kb>y$W&7t2{EwyuW1ITS7V0beMo8*XAQKr@qPI4gk&3j0C51v(Ei60OOKY3z9;lABnn5lo1H>x78?8gwZU zI6T1dDkVI@kxYBuwsnq&cvvAk>$z1s2&jyLpgIYHT9^ebZIzp<{dDs%pWe^j9d%@F z*q86=WaMw8TKms3k;O&-HX(ZLGg0_=JoGg;tbdT_XFMC&vw})BsO1l87W-OteEH|x P71}wyqi`L!eTseoIGuqV literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/big5freq.py b/env/Lib/site-packages/pip/_vendor/chardet/big5freq.py new file mode 100644 index 0000000..38f3251 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/chardet/big5freq.py @@ -0,0 +1,386 @@ +######################## 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 ######################### + +# Big5 frequency table +# by Taiwan's Mandarin Promotion Council +# +# +# 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/env/Lib/site-packages/pip/_vendor/chardet/big5prober.py b/env/Lib/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 0000000..98f9970 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py b/env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 0000000..c0395f4 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 0000000..5812cef --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py b/env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 0000000..eac4e59 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py b/env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7814776d4071b7b84c24b273cc0c5098b2ef9284 GIT binary patch literal 171 zcmd1j<>g`kg8#f4$&5hyF^Gc&gV-_YI8+D7aMbRQ|&;W*D#BKmHO6etMD6O6eYZ`1m0S14-t54AgukQ&a{DPH!-!FrHP=@`Gkt`^pe&oJ!KgKsKw#uZRxVfm< zF4KPM`f;&SHu??pn<5e0e`o!sXo*zppx2VSqH*G@-^kXb2aVvFd)vF&2h8)*XCswQ z3_m-{M@QUbCsOmelDt;Dtd->BypVj7nIp}!N^m77wKAl_&5_I%7t+X)ks_7Vs1|v3 zsMGXMf6K~AA$z?v<#_J!(NU(Bid@&FbT+9|!-k@f(_2sV_*q_w`b>8oJbd&J19QYj zbv4cf_K^Ie?xSn=7HFA)b6ad?rsJt?R@w6J5ysqrtw94VX92B{cDl7DU zo7tVg;8ZG&`N06g;OUEp_`LU*DkpJPJa)0Gm5tnfBcFC#JrTY!-jDG*lo;>QyYT1U zWADqoi@>mXaLF!$xqs!)g9T&W+&>P~E#_71s|eC?fm}ltU4$l9AI{m;mPxL*7eLj* zzhLuF__savD-m3!^VJBl@V2)gd_*K&uxDO7o_*`0{h2gVRq+g=f#-+Fy9RKE)I}00 zq{D0osH|bY>oJsFrfcOa6uCAeT^i7cE`g&r$y8SIBCn+G@#iq*y4=+KP$D}JY?$mW z*O>FkO0UO1rFhfMFg-jsQg52AvQqZ=K3bYyod#ek3V;@QA*tJM!|rkoPU&Pe&JQaT zf=$-PnB9JL(c`Z!-oe_d3!8q2(^-?$fIB7iv@q=*wS`pLZ8~G7RCaE|v6RAw0_A3- zQBiAY z>~sBu=uvze-2Z`&@s1gh;%f%5vSVKaA~fDrAfg2mu?f{p6CKA@K<)9?Aro7#BLJQ> zL4YE?O3XGicU}i11)RMFL;3i}J1C%AD4gJ`vGCMyO;a>rqa~WJedd{_*_~tVc<<7` zL{WX!6)hCO?(Ay^hChP>kpcjyEQt*%#5_}nQzQfgLL#I|1GPkiKzgP?jc+3z>Zd*a zWK|5;i|>KJc#i6r$WcDdrC3qydan-cwS+&F&GiFr+XsN|@s}?FjV@XL;z94rmoIs) z`BcMBUI8%~PC;vWu5^}X*eFOhH~akg|4aWU%MI?oKFnL4HAXct;RaA_!TRj8igoyXjq<+!@CC80T75cOnySY*}75=U@WgKM&4MS4KM zn4i~EwY-?R9I3{TpJkQd~a2E^JfVS=V-!hpT%$Dz-Os{gT?<%q6FjA zPyGaR5(e?NH^T56^-Efr3O*SC-Tn{2dEFJ~bysP19{1n>o|!H<0KY{`roQui3iu;fUh~U8pIW&KU>TP6p^2<< rCL+#_#swq!U0I81A%9Oasegnf^lr8iIN$IaVA3>5f0BHVf=~YkMv@pw literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py b/env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py new file mode 100644 index 0000000..6d6f93a --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py b/env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 0000000..68fba44 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/compat.py b/env/Lib/site-packages/pip/_vendor/chardet/compat.py new file mode 100644 index 0000000..8941572 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py b/env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 0000000..efd793a --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/enums.py b/env/Lib/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 0000000..0451207 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/escprober.py b/env/Lib/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 0000000..c70493f --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/escsm.py b/env/Lib/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 0000000..0069523 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py b/env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 0000000..20ce8f7 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py b/env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 0000000..b68078c --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py b/env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 0000000..345a060 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py b/env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 0000000..ed7a995 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py b/env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 0000000..35669cc --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py b/env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 0000000..697837b --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py b/env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 0000000..8446d2d --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py b/env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 0000000..b0e1bf4 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py b/env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 0000000..83fc082 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py b/env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 0000000..20044e4 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 0000000..e963a50 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 0000000..d99528e --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 0000000..484c652 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 0000000..bbc5cda --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 0000000..5594452 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 0000000..9a37db5 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py b/env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 0000000..43f4230 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py b/env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 0000000..7d1e8c2 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 0000000..6256ecf --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 0000000..530abe7 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py b/env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 0000000..8360d0f --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py b/env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc40f40a9a8e35b4320637637ed958cad0a7f142 GIT binary patch literal 176 zcmd1j<>g`kg8#f4$sqbMh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o11_#VV#ezbHE< zGCwE3%v{$kC$Ts?CN-}t#wRl=rZ}@CRkt89IXf{uwK%3Avp_$-EHy7BzeqnhBe5tY twM0KRwInemu_RGHK0Y%qvm`!Vub}c4hfQvNN@-529muj`CLqDW004G>EKL9a literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af4b11d31604e22127093feac4e2357703e83ee4 GIT binary patch literal 7938 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 NTNeJSt7Z1^{{u 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/env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 0000000..bdeef4e --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py b/env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 0000000..9e29623 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py b/env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 0000000..055a8ac --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py b/env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 0000000..6c3196c --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/chardet/version.py b/env/Lib/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 0000000..70369b9 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/colorama/__init__.py b/env/Lib/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 0000000..b149ed7 --- /dev/null +++ b/env/Lib/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/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d4a9b5333cb76f5018d67b81c4c58143e855630 GIT binary patch literal 419 zcmYjN%Sr<=6rIdurqfObxBUcX(N?q|h=`BUjpC+)7zRS@1PM(hLo$8&NB&Z_u3Wiy zqq!Er3pqFUbvXCxJnseGzVpMyr}ys={I}2tm;TwQhbpL$3=|?rg(OrFi4-OnK|YkR zN=TwQq@z-jsxImN<|Elt8Oi(~lYSM?gChAro~pnOi(0fUsrcTTz0Vg~YQq$xE#J1# zHq(YXe9ab17th`wo0mreRXMhH% HkJ9i5igs^N literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..35ca55c1a8ea491aa5270521a343a29f8fa185f6 GIT binary patch literal 2980 zcma)8-ER{|5Wl@U+vl^-HYOy{($@XPZL!-*EfQ2H{vxCpC$bZz9H!U9yCg>(+w5IJ ziGqY={*d-D|I)tp>7IE*s@j>o*fIH#IBS32*}0vWov*#2Wtj>*|5?|1BB?0nzP_FA!Z8m9^PkI~CCNzK>9j>9ZP(=bacDb%8w*9y%r zW31UpptCdwbWYMH&=+VP=sZgTKLzwfItTQeq|-oOqVqt{OWI{KC$V?)F(>lMNVm1LhYht!_T4z~ke!z=F=qU40 z;RbAYyHvl~eLm#d-3MUn-i_;b`mVp-WrMwL(|g?Yy?|XGxxH<7llk3|H!3@OY(R&+ zERW{yxMg?Xd!^9}VWCtf7&_<>KaCct06D@j8BUpvJT%*n%tmt$lm#&V$n1Uf$6H0P zd!~{zBz+b*l9L6Jrx0)!qJ~pyC*I=7mEQT4V>%v!TOhut zq^Em*=5ojHamEIDcrj8i_kObPN!eWPLvPQRZAOCo-hf@2ik(NXFy494(nT0PDrE{( ziUO4a^#awQQ4NBui)00&Py_q@cTS9_jl+iL|G5`ziNq!g+#uj00a3t-40cfy zy3hJggg$V0n27DU{oPZZH5|tqc!A@50CvfIN$VytNsg$m^ndsB(-V~@FSg*IunT26 zjxZf3DoB{89p~Au+mATB00L*SL^>W*g)abHf#GAs4JA$F$|;AV*B0@$+W=FCTNK(8 zG#?FG54I=*Ey|Kjia?XHs6msmNoA->Q`n?v8bXs5raZ_l_lG>hdhKC6ClAh19R}#Q zfXRshu0$!S@{iy(K?XC2lO>?8uYL&}nVS37vA)v!>bctZSFl4CKs8FzYbfDFlIr!9 zjn>yw(b*Z%$axRpwey81?yR&oD(!l4DnE+3bXDny`5r3j=c~}GmD;^;r}Ag*M@|o2 zKY4II359}O`22&`6-a135im4DIP;Ge=0{|w=Cgl`bOLntA9kMI-1alnq#{0m^5hr6LW*mU+&bL7F-YjRZP0|Bq=s$Mq@ALsou(<xr zEjvpyc8+G@*38*?dcnR(^H2a6g@FgYGvqA%7!-t`AQTYrj3J&e#50CyT!^j+G2=oT z;UPj7;Ss{`2oAy@2rfYDaPEY&M6B9`;0mqXsEgQAyU}Qg_=85Xxw0YjYID6I689@h zjn-O4=(PuxmWXZKU0!R5Si8|_tO={RymWU>if|ggiIgNk6cQ0nibOIad68(O(??s^ z8%Sj(b)@Q;jVh6fWJ%RPo*Bp+aK0a4yg}C(icU`bwAmGdaNKcjfH~d(lYms=QV*}e zLWuPjVuFQODIsQAhzT2Fs)c0)G$N!34B-jFCc+kihwv0(8=%FP0na=S2673R7*>wd zxwgs*JUH;AvdP+C`9rhfD$AISe^}{U$+$BFpINshItrPL# zs2$6`%1B!S}w#Bnd6vi*nMR*%4*~fx{tcYP|7@DD( V@XP7BRL;uH=jP+_IElk8`#-7WPcr}j literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc b/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae019648eeeb7d4243a1881fd0625b8a9e70eb08 GIT binary patch literal 7878 zcmaJ`TW}m#TJCfDGCdcKMzSnRzC<1Gl4yeM1P2J4^(NNMu{X+?va}dasfvB@zEQ<9RXp)T@xs%2V1eZp?yxK@VUzIvr+Y>t zIo?s7)8{|e|NQs!D;yikY509UHeWwo*0k>vF#0n9Tt|sMLgi^5YiZTw%c@MlyvjZ9 z=`Fo&RE@S-HQQFzYGdMxO1RmC99xTpUu)kLwNA$uy+6!3_z@I2H78PI&V1CZZ#%UJuorgY z@+GHMj~l@jb=90$)Pkr}6Mhgo9T7g+bv8rc)LJdIRV|K1<3Ts}v8L`vSb(Xqvnj&1 z)Ar--&~sjXEE=&tUw-+L^LV>~lNyoZ`7M8|7WYnhk6qk#A1exYa`xmvJvlWL;HDAz ztxcI3%+01_zIdvMDV+65W%0`)W z8BD6v#RorX6EPGa3TVVyUu&{H+vjVVD53*o$ZYvBu}F+7SWMs}jiA={)qRrcGXJ&DS2R-N=^@FPqJ{o5!%m_!9!6gCa8=J(l0(6baLg^J9&E(FRK zuKQF^v8su!NLo9O>3ae@aSl7qp(v~-joz7)Sf!gi7bkHRtB+v-()&+{^n$K?@<2N5 zr-lc90Y{Rx&*z8|P0-)~964mLO%Tn&`7|a?r4~)&|^`_C)qG{DKyBPBzH@!@sHLX2<7hKy1 z#)cMWcFRnozk8aeuW669vQd%6U%a<;bK%Z=?#