highlightjs-opl 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5277) hide show
  1. package/.local/python/bin/Activate.ps1 +247 -0
  2. package/.local/python/bin/activate +70 -0
  3. package/.local/python/bin/activate.csh +27 -0
  4. package/.local/python/bin/activate.fish +69 -0
  5. package/.local/python/bin/pip +8 -0
  6. package/.local/python/bin/pip3 +8 -0
  7. package/.local/python/bin/pip3.12 +8 -0
  8. package/.local/python/bin/pipenv +8 -0
  9. package/.local/python/bin/pipenv-resolver +8 -0
  10. package/.local/python/bin/virtualenv +8 -0
  11. package/.local/python/bin/wheel +8 -0
  12. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
  13. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/__init__.cpython-312.pyc +0 -0
  14. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/override.cpython-312.pyc +0 -0
  15. package/.local/python/lib/python3.12/site-packages/_distutils_hack/override.py +1 -0
  16. package/.local/python/lib/python3.12/site-packages/benchmarks/__pycache__/benchmark.cpython-312.pyc +0 -0
  17. package/.local/python/lib/python3.12/site-packages/benchmarks/benchmark.py +408 -0
  18. package/.local/python/lib/python3.12/site-packages/certifi/__init__.py +4 -0
  19. package/.local/python/lib/python3.12/site-packages/certifi/__main__.py +12 -0
  20. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  21. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  22. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
  23. package/.local/python/lib/python3.12/site-packages/certifi/cacert.pem +4494 -0
  24. package/.local/python/lib/python3.12/site-packages/certifi/core.py +83 -0
  25. package/.local/python/lib/python3.12/site-packages/certifi/py.typed +0 -0
  26. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
  27. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
  28. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/RECORD +15 -0
  29. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/REQUESTED +0 -0
  30. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
  31. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
  32. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
  33. package/.local/python/lib/python3.12/site-packages/distlib/__init__.py +33 -0
  34. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  35. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  36. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/database.cpython-312.pyc +0 -0
  37. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/index.cpython-312.pyc +0 -0
  38. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/locators.cpython-312.pyc +0 -0
  39. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
  40. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/markers.cpython-312.pyc +0 -0
  41. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
  42. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  43. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  44. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/util.cpython-312.pyc +0 -0
  45. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/version.cpython-312.pyc +0 -0
  46. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
  47. package/.local/python/lib/python3.12/site-packages/distlib/compat.py +1137 -0
  48. package/.local/python/lib/python3.12/site-packages/distlib/database.py +1329 -0
  49. package/.local/python/lib/python3.12/site-packages/distlib/index.py +508 -0
  50. package/.local/python/lib/python3.12/site-packages/distlib/locators.py +1295 -0
  51. package/.local/python/lib/python3.12/site-packages/distlib/manifest.py +384 -0
  52. package/.local/python/lib/python3.12/site-packages/distlib/markers.py +164 -0
  53. package/.local/python/lib/python3.12/site-packages/distlib/metadata.py +1031 -0
  54. package/.local/python/lib/python3.12/site-packages/distlib/resources.py +358 -0
  55. package/.local/python/lib/python3.12/site-packages/distlib/scripts.py +447 -0
  56. package/.local/python/lib/python3.12/site-packages/distlib/t32.exe +0 -0
  57. package/.local/python/lib/python3.12/site-packages/distlib/t64-arm.exe +0 -0
  58. package/.local/python/lib/python3.12/site-packages/distlib/t64.exe +0 -0
  59. package/.local/python/lib/python3.12/site-packages/distlib/util.py +1984 -0
  60. package/.local/python/lib/python3.12/site-packages/distlib/version.py +750 -0
  61. package/.local/python/lib/python3.12/site-packages/distlib/w32.exe +0 -0
  62. package/.local/python/lib/python3.12/site-packages/distlib/w64-arm.exe +0 -0
  63. package/.local/python/lib/python3.12/site-packages/distlib/w64.exe +0 -0
  64. package/.local/python/lib/python3.12/site-packages/distlib/wheel.py +1105 -0
  65. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/INSTALLER +1 -0
  66. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/LICENSE.txt +284 -0
  67. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/METADATA +118 -0
  68. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/RECORD +38 -0
  69. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/WHEEL +6 -0
  70. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/top_level.txt +1 -0
  71. package/.local/python/lib/python3.12/site-packages/distutils-precedence.pth +1 -0
  72. package/.local/python/lib/python3.12/site-packages/filelock/__init__.py +82 -0
  73. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/__init__.cpython-312.pyc +0 -0
  74. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_api.cpython-312.pyc +0 -0
  75. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_async_read_write.cpython-312.pyc +0 -0
  76. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_error.cpython-312.pyc +0 -0
  77. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_read_write.cpython-312.pyc +0 -0
  78. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_soft.cpython-312.pyc +0 -0
  79. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_unix.cpython-312.pyc +0 -0
  80. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_util.cpython-312.pyc +0 -0
  81. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_windows.cpython-312.pyc +0 -0
  82. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/asyncio.cpython-312.pyc +0 -0
  83. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/version.cpython-312.pyc +0 -0
  84. package/.local/python/lib/python3.12/site-packages/filelock/_api.py +578 -0
  85. package/.local/python/lib/python3.12/site-packages/filelock/_async_read_write.py +203 -0
  86. package/.local/python/lib/python3.12/site-packages/filelock/_error.py +30 -0
  87. package/.local/python/lib/python3.12/site-packages/filelock/_read_write.py +364 -0
  88. package/.local/python/lib/python3.12/site-packages/filelock/_soft.py +127 -0
  89. package/.local/python/lib/python3.12/site-packages/filelock/_unix.py +109 -0
  90. package/.local/python/lib/python3.12/site-packages/filelock/_util.py +53 -0
  91. package/.local/python/lib/python3.12/site-packages/filelock/_windows.py +100 -0
  92. package/.local/python/lib/python3.12/site-packages/filelock/asyncio.py +376 -0
  93. package/.local/python/lib/python3.12/site-packages/filelock/py.typed +0 -0
  94. package/.local/python/lib/python3.12/site-packages/filelock/version.py +34 -0
  95. package/.local/python/lib/python3.12/site-packages/filelock-3.25.0.dist-info/INSTALLER +1 -0
  96. package/.local/python/lib/python3.12/site-packages/filelock-3.25.0.dist-info/METADATA +38 -0
  97. package/.local/python/lib/python3.12/site-packages/filelock-3.25.0.dist-info/RECORD +28 -0
  98. package/.local/python/lib/python3.12/site-packages/filelock-3.25.0.dist-info/WHEEL +4 -0
  99. package/.local/python/lib/python3.12/site-packages/filelock-3.25.0.dist-info/licenses/LICENSE +21 -0
  100. package/.local/python/lib/python3.12/site-packages/packaging/__init__.py +15 -0
  101. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  102. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  103. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  104. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  105. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  106. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  107. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  108. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  109. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  110. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  111. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  112. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  113. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  114. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  115. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/version.cpython-312.pyc +0 -0
  116. package/.local/python/lib/python3.12/site-packages/packaging/_elffile.py +108 -0
  117. package/.local/python/lib/python3.12/site-packages/packaging/_manylinux.py +262 -0
  118. package/.local/python/lib/python3.12/site-packages/packaging/_musllinux.py +85 -0
  119. package/.local/python/lib/python3.12/site-packages/packaging/_parser.py +365 -0
  120. package/.local/python/lib/python3.12/site-packages/packaging/_structures.py +69 -0
  121. package/.local/python/lib/python3.12/site-packages/packaging/_tokenizer.py +193 -0
  122. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__init__.py +147 -0
  123. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  124. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  125. package/.local/python/lib/python3.12/site-packages/packaging/licenses/_spdx.py +799 -0
  126. package/.local/python/lib/python3.12/site-packages/packaging/markers.py +388 -0
  127. package/.local/python/lib/python3.12/site-packages/packaging/metadata.py +978 -0
  128. package/.local/python/lib/python3.12/site-packages/packaging/py.typed +0 -0
  129. package/.local/python/lib/python3.12/site-packages/packaging/pylock.py +635 -0
  130. package/.local/python/lib/python3.12/site-packages/packaging/requirements.py +86 -0
  131. package/.local/python/lib/python3.12/site-packages/packaging/specifiers.py +1068 -0
  132. package/.local/python/lib/python3.12/site-packages/packaging/tags.py +651 -0
  133. package/.local/python/lib/python3.12/site-packages/packaging/utils.py +158 -0
  134. package/.local/python/lib/python3.12/site-packages/packaging/version.py +792 -0
  135. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
  136. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/METADATA +107 -0
  137. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/RECORD +42 -0
  138. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
  139. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
  140. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
  141. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
  142. package/.local/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  143. package/.local/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  144. package/.local/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  145. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  146. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  147. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  148. package/.local/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  149. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  150. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  151. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  152. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  153. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  154. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  155. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  156. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  157. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  158. package/.local/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  159. package/.local/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  160. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  161. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  162. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  163. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  164. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  165. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  166. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  167. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  168. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  169. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  170. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  171. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  172. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  173. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  174. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  175. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +255 -0
  176. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
  177. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  178. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +195 -0
  179. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  180. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  181. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  182. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  183. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +447 -0
  184. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  185. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  186. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  187. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  188. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  189. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  190. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  191. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  192. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  193. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  194. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  195. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  196. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  197. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  198. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  199. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  200. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  201. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  202. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  203. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  204. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  205. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  206. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  207. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  208. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  209. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  210. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +203 -0
  211. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  212. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  213. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  214. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  215. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  216. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  217. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +810 -0
  218. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +398 -0
  219. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  220. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  221. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  222. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  223. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  224. package/.local/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  225. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  226. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  227. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  228. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  229. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  230. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  231. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  232. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  233. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  234. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  235. package/.local/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  236. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  237. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  238. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  239. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  240. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  241. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  242. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1125 -0
  243. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  244. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +440 -0
  245. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  246. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  247. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  248. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  249. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  250. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  251. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  252. package/.local/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  253. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  254. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  255. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  256. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  257. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  258. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  259. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  260. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  261. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  262. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  263. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  264. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  265. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  266. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
  267. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  268. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  269. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  270. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  271. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  272. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  273. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  274. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  275. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  276. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  277. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
  278. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  279. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  280. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  281. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  282. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  283. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
  284. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +227 -0
  285. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  286. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  287. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  288. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  289. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +92 -0
  290. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
  291. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +126 -0
  292. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +56 -0
  293. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  294. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  295. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  296. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  297. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  298. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  299. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  300. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  301. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  302. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  303. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  304. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +568 -0
  305. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  306. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/download.py +341 -0
  307. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  308. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/session.py +532 -0
  309. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  310. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  311. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  312. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  313. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  314. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  315. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  316. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  317. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  318. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  319. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  320. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  321. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  322. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  323. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  324. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  325. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  326. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  327. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  328. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  329. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  330. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  331. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  332. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  333. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +745 -0
  334. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +747 -0
  335. package/.local/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  336. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  337. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  338. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  339. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
  340. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  341. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  342. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  343. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  344. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  345. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +568 -0
  346. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  347. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
  348. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +631 -0
  349. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +828 -0
  350. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  351. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  352. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  353. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  354. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  355. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  356. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  357. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  358. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  359. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  360. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  361. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  362. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  363. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  364. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  365. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  366. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  367. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  368. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  369. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  370. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
  371. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
  372. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
  373. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  374. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
  375. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  376. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  377. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  378. package/.local/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +255 -0
  379. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  380. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  381. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  382. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  383. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  384. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  385. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  386. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  387. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  388. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  389. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  390. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  391. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  392. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  393. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  394. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  395. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  396. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  397. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  398. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  399. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  400. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  401. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  402. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  403. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  404. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  405. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  406. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  407. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  408. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  409. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  410. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  411. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  412. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +126 -0
  413. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  414. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  415. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  416. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +203 -0
  417. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  418. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  419. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  420. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  421. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  422. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  423. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +116 -0
  424. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  425. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  426. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  427. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +362 -0
  428. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  429. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  430. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  431. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  432. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  433. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  434. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  435. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  436. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  437. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  438. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  439. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  440. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  441. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  442. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  443. package/.local/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  444. package/.local/python/lib/python3.12/site-packages/pip/_vendor/README.rst +180 -0
  445. package/.local/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  446. package/.local/python/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  447. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  448. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  449. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  450. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  451. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  452. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  453. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  454. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  455. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  456. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  457. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  458. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  459. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  460. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  461. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  462. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  463. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  464. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  465. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  466. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  467. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  468. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  469. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  470. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  471. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  472. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  473. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  474. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  475. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  476. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  477. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  478. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  479. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
  480. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  481. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  482. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  483. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
  484. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
  485. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  486. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  487. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  488. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  489. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  490. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  491. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
  492. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  493. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  494. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  495. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
  496. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  497. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  498. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  499. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  500. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  501. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  502. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  503. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  504. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  505. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  506. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  507. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  508. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  509. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  510. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  511. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  512. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  513. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  514. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  515. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  516. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  517. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  518. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  519. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  520. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  521. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  522. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  523. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  524. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  525. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  526. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  527. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  528. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  529. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  530. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  531. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  532. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  533. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  534. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  535. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  536. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  537. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  538. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  539. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  540. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  541. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  542. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  543. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  544. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  545. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  546. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  547. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  548. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  549. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  550. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  551. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  552. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  553. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  554. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  555. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  556. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  557. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  558. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  559. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  560. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  561. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  562. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  563. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  564. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  565. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  566. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  567. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  568. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  569. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  570. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +365 -0
  571. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +69 -0
  572. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  573. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
  574. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  575. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  576. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  577. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +388 -0
  578. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +978 -0
  579. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  580. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +635 -0
  581. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +86 -0
  582. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
  583. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +651 -0
  584. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +158 -0
  585. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +792 -0
  586. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  587. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  588. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  589. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  590. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  591. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  592. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  593. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  594. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  595. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  596. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  597. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  598. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  599. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  600. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  601. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  602. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  603. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  604. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  605. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  606. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  607. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  608. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  609. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  610. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  611. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  612. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  613. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  614. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  615. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  616. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  617. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  618. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  619. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  620. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  621. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  622. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  623. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  624. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  625. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  626. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  627. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  628. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  629. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  630. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  631. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  632. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  633. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  634. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  635. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  636. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  637. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  638. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  639. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  640. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  641. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  642. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  643. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  644. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  645. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  646. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  647. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  648. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  649. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  650. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  651. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  652. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  653. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  654. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  655. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  656. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  657. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  658. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  659. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  660. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  661. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  662. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  663. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  664. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  665. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
  666. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  667. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  668. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  669. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  670. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  671. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  672. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  673. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  674. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  675. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  676. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  677. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  678. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  679. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  680. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  681. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  682. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  683. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  684. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  685. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  686. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +696 -0
  687. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  688. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  689. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
  690. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  691. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  692. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  693. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
  694. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
  695. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1039 -0
  696. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  697. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
  698. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  699. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  700. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1086 -0
  701. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  702. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  703. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  704. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  705. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  706. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  707. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  708. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  709. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  710. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  711. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  712. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  713. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  714. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  715. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  716. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  717. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  718. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  719. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  720. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  721. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  722. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  723. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  724. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  725. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  726. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  727. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  728. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  729. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  730. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  731. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  732. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  733. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  734. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  735. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  736. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  737. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  738. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  739. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  740. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  741. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  742. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  743. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  744. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  745. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  746. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  747. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  748. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  749. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  750. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  751. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  752. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  753. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  754. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  755. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  756. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  757. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  758. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  759. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  760. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  761. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  762. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  763. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  764. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  765. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  766. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  767. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  768. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  769. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  770. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  771. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  772. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  773. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  774. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  775. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  776. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  777. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  778. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  779. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  780. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  781. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  782. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  783. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  784. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  785. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  786. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  787. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  788. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  789. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  790. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  791. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  792. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  793. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  794. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  795. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  796. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  797. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  798. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  799. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  800. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  801. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  802. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  803. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  804. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  805. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  806. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  807. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  808. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  809. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  810. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  811. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  812. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  813. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  814. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  815. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  816. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  817. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  818. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  819. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  820. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  821. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  822. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  823. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  824. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  825. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  826. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  827. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  828. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  829. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  830. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  831. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  832. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  833. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  834. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  835. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  836. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  837. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  838. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  839. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  840. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  841. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  842. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  843. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  844. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  845. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  846. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  847. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  848. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  849. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  850. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  851. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  852. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  853. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  854. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  855. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  856. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  857. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  858. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  859. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  860. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  861. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  862. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  863. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  864. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  865. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  866. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  867. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  868. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  869. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  870. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  871. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  872. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  873. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  874. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  875. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  876. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  877. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  878. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  879. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  880. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  881. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  882. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  883. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +777 -0
  884. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  885. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  886. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  887. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  888. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  889. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  890. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  891. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  892. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  893. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  894. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  895. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  896. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  897. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  898. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  899. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  900. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  901. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  902. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  903. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  904. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  905. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  906. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  907. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  908. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  909. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  910. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  911. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  912. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  913. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  914. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  915. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  916. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  917. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  918. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  919. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  920. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  921. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  922. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  923. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  924. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  925. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  926. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  927. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  928. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  929. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  930. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  931. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  932. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  933. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  934. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  935. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  936. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  937. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  938. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  939. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  940. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  941. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  942. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  943. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  944. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  945. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  946. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  947. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  948. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  949. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  950. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  951. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  952. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  953. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  954. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  955. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  956. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  957. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  958. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
  959. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
  960. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  961. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  962. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  963. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  964. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  965. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  966. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  967. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  968. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  969. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  970. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  971. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  972. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  973. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  974. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  975. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  976. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  977. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  978. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  979. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  980. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  981. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  982. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  983. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  984. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  985. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  986. package/.local/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +19 -0
  987. package/.local/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  988. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
  989. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
  990. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
  991. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
  992. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
  993. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
  994. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
  995. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
  996. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  997. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  998. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  999. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1000. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1001. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1002. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1003. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1004. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1005. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1006. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1007. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1008. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1009. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1010. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1011. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1012. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1013. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1014. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1015. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1016. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1017. package/.local/python/lib/python3.12/site-packages/pipenv/__init__.py +49 -0
  1018. package/.local/python/lib/python3.12/site-packages/pipenv/__main__.py +4 -0
  1019. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__init__.cpython-312.pyc +0 -0
  1020. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__main__.cpython-312.pyc +0 -0
  1021. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__version__.cpython-312.pyc +0 -0
  1022. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/cmdparse.cpython-312.pyc +0 -0
  1023. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environment.cpython-312.pyc +0 -0
  1024. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environments.cpython-312.pyc +0 -0
  1025. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/exceptions.cpython-312.pyc +0 -0
  1026. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/help.cpython-312.pyc +0 -0
  1027. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/installers.cpython-312.pyc +0 -0
  1028. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/pep508checker.cpython-312.pyc +0 -0
  1029. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/project.cpython-312.pyc +0 -0
  1030. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/resolver.cpython-312.pyc +0 -0
  1031. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/shells.cpython-312.pyc +0 -0
  1032. package/.local/python/lib/python3.12/site-packages/pipenv/__version__.py +5 -0
  1033. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__init__.py +1 -0
  1034. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  1035. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/command.cpython-312.pyc +0 -0
  1036. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/options.cpython-312.pyc +0 -0
  1037. package/.local/python/lib/python3.12/site-packages/pipenv/cli/command.py +1208 -0
  1038. package/.local/python/lib/python3.12/site-packages/pipenv/cli/options.py +635 -0
  1039. package/.local/python/lib/python3.12/site-packages/pipenv/cmdparse.py +134 -0
  1040. package/.local/python/lib/python3.12/site-packages/pipenv/environment.py +832 -0
  1041. package/.local/python/lib/python3.12/site-packages/pipenv/environments.py +449 -0
  1042. package/.local/python/lib/python3.12/site-packages/pipenv/exceptions.py +411 -0
  1043. package/.local/python/lib/python3.12/site-packages/pipenv/help.py +86 -0
  1044. package/.local/python/lib/python3.12/site-packages/pipenv/installers.py +233 -0
  1045. package/.local/python/lib/python3.12/site-packages/pipenv/patched/README.md +11 -0
  1046. package/.local/python/lib/python3.12/site-packages/pipenv/patched/__init__.py +0 -0
  1047. package/.local/python/lib/python3.12/site-packages/pipenv/patched/__pycache__/__init__.cpython-312.pyc +0 -0
  1048. package/.local/python/lib/python3.12/site-packages/pipenv/patched/patched.txt +1 -0
  1049. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/COPYING +14 -0
  1050. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE +21 -0
  1051. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.APACHE +177 -0
  1052. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.BSD +23 -0
  1053. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.md +31 -0
  1054. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.txt +21 -0
  1055. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__init__.py +13 -0
  1056. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__main__.py +32 -0
  1057. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pip-runner__.py +50 -0
  1058. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  1059. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  1060. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  1061. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__init__.py +18 -0
  1062. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  1063. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  1064. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  1065. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  1066. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  1067. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  1068. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  1069. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  1070. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  1071. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/build_env.py +417 -0
  1072. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cache.py +291 -0
  1073. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__init__.py +3 -0
  1074. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  1075. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  1076. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  1077. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  1078. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  1079. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  1080. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  1081. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  1082. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  1083. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  1084. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  1085. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  1086. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  1087. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/autocompletion.py +184 -0
  1088. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/base_command.py +244 -0
  1089. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/cmdoptions.py +1110 -0
  1090. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/command_context.py +28 -0
  1091. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/index_command.py +175 -0
  1092. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main.py +80 -0
  1093. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main_parser.py +134 -0
  1094. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/parser.py +298 -0
  1095. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/progress_bars.py +151 -0
  1096. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/req_command.py +371 -0
  1097. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/spinners.py +235 -0
  1098. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/status_codes.py +6 -0
  1099. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__init__.py +139 -0
  1100. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  1101. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  1102. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  1103. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  1104. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  1105. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  1106. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  1107. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  1108. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  1109. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  1110. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  1111. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  1112. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  1113. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  1114. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  1115. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  1116. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  1117. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  1118. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  1119. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/cache.py +233 -0
  1120. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/check.py +68 -0
  1121. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/completion.py +137 -0
  1122. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/configuration.py +288 -0
  1123. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/debug.py +203 -0
  1124. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/download.py +144 -0
  1125. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/freeze.py +109 -0
  1126. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/hash.py +60 -0
  1127. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/help.py +42 -0
  1128. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/index.py +159 -0
  1129. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/inspect.py +94 -0
  1130. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/install.py +803 -0
  1131. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/list.py +400 -0
  1132. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/lock.py +169 -0
  1133. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/search.py +178 -0
  1134. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/show.py +231 -0
  1135. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/uninstall.py +115 -0
  1136. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/wheel.py +178 -0
  1137. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/configuration.py +396 -0
  1138. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__init__.py +21 -0
  1139. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  1140. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  1141. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  1142. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  1143. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  1144. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/base.py +55 -0
  1145. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/installed.py +33 -0
  1146. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/sdist.py +164 -0
  1147. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/wheel.py +44 -0
  1148. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/exceptions.py +898 -0
  1149. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__init__.py +1 -0
  1150. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  1151. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  1152. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  1153. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  1154. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/collector.py +494 -0
  1155. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/package_finder.py +1090 -0
  1156. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/sources.py +287 -0
  1157. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__init__.py +441 -0
  1158. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  1159. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  1160. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  1161. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  1162. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_distutils.py +173 -0
  1163. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_sysconfig.py +215 -0
  1164. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/base.py +82 -0
  1165. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/main.py +12 -0
  1166. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__init__.py +169 -0
  1167. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  1168. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  1169. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  1170. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  1171. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/_json.py +87 -0
  1172. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/base.py +685 -0
  1173. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__init__.py +6 -0
  1174. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1175. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  1176. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  1177. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  1178. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_compat.py +87 -0
  1179. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_dists.py +229 -0
  1180. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_envs.py +143 -0
  1181. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/pkg_resources.py +298 -0
  1182. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__init__.py +1 -0
  1183. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  1184. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  1185. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  1186. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  1187. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  1188. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  1189. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  1190. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/pylock.cpython-312.pyc +0 -0
  1191. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  1192. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  1193. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  1194. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  1195. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  1196. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/candidate.py +25 -0
  1197. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/direct_url.py +227 -0
  1198. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/format_control.py +78 -0
  1199. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/index.py +28 -0
  1200. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/installation_report.py +59 -0
  1201. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/link.py +613 -0
  1202. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/pylock.py +188 -0
  1203. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/scheme.py +25 -0
  1204. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/search_scope.py +137 -0
  1205. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/selection_prefs.py +53 -0
  1206. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/target_python.py +122 -0
  1207. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/wheel.py +80 -0
  1208. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__init__.py +1 -0
  1209. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  1210. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  1211. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  1212. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  1213. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  1214. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  1215. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  1216. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  1217. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/auth.py +564 -0
  1218. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/cache.py +128 -0
  1219. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py +342 -0
  1220. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/lazy_wheel.py +215 -0
  1221. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/session.py +528 -0
  1222. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/utils.py +100 -0
  1223. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/xmlrpc.py +62 -0
  1224. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__init__.py +0 -0
  1225. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  1226. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  1227. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  1228. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  1229. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__init__.py +0 -0
  1230. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  1231. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  1232. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  1233. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  1234. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  1235. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  1236. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/build_tracker.py +140 -0
  1237. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata.py +38 -0
  1238. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata_editable.py +41 -0
  1239. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel.py +38 -0
  1240. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel_editable.py +47 -0
  1241. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/check.py +175 -0
  1242. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/freeze.py +259 -0
  1243. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__init__.py +1 -0
  1244. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  1245. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  1246. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/wheel.py +746 -0
  1247. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/prepare.py +748 -0
  1248. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/pyproject.py +123 -0
  1249. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__init__.py +103 -0
  1250. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  1251. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  1252. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  1253. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  1254. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  1255. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  1256. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  1257. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/constructors.py +566 -0
  1258. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_dependency_group.py +77 -0
  1259. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_file.py +619 -0
  1260. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_install.py +828 -0
  1261. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_set.py +83 -0
  1262. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_uninstall.py +639 -0
  1263. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__init__.py +0 -0
  1264. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  1265. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  1266. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/base.py +22 -0
  1267. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__init__.py +0 -0
  1268. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  1269. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  1270. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/resolver.py +598 -0
  1271. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  1272. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1273. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  1274. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  1275. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  1276. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  1277. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  1278. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  1279. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  1280. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  1281. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/base.py +142 -0
  1282. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/candidates.py +595 -0
  1283. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/factory.py +845 -0
  1284. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  1285. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/provider.py +285 -0
  1286. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  1287. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/requirements.py +247 -0
  1288. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  1289. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/self_outdated_check.py +262 -0
  1290. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__init__.py +0 -0
  1291. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1292. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  1293. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  1294. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  1295. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  1296. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  1297. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  1298. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  1299. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  1300. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  1301. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  1302. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  1303. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  1304. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  1305. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  1306. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  1307. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  1308. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  1309. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  1310. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  1311. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  1312. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  1313. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  1314. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  1315. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  1316. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_jaraco_text.py +109 -0
  1317. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_log.py +38 -0
  1318. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/appdirs.py +53 -0
  1319. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compat.py +85 -0
  1320. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compatibility_tags.py +201 -0
  1321. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/datetime.py +10 -0
  1322. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/deprecation.py +126 -0
  1323. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/direct_url_helpers.py +87 -0
  1324. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/egg_link.py +81 -0
  1325. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/entrypoints.py +88 -0
  1326. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filesystem.py +164 -0
  1327. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filetypes.py +25 -0
  1328. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/glibc.py +102 -0
  1329. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/hashes.py +150 -0
  1330. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/logging.py +364 -0
  1331. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/misc.py +765 -0
  1332. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/packaging.py +44 -0
  1333. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/retry.py +45 -0
  1334. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/subprocess.py +248 -0
  1335. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/temp_dir.py +294 -0
  1336. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/unpacking.py +362 -0
  1337. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/urls.py +55 -0
  1338. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/virtualenv.py +105 -0
  1339. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/wheel.py +133 -0
  1340. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__init__.py +15 -0
  1341. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  1342. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  1343. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  1344. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  1345. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  1346. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  1347. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/bazaar.py +130 -0
  1348. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/git.py +571 -0
  1349. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/mercurial.py +186 -0
  1350. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/subversion.py +335 -0
  1351. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/versioncontrol.py +693 -0
  1352. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/wheel_builder.py +261 -0
  1353. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__init__.py +117 -0
  1354. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  1355. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1356. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__init__.py +29 -0
  1357. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  1358. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  1359. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  1360. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  1361. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  1362. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  1363. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  1364. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  1365. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  1366. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/_cmd.py +70 -0
  1367. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/adapter.py +168 -0
  1368. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/cache.py +75 -0
  1369. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  1370. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  1371. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  1372. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  1373. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  1374. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  1375. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/controller.py +511 -0
  1376. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  1377. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/heuristics.py +157 -0
  1378. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/py.typed +0 -0
  1379. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/serialize.py +146 -0
  1380. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/wrapper.py +43 -0
  1381. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/LICENSE +20 -0
  1382. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__init__.py +4 -0
  1383. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__main__.py +12 -0
  1384. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  1385. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  1386. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  1387. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/cacert.pem +4800 -0
  1388. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/core.py +83 -0
  1389. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/py.typed +0 -0
  1390. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  1391. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__init__.py +13 -0
  1392. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__main__.py +65 -0
  1393. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  1394. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  1395. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  1396. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  1397. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  1398. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  1399. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_implementation.py +209 -0
  1400. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  1401. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  1402. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  1403. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/py.typed +0 -0
  1404. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt +284 -0
  1405. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py +33 -0
  1406. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1407. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  1408. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  1409. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  1410. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  1411. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/compat.py +1137 -0
  1412. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/resources.py +358 -0
  1413. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/scripts.py +447 -0
  1414. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t32.exe +0 -0
  1415. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64-arm.exe +0 -0
  1416. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64.exe +0 -0
  1417. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/util.py +1984 -0
  1418. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w32.exe +0 -0
  1419. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64-arm.exe +0 -0
  1420. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64.exe +0 -0
  1421. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/LICENSE +202 -0
  1422. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__init__.py +54 -0
  1423. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__main__.py +4 -0
  1424. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  1425. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  1426. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  1427. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/distro.py +1403 -0
  1428. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/py.typed +0 -0
  1429. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/LICENSE.md +31 -0
  1430. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__init__.py +45 -0
  1431. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  1432. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  1433. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  1434. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  1435. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  1436. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  1437. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  1438. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  1439. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/codec.py +122 -0
  1440. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/compat.py +15 -0
  1441. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/core.py +437 -0
  1442. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/idnadata.py +4243 -0
  1443. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/intranges.py +57 -0
  1444. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/package_data.py +1 -0
  1445. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/py.typed +0 -0
  1446. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/uts46data.py +8681 -0
  1447. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/COPYING +14 -0
  1448. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__init__.py +55 -0
  1449. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  1450. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  1451. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  1452. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  1453. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/exceptions.py +48 -0
  1454. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/ext.py +170 -0
  1455. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/fallback.py +929 -0
  1456. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE +3 -0
  1457. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1458. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1459. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__init__.py +15 -0
  1460. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  1461. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  1462. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  1463. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  1464. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  1465. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  1466. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  1467. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  1468. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  1469. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  1470. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  1471. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  1472. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  1473. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  1474. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_elffile.py +109 -0
  1475. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_manylinux.py +262 -0
  1476. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_musllinux.py +85 -0
  1477. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_parser.py +353 -0
  1478. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_structures.py +61 -0
  1479. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_tokenizer.py +195 -0
  1480. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__init__.py +145 -0
  1481. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  1482. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  1483. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/_spdx.py +759 -0
  1484. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/markers.py +362 -0
  1485. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/metadata.py +862 -0
  1486. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/py.typed +0 -0
  1487. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/requirements.py +91 -0
  1488. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/specifiers.py +1019 -0
  1489. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/tags.py +656 -0
  1490. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/utils.py +163 -0
  1491. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/version.py +582 -0
  1492. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE +17 -0
  1493. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE.txt +21 -0
  1494. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__init__.py +3676 -0
  1495. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  1496. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__init__.py +631 -0
  1497. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__main__.py +55 -0
  1498. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  1499. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  1500. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  1501. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  1502. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  1503. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  1504. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  1505. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  1506. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/android.py +249 -0
  1507. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/api.py +299 -0
  1508. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/macos.py +146 -0
  1509. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/py.typed +0 -0
  1510. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/unix.py +272 -0
  1511. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/version.py +34 -0
  1512. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/windows.py +272 -0
  1513. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__init__.py +82 -0
  1514. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__main__.py +17 -0
  1515. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  1516. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  1517. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  1518. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  1519. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  1520. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  1521. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  1522. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  1523. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  1524. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  1525. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  1526. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  1527. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  1528. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  1529. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  1530. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/console.py +70 -0
  1531. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filter.py +70 -0
  1532. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__init__.py +940 -0
  1533. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  1534. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatter.py +129 -0
  1535. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__init__.py +157 -0
  1536. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  1537. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  1538. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  1539. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexer.py +963 -0
  1540. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__init__.py +362 -0
  1541. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  1542. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  1543. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  1544. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  1545. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/python.py +1201 -0
  1546. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/modeline.py +43 -0
  1547. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/plugin.py +72 -0
  1548. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/regexopt.py +91 -0
  1549. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/scanner.py +104 -0
  1550. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/sphinxext.py +247 -0
  1551. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/style.py +203 -0
  1552. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__init__.py +61 -0
  1553. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  1554. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  1555. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/_mapping.py +54 -0
  1556. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/token.py +214 -0
  1557. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/unistring.py +153 -0
  1558. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/util.py +324 -0
  1559. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1560. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  1561. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  1562. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  1563. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  1564. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  1565. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  1566. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  1567. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  1568. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/py.typed +0 -0
  1569. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/LICENSE +175 -0
  1570. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__init__.py +179 -0
  1571. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  1572. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  1573. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  1574. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  1575. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  1576. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  1577. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  1578. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  1579. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  1580. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  1581. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  1582. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  1583. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  1584. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  1585. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  1586. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  1587. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  1588. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  1589. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__version__.py +14 -0
  1590. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/_internal_utils.py +50 -0
  1591. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/adapters.py +696 -0
  1592. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/api.py +157 -0
  1593. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/auth.py +314 -0
  1594. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/certs.py +17 -0
  1595. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/compat.py +90 -0
  1596. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/cookies.py +561 -0
  1597. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/exceptions.py +151 -0
  1598. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/help.py +127 -0
  1599. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/hooks.py +33 -0
  1600. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/models.py +1039 -0
  1601. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/packages.py +25 -0
  1602. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/sessions.py +831 -0
  1603. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/status_codes.py +128 -0
  1604. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/structures.py +99 -0
  1605. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/utils.py +1086 -0
  1606. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/LICENSE +13 -0
  1607. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__init__.py +27 -0
  1608. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1609. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  1610. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  1611. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  1612. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/providers.py +196 -0
  1613. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/py.typed +0 -0
  1614. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/reporters.py +55 -0
  1615. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  1616. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  1617. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  1618. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  1619. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  1620. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  1621. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  1622. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  1623. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  1624. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  1625. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/structs.py +209 -0
  1626. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__init__.py +177 -0
  1627. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__main__.py +245 -0
  1628. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  1629. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  1630. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  1631. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  1632. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  1633. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  1634. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  1635. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  1636. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  1637. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  1638. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  1639. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  1640. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  1641. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  1642. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  1643. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  1644. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  1645. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  1646. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  1647. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  1648. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  1649. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  1650. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  1651. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  1652. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  1653. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  1654. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  1655. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  1656. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  1657. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  1658. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  1659. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  1660. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  1661. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  1662. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  1663. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  1664. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  1665. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  1666. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  1667. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  1668. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  1669. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  1670. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  1671. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  1672. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  1673. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  1674. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  1675. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  1676. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  1677. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  1678. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  1679. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  1680. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  1681. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  1682. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  1683. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  1684. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  1685. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  1686. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  1687. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  1688. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  1689. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  1690. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  1691. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  1692. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  1693. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  1694. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  1695. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  1696. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  1697. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  1698. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  1699. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  1700. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  1701. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  1702. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  1703. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  1704. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  1705. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_cell_widths.py +454 -0
  1706. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_codes.py +3610 -0
  1707. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_replace.py +32 -0
  1708. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_export_format.py +76 -0
  1709. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_extension.py +10 -0
  1710. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_fileno.py +24 -0
  1711. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_inspect.py +268 -0
  1712. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_log_render.py +94 -0
  1713. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_loop.py +43 -0
  1714. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_null_file.py +69 -0
  1715. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_palettes.py +309 -0
  1716. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_pick.py +17 -0
  1717. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_ratio.py +153 -0
  1718. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_spinners.py +482 -0
  1719. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_stack.py +16 -0
  1720. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_timer.py +19 -0
  1721. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_win32_console.py +661 -0
  1722. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows.py +71 -0
  1723. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows_renderer.py +56 -0
  1724. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_wrap.py +93 -0
  1725. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/abc.py +33 -0
  1726. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/align.py +306 -0
  1727. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/ansi.py +241 -0
  1728. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/bar.py +93 -0
  1729. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/box.py +474 -0
  1730. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/cells.py +174 -0
  1731. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color.py +621 -0
  1732. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color_triplet.py +38 -0
  1733. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/columns.py +187 -0
  1734. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/console.py +2680 -0
  1735. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/constrain.py +37 -0
  1736. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/containers.py +167 -0
  1737. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/control.py +219 -0
  1738. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/default_styles.py +193 -0
  1739. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/diagnose.py +39 -0
  1740. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/emoji.py +91 -0
  1741. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/errors.py +34 -0
  1742. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/file_proxy.py +57 -0
  1743. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/filesize.py +88 -0
  1744. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/highlighter.py +232 -0
  1745. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/json.py +139 -0
  1746. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/jupyter.py +101 -0
  1747. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/layout.py +442 -0
  1748. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live.py +400 -0
  1749. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live_render.py +106 -0
  1750. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/logging.py +297 -0
  1751. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/markup.py +251 -0
  1752. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/measure.py +151 -0
  1753. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/padding.py +141 -0
  1754. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pager.py +34 -0
  1755. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/palette.py +100 -0
  1756. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/panel.py +317 -0
  1757. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pretty.py +1016 -0
  1758. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress.py +1715 -0
  1759. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress_bar.py +223 -0
  1760. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/prompt.py +400 -0
  1761. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/protocol.py +42 -0
  1762. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/py.typed +0 -0
  1763. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/region.py +10 -0
  1764. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/repr.py +149 -0
  1765. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/rule.py +130 -0
  1766. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/scope.py +86 -0
  1767. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/screen.py +54 -0
  1768. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/segment.py +752 -0
  1769. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/spinner.py +132 -0
  1770. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/status.py +131 -0
  1771. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/style.py +792 -0
  1772. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/styled.py +42 -0
  1773. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/syntax.py +985 -0
  1774. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/table.py +1006 -0
  1775. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/terminal_theme.py +153 -0
  1776. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/text.py +1361 -0
  1777. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/theme.py +115 -0
  1778. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/themes.py +5 -0
  1779. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/traceback.py +899 -0
  1780. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/tree.py +257 -0
  1781. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/LICENSE +21 -0
  1782. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__init__.py +8 -0
  1783. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  1784. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  1785. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  1786. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  1787. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_parser.py +777 -0
  1788. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_re.py +115 -0
  1789. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_types.py +10 -0
  1790. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/py.typed +1 -0
  1791. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/LICENSE +21 -0
  1792. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__init__.py +4 -0
  1793. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  1794. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  1795. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/_writer.py +229 -0
  1796. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/py.typed +1 -0
  1797. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/LICENSE +21 -0
  1798. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__init__.py +36 -0
  1799. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  1800. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  1801. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  1802. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  1803. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  1804. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  1805. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_api.py +343 -0
  1806. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_macos.py +573 -0
  1807. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_openssl.py +70 -0
  1808. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1809. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_windows.py +569 -0
  1810. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/py.typed +0 -0
  1811. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1812. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__init__.py +102 -0
  1813. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  1814. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  1815. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  1816. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  1817. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  1818. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  1819. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  1820. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  1821. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  1822. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  1823. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  1824. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_collections.py +355 -0
  1825. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_version.py +2 -0
  1826. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connection.py +572 -0
  1827. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connectionpool.py +1140 -0
  1828. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1829. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  1830. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  1831. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  1832. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  1833. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  1834. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  1835. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  1836. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  1837. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  1838. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  1839. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  1840. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  1841. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  1842. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  1843. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  1844. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  1845. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  1846. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  1847. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/socks.py +216 -0
  1848. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/exceptions.py +323 -0
  1849. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/fields.py +274 -0
  1850. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/filepost.py +98 -0
  1851. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__init__.py +0 -0
  1852. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  1853. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  1854. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  1855. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  1856. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  1857. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  1858. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  1859. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  1860. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/six.py +1076 -0
  1861. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/poolmanager.py +540 -0
  1862. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/request.py +191 -0
  1863. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/response.py +879 -0
  1864. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__init__.py +49 -0
  1865. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  1866. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  1867. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  1868. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  1869. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  1870. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  1871. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  1872. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  1873. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  1874. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  1875. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  1876. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  1877. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  1878. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/connection.py +149 -0
  1879. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/proxy.py +57 -0
  1880. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/queue.py +22 -0
  1881. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/request.py +137 -0
  1882. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/response.py +107 -0
  1883. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/retry.py +622 -0
  1884. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_.py +504 -0
  1885. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1886. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  1887. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/timeout.py +271 -0
  1888. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/url.py +435 -0
  1889. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/wait.py +152 -0
  1890. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/vendor.txt +19 -0
  1891. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/py.typed +4 -0
  1892. package/.local/python/lib/python3.12/site-packages/pipenv/pep508checker.py +39 -0
  1893. package/.local/python/lib/python3.12/site-packages/pipenv/pipenv.1 +567 -0
  1894. package/.local/python/lib/python3.12/site-packages/pipenv/project.py +1687 -0
  1895. package/.local/python/lib/python3.12/site-packages/pipenv/resolver.py +512 -0
  1896. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__init__.py +0 -0
  1897. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/__init__.cpython-312.pyc +0 -0
  1898. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/audit.cpython-312.pyc +0 -0
  1899. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/check.cpython-312.pyc +0 -0
  1900. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clean.cpython-312.pyc +0 -0
  1901. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clear.cpython-312.pyc +0 -0
  1902. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/graph.cpython-312.pyc +0 -0
  1903. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/install.cpython-312.pyc +0 -0
  1904. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/lock.cpython-312.pyc +0 -0
  1905. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/outdated.cpython-312.pyc +0 -0
  1906. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/requirements.cpython-312.pyc +0 -0
  1907. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/scan.cpython-312.pyc +0 -0
  1908. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/shell.cpython-312.pyc +0 -0
  1909. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/sync.cpython-312.pyc +0 -0
  1910. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/uninstall.cpython-312.pyc +0 -0
  1911. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/update.cpython-312.pyc +0 -0
  1912. package/.local/python/lib/python3.12/site-packages/pipenv/routines/audit.py +242 -0
  1913. package/.local/python/lib/python3.12/site-packages/pipenv/routines/check.py +444 -0
  1914. package/.local/python/lib/python3.12/site-packages/pipenv/routines/clean.py +77 -0
  1915. package/.local/python/lib/python3.12/site-packages/pipenv/routines/clear.py +37 -0
  1916. package/.local/python/lib/python3.12/site-packages/pipenv/routines/graph.py +111 -0
  1917. package/.local/python/lib/python3.12/site-packages/pipenv/routines/install.py +728 -0
  1918. package/.local/python/lib/python3.12/site-packages/pipenv/routines/lock.py +108 -0
  1919. package/.local/python/lib/python3.12/site-packages/pipenv/routines/outdated.py +92 -0
  1920. package/.local/python/lib/python3.12/site-packages/pipenv/routines/requirements.py +134 -0
  1921. package/.local/python/lib/python3.12/site-packages/pipenv/routines/scan.py +508 -0
  1922. package/.local/python/lib/python3.12/site-packages/pipenv/routines/shell.py +192 -0
  1923. package/.local/python/lib/python3.12/site-packages/pipenv/routines/sync.py +64 -0
  1924. package/.local/python/lib/python3.12/site-packages/pipenv/routines/uninstall.py +218 -0
  1925. package/.local/python/lib/python3.12/site-packages/pipenv/routines/update.py +676 -0
  1926. package/.local/python/lib/python3.12/site-packages/pipenv/shells.py +342 -0
  1927. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__init__.py +8 -0
  1928. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1929. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/constants.cpython-312.pyc +0 -0
  1930. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/dependencies.cpython-312.pyc +0 -0
  1931. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/display.cpython-312.pyc +0 -0
  1932. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/environment.cpython-312.pyc +0 -0
  1933. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
  1934. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/fileutils.cpython-312.pyc +0 -0
  1935. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/funktools.cpython-312.pyc +0 -0
  1936. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/indexes.cpython-312.pyc +0 -0
  1937. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/internet.cpython-312.pyc +0 -0
  1938. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/locking.cpython-312.pyc +0 -0
  1939. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/markers.cpython-312.pyc +0 -0
  1940. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pip.cpython-312.pyc +0 -0
  1941. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pipfile.cpython-312.pyc +0 -0
  1942. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/processes.cpython-312.pyc +0 -0
  1943. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/project.cpython-312.pyc +0 -0
  1944. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  1945. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirements.cpython-312.pyc +0 -0
  1946. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirementslib.cpython-312.pyc +0 -0
  1947. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/resolver.cpython-312.pyc +0 -0
  1948. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/shell.cpython-312.pyc +0 -0
  1949. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/toml.cpython-312.pyc +0 -0
  1950. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  1951. package/.local/python/lib/python3.12/site-packages/pipenv/utils/constants.py +50 -0
  1952. package/.local/python/lib/python3.12/site-packages/pipenv/utils/dependencies.py +1413 -0
  1953. package/.local/python/lib/python3.12/site-packages/pipenv/utils/display.py +54 -0
  1954. package/.local/python/lib/python3.12/site-packages/pipenv/utils/environment.py +52 -0
  1955. package/.local/python/lib/python3.12/site-packages/pipenv/utils/exceptions.py +97 -0
  1956. package/.local/python/lib/python3.12/site-packages/pipenv/utils/fileutils.py +248 -0
  1957. package/.local/python/lib/python3.12/site-packages/pipenv/utils/funktools.py +452 -0
  1958. package/.local/python/lib/python3.12/site-packages/pipenv/utils/indexes.py +132 -0
  1959. package/.local/python/lib/python3.12/site-packages/pipenv/utils/internet.py +146 -0
  1960. package/.local/python/lib/python3.12/site-packages/pipenv/utils/locking.py +543 -0
  1961. package/.local/python/lib/python3.12/site-packages/pipenv/utils/markers.py +663 -0
  1962. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pip.py +147 -0
  1963. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pipfile.py +414 -0
  1964. package/.local/python/lib/python3.12/site-packages/pipenv/utils/processes.py +77 -0
  1965. package/.local/python/lib/python3.12/site-packages/pipenv/utils/project.py +121 -0
  1966. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pylock.py +752 -0
  1967. package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirements.py +389 -0
  1968. package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirementslib.py +732 -0
  1969. package/.local/python/lib/python3.12/site-packages/pipenv/utils/resolver.py +1172 -0
  1970. package/.local/python/lib/python3.12/site-packages/pipenv/utils/shell.py +558 -0
  1971. package/.local/python/lib/python3.12/site-packages/pipenv/utils/toml.py +140 -0
  1972. package/.local/python/lib/python3.12/site-packages/pipenv/utils/virtualenv.py +531 -0
  1973. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/Makefile +14 -0
  1974. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/README.md +28 -0
  1975. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__init__.py +0 -0
  1976. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  1977. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/LICENSE.txt +28 -0
  1978. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__init__.py +123 -0
  1979. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/__init__.cpython-312.pyc +0 -0
  1980. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_compat.cpython-312.pyc +0 -0
  1981. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_termui_impl.cpython-312.pyc +0 -0
  1982. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_textwrap.cpython-312.pyc +0 -0
  1983. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_utils.cpython-312.pyc +0 -0
  1984. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_winconsole.cpython-312.pyc +0 -0
  1985. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/core.cpython-312.pyc +0 -0
  1986. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/decorators.cpython-312.pyc +0 -0
  1987. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/exceptions.cpython-312.pyc +0 -0
  1988. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/formatting.cpython-312.pyc +0 -0
  1989. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/globals.cpython-312.pyc +0 -0
  1990. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/parser.cpython-312.pyc +0 -0
  1991. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/shell_completion.cpython-312.pyc +0 -0
  1992. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/termui.cpython-312.pyc +0 -0
  1993. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/testing.cpython-312.pyc +0 -0
  1994. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/types.cpython-312.pyc +0 -0
  1995. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/utils.cpython-312.pyc +0 -0
  1996. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_compat.py +622 -0
  1997. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_termui_impl.py +852 -0
  1998. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_textwrap.py +51 -0
  1999. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_utils.py +36 -0
  2000. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_winconsole.py +296 -0
  2001. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/core.py +3415 -0
  2002. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/decorators.py +551 -0
  2003. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/exceptions.py +308 -0
  2004. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/formatting.py +301 -0
  2005. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/globals.py +67 -0
  2006. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/parser.py +532 -0
  2007. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/py.typed +0 -0
  2008. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/shell_completion.py +667 -0
  2009. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/termui.py +883 -0
  2010. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/testing.py +577 -0
  2011. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/types.py +1209 -0
  2012. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/utils.py +627 -0
  2013. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/LICENSE +19 -0
  2014. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__init__.py +66 -0
  2015. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__pycache__/__init__.cpython-312.pyc +0 -0
  2016. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__init__.py +7 -0
  2017. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/__init__.cpython-312.pyc +0 -0
  2018. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansi.cpython-312.pyc +0 -0
  2019. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc +0 -0
  2020. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/initialise.cpython-312.pyc +0 -0
  2021. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/win32.cpython-312.pyc +0 -0
  2022. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/winterm.cpython-312.pyc +0 -0
  2023. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansi.py +102 -0
  2024. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansitowin32.py +277 -0
  2025. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/initialise.py +121 -0
  2026. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__init__.py +1 -0
  2027. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  2028. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc +0 -0
  2029. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc +0 -0
  2030. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc +0 -0
  2031. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc +0 -0
  2032. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/utils.cpython-312.pyc +0 -0
  2033. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc +0 -0
  2034. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansi_test.py +76 -0
  2035. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansitowin32_test.py +294 -0
  2036. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/initialise_test.py +189 -0
  2037. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/isatty_test.py +57 -0
  2038. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/utils.py +49 -0
  2039. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/winterm_test.py +131 -0
  2040. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/win32.py +180 -0
  2041. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/winterm.py +195 -0
  2042. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__init__.py +51 -0
  2043. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/__init__.cpython-312.pyc +0 -0
  2044. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/ipython.cpython-312.pyc +0 -0
  2045. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/main.cpython-312.pyc +0 -0
  2046. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/parser.cpython-312.pyc +0 -0
  2047. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/variables.cpython-312.pyc +0 -0
  2048. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/version.cpython-312.pyc +0 -0
  2049. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/ipython.py +50 -0
  2050. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/main.py +435 -0
  2051. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/parser.py +182 -0
  2052. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/py.typed +1 -0
  2053. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/variables.py +86 -0
  2054. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/version.py +1 -0
  2055. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__init__.py +1175 -0
  2056. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  2057. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
  2058. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
  2059. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
  2060. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
  2061. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
  2062. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
  2063. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
  2064. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
  2065. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
  2066. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_adapters.py +135 -0
  2067. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_collections.py +34 -0
  2068. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_compat.py +56 -0
  2069. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_functools.py +104 -0
  2070. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_itertools.py +171 -0
  2071. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_meta.py +71 -0
  2072. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_text.py +99 -0
  2073. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_typing.py +15 -0
  2074. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__init__.py +0 -0
  2075. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2076. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2077. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2078. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py311.py +22 -0
  2079. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py39.py +42 -0
  2080. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/diagnose.py +21 -0
  2081. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/py.typed +0 -0
  2082. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE +3 -0
  2083. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.APACHE +177 -0
  2084. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.BSD +23 -0
  2085. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__init__.py +15 -0
  2086. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  2087. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  2088. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  2089. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  2090. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  2091. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  2092. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  2093. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  2094. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  2095. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  2096. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  2097. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  2098. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  2099. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  2100. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_elffile.py +109 -0
  2101. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_manylinux.py +262 -0
  2102. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_musllinux.py +85 -0
  2103. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_parser.py +353 -0
  2104. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_structures.py +61 -0
  2105. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_tokenizer.py +195 -0
  2106. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__init__.py +145 -0
  2107. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  2108. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  2109. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/_spdx.py +759 -0
  2110. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/markers.py +362 -0
  2111. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/metadata.py +862 -0
  2112. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/py.typed +0 -0
  2113. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/requirements.py +91 -0
  2114. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/specifiers.py +1019 -0
  2115. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/tags.py +656 -0
  2116. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/utils.py +163 -0
  2117. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/version.py +582 -0
  2118. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/ANSI.py +351 -0
  2119. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/FSM.py +334 -0
  2120. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/LICENSE +20 -0
  2121. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__init__.py +91 -0
  2122. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/ANSI.cpython-312.pyc +0 -0
  2123. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/FSM.cpython-312.pyc +0 -0
  2124. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/__init__.cpython-312.pyc +0 -0
  2125. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async.cpython-312.pyc +0 -0
  2126. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_pre_await.cpython-312.pyc +0 -0
  2127. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_w_await.cpython-312.pyc +0 -0
  2128. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/exceptions.cpython-312.pyc +0 -0
  2129. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/expect.cpython-312.pyc +0 -0
  2130. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/fdpexpect.cpython-312.pyc +0 -0
  2131. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/popen_spawn.cpython-312.pyc +0 -0
  2132. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pty_spawn.cpython-312.pyc +0 -0
  2133. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pxssh.cpython-312.pyc +0 -0
  2134. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/replwrap.cpython-312.pyc +0 -0
  2135. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/run.cpython-312.pyc +0 -0
  2136. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/screen.cpython-312.pyc +0 -0
  2137. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/socket_pexpect.cpython-312.pyc +0 -0
  2138. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/spawnbase.cpython-312.pyc +0 -0
  2139. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/utils.cpython-312.pyc +0 -0
  2140. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async.py +28 -0
  2141. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_pre_await.py +111 -0
  2142. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_w_await.py +118 -0
  2143. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/exceptions.py +35 -0
  2144. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/expect.py +371 -0
  2145. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/fdpexpect.py +152 -0
  2146. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/popen_spawn.py +188 -0
  2147. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pty_spawn.py +860 -0
  2148. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pxssh.py +540 -0
  2149. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/replwrap.py +136 -0
  2150. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/run.py +157 -0
  2151. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/screen.py +431 -0
  2152. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/socket_pexpect.py +145 -0
  2153. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/spawnbase.py +536 -0
  2154. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/utils.py +187 -0
  2155. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__init__.py +0 -0
  2156. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__main__.py +92 -0
  2157. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__init__.cpython-312.pyc +0 -0
  2158. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__main__.cpython-312.pyc +0 -0
  2159. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_cli.cpython-312.pyc +0 -0
  2160. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_detect_env.cpython-312.pyc +0 -0
  2161. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_discovery.cpython-312.pyc +0 -0
  2162. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_freeze.cpython-312.pyc +0 -0
  2163. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_validate.cpython-312.pyc +0 -0
  2164. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_warning.cpython-312.pyc +0 -0
  2165. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/version.cpython-312.pyc +0 -0
  2166. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_cli.py +227 -0
  2167. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_detect_env.py +101 -0
  2168. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_discovery.py +154 -0
  2169. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_freeze.py +89 -0
  2170. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__init__.py +11 -0
  2171. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/__init__.cpython-312.pyc +0 -0
  2172. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/dag.cpython-312.pyc +0 -0
  2173. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/package.cpython-312.pyc +0 -0
  2174. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/dag.py +365 -0
  2175. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/package.py +251 -0
  2176. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__init__.py +41 -0
  2177. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/__init__.cpython-312.pyc +0 -0
  2178. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/freeze.cpython-312.pyc +0 -0
  2179. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/graphviz.cpython-312.pyc +0 -0
  2180. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json.cpython-312.pyc +0 -0
  2181. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json_tree.cpython-312.pyc +0 -0
  2182. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/mermaid.cpython-312.pyc +0 -0
  2183. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/text.cpython-312.pyc +0 -0
  2184. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/freeze.py +43 -0
  2185. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/graphviz.py +107 -0
  2186. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json.py +32 -0
  2187. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json_tree.py +60 -0
  2188. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/mermaid.py +113 -0
  2189. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/text.py +153 -0
  2190. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_validate.py +119 -0
  2191. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_warning.py +78 -0
  2192. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/py.typed +0 -0
  2193. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/version.py +34 -0
  2194. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/LICENSE +13 -0
  2195. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__init__.py +9 -0
  2196. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/__init__.cpython-312.pyc +0 -0
  2197. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/lockfiles.cpython-312.pyc +0 -0
  2198. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/pipfiles.cpython-312.pyc +0 -0
  2199. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/lockfiles.py +177 -0
  2200. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__init__.py +26 -0
  2201. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/__init__.cpython-312.pyc +0 -0
  2202. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/base.cpython-312.pyc +0 -0
  2203. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/hashes.cpython-312.pyc +0 -0
  2204. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/packages.cpython-312.pyc +0 -0
  2205. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/scripts.cpython-312.pyc +0 -0
  2206. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sections.cpython-312.pyc +0 -0
  2207. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sources.cpython-312.pyc +0 -0
  2208. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/base.py +130 -0
  2209. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/hashes.py +69 -0
  2210. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/packages.py +56 -0
  2211. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/scripts.py +71 -0
  2212. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sections.py +138 -0
  2213. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sources.py +45 -0
  2214. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/pipfiles.py +168 -0
  2215. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/LICENSE +16 -0
  2216. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__init__.py +4 -0
  2217. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/__init__.cpython-312.pyc +0 -0
  2218. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/_fork_pty.cpython-312.pyc +0 -0
  2219. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/ptyprocess.cpython-312.pyc +0 -0
  2220. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/util.cpython-312.pyc +0 -0
  2221. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/_fork_pty.py +78 -0
  2222. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/ptyprocess.py +842 -0
  2223. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/util.py +71 -0
  2224. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/python_dotenv.LICENSE +27 -0
  2225. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/LICENSE.txt +20 -0
  2226. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__init__.py +9 -0
  2227. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/__init__.cpython-312.pyc +0 -0
  2228. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/environment.cpython-312.pyc +0 -0
  2229. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/exceptions.cpython-312.pyc +0 -0
  2230. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/main.cpython-312.pyc +0 -0
  2231. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/pythonfinder.cpython-312.pyc +0 -0
  2232. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/environment.py +115 -0
  2233. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/exceptions.py +13 -0
  2234. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__init__.py +24 -0
  2235. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/__init__.cpython-312.pyc +0 -0
  2236. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/asdf_finder.cpython-312.pyc +0 -0
  2237. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/base_finder.cpython-312.pyc +0 -0
  2238. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/path_finder.cpython-312.pyc +0 -0
  2239. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/py_launcher_finder.cpython-312.pyc +0 -0
  2240. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/pyenv_finder.cpython-312.pyc +0 -0
  2241. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/system_finder.cpython-312.pyc +0 -0
  2242. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/windows_registry.cpython-312.pyc +0 -0
  2243. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/asdf_finder.py +72 -0
  2244. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/base_finder.py +188 -0
  2245. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/path_finder.py +226 -0
  2246. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/py_launcher_finder.py +226 -0
  2247. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/pyenv_finder.py +73 -0
  2248. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/system_finder.py +82 -0
  2249. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/windows_registry.py +499 -0
  2250. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/main.py +15 -0
  2251. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__init__.py +5 -0
  2252. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/__init__.cpython-312.pyc +0 -0
  2253. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/python_info.cpython-312.pyc +0 -0
  2254. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/python_info.py +175 -0
  2255. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/pythonfinder.py +227 -0
  2256. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__init__.py +35 -0
  2257. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  2258. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/path_utils.cpython-312.pyc +0 -0
  2259. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/version_utils.cpython-312.pyc +0 -0
  2260. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/path_utils.py +287 -0
  2261. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/version_utils.py +233 -0
  2262. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__init__.py +0 -0
  2263. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__pycache__/__init__.cpython-312.pyc +0 -0
  2264. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/LICENSE +13 -0
  2265. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__init__.py +23 -0
  2266. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/__init__.cpython-312.pyc +0 -0
  2267. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/_core.cpython-312.pyc +0 -0
  2268. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/nt.cpython-312.pyc +0 -0
  2269. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/_core.py +11 -0
  2270. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/nt.py +163 -0
  2271. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__init__.py +112 -0
  2272. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/__init__.cpython-312.pyc +0 -0
  2273. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/_core.cpython-312.pyc +0 -0
  2274. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/proc.cpython-312.pyc +0 -0
  2275. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/ps.cpython-312.pyc +0 -0
  2276. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/_core.py +3 -0
  2277. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/proc.py +83 -0
  2278. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/ps.py +51 -0
  2279. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/LICENSE +20 -0
  2280. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__init__.py +59 -0
  2281. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/__init__.cpython-312.pyc +0 -0
  2282. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_compat.cpython-312.pyc +0 -0
  2283. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_types.cpython-312.pyc +0 -0
  2284. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_utils.cpython-312.pyc +0 -0
  2285. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/api.cpython-312.pyc +0 -0
  2286. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/container.cpython-312.pyc +0 -0
  2287. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/exceptions.cpython-312.pyc +0 -0
  2288. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/items.cpython-312.pyc +0 -0
  2289. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/parser.cpython-312.pyc +0 -0
  2290. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/source.cpython-312.pyc +0 -0
  2291. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_char.cpython-312.pyc +0 -0
  2292. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_document.cpython-312.pyc +0 -0
  2293. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_file.cpython-312.pyc +0 -0
  2294. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_compat.py +22 -0
  2295. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_types.py +82 -0
  2296. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_utils.py +158 -0
  2297. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/api.py +310 -0
  2298. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/container.py +894 -0
  2299. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/exceptions.py +234 -0
  2300. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/items.py +1960 -0
  2301. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/parser.py +1141 -0
  2302. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/py.typed +0 -0
  2303. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/source.py +180 -0
  2304. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_char.py +52 -0
  2305. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_document.py +7 -0
  2306. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_file.py +58 -0
  2307. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/vendor.txt +14 -0
  2308. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__init__.py +456 -0
  2309. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
  2310. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
  2311. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
  2312. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/_functools.py +20 -0
  2313. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__init__.py +0 -0
  2314. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2315. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
  2316. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2317. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
  2318. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/overlay.py +37 -0
  2319. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py310.py +13 -0
  2320. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py313.py +34 -0
  2321. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/glob.py +116 -0
  2322. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/INSTALLER +1 -0
  2323. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/METADATA +434 -0
  2324. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/RECORD +1318 -0
  2325. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/REQUESTED +0 -0
  2326. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/WHEEL +5 -0
  2327. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/entry_points.txt +3 -0
  2328. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/LICENSE +21 -0
  2329. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/NOTICES +5 -0
  2330. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/top_level.txt +2 -0
  2331. package/.local/python/lib/python3.12/site-packages/platformdirs/__init__.py +857 -0
  2332. package/.local/python/lib/python3.12/site-packages/platformdirs/__main__.py +61 -0
  2333. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  2334. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  2335. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/_xdg.cpython-312.pyc +0 -0
  2336. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  2337. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  2338. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  2339. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  2340. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  2341. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  2342. package/.local/python/lib/python3.12/site-packages/platformdirs/_xdg.py +143 -0
  2343. package/.local/python/lib/python3.12/site-packages/platformdirs/android.py +273 -0
  2344. package/.local/python/lib/python3.12/site-packages/platformdirs/api.py +394 -0
  2345. package/.local/python/lib/python3.12/site-packages/platformdirs/macos.py +187 -0
  2346. package/.local/python/lib/python3.12/site-packages/platformdirs/py.typed +0 -0
  2347. package/.local/python/lib/python3.12/site-packages/platformdirs/unix.py +293 -0
  2348. package/.local/python/lib/python3.12/site-packages/platformdirs/version.py +34 -0
  2349. package/.local/python/lib/python3.12/site-packages/platformdirs/windows.py +369 -0
  2350. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/INSTALLER +1 -0
  2351. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/METADATA +100 -0
  2352. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/RECORD +24 -0
  2353. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/WHEEL +4 -0
  2354. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/licenses/LICENSE +21 -0
  2355. package/.local/python/lib/python3.12/site-packages/python_discovery/__init__.py +26 -0
  2356. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/__init__.cpython-312.pyc +0 -0
  2357. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cache.cpython-312.pyc +0 -0
  2358. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cached_py_info.cpython-312.pyc +0 -0
  2359. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_compat.cpython-312.pyc +0 -0
  2360. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_discovery.cpython-312.pyc +0 -0
  2361. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_info.cpython-312.pyc +0 -0
  2362. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_spec.cpython-312.pyc +0 -0
  2363. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_specifier.cpython-312.pyc +0 -0
  2364. package/.local/python/lib/python3.12/site-packages/python_discovery/_cache.py +185 -0
  2365. package/.local/python/lib/python3.12/site-packages/python_discovery/_cached_py_info.py +259 -0
  2366. package/.local/python/lib/python3.12/site-packages/python_discovery/_compat.py +29 -0
  2367. package/.local/python/lib/python3.12/site-packages/python_discovery/_discovery.py +335 -0
  2368. package/.local/python/lib/python3.12/site-packages/python_discovery/_py_info.py +787 -0
  2369. package/.local/python/lib/python3.12/site-packages/python_discovery/_py_spec.py +262 -0
  2370. package/.local/python/lib/python3.12/site-packages/python_discovery/_specifier.py +311 -0
  2371. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__init__.py +13 -0
  2372. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/__init__.cpython-312.pyc +0 -0
  2373. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_pep514.cpython-312.pyc +0 -0
  2374. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_propose.cpython-312.pyc +0 -0
  2375. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_pep514.py +222 -0
  2376. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_propose.py +53 -0
  2377. package/.local/python/lib/python3.12/site-packages/python_discovery/py.typed +0 -0
  2378. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/INSTALLER +1 -0
  2379. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/METADATA +71 -0
  2380. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/RECORD +28 -0
  2381. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/WHEEL +4 -0
  2382. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/licenses/LICENSE +18 -0
  2383. package/.local/python/lib/python3.12/site-packages/setuptools/__init__.py +256 -0
  2384. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc +0 -0
  2385. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_core_metadata.cpython-312.pyc +0 -0
  2386. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_discovery.cpython-312.pyc +0 -0
  2387. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_entry_points.cpython-312.pyc +0 -0
  2388. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_imp.cpython-312.pyc +0 -0
  2389. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_importlib.cpython-312.pyc +0 -0
  2390. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_itertools.cpython-312.pyc +0 -0
  2391. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_normalization.cpython-312.pyc +0 -0
  2392. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_path.cpython-312.pyc +0 -0
  2393. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_reqs.cpython-312.pyc +0 -0
  2394. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_scripts.cpython-312.pyc +0 -0
  2395. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_shutil.cpython-312.pyc +0 -0
  2396. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_static.cpython-312.pyc +0 -0
  2397. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc +0 -0
  2398. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc +0 -0
  2399. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc +0 -0
  2400. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.pyc +0 -0
  2401. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/dist.cpython-312.pyc +0 -0
  2402. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/errors.cpython-312.pyc +0 -0
  2403. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/extension.cpython-312.pyc +0 -0
  2404. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/glob.cpython-312.pyc +0 -0
  2405. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/installer.cpython-312.pyc +0 -0
  2406. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc +0 -0
  2407. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +0 -0
  2408. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc +0 -0
  2409. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc +0 -0
  2410. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.pyc +0 -0
  2411. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc +0 -0
  2412. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.pyc +0 -0
  2413. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/version.cpython-312.pyc +0 -0
  2414. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/warnings.cpython-312.pyc +0 -0
  2415. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/wheel.cpython-312.pyc +0 -0
  2416. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/windows_support.cpython-312.pyc +0 -0
  2417. package/.local/python/lib/python3.12/site-packages/setuptools/_core_metadata.py +337 -0
  2418. package/.local/python/lib/python3.12/site-packages/setuptools/_discovery.py +33 -0
  2419. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
  2420. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-312.pyc +0 -0
  2421. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc +0 -0
  2422. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +0 -0
  2423. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc +0 -0
  2424. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc +0 -0
  2425. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.pyc +0 -0
  2426. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-312.pyc +0 -0
  2427. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-312.pyc +0 -0
  2428. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/core.cpython-312.pyc +0 -0
  2429. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-312.pyc +0 -0
  2430. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/debug.cpython-312.pyc +0 -0
  2431. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-312.pyc +0 -0
  2432. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-312.pyc +0 -0
  2433. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dist.cpython-312.pyc +0 -0
  2434. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/errors.cpython-312.pyc +0 -0
  2435. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/extension.cpython-312.pyc +0 -0
  2436. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-312.pyc +0 -0
  2437. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-312.pyc +0 -0
  2438. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-312.pyc +0 -0
  2439. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/log.cpython-312.pyc +0 -0
  2440. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc +0 -0
  2441. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.pyc +0 -0
  2442. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-312.pyc +0 -0
  2443. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-312.pyc +0 -0
  2444. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/util.cpython-312.pyc +0 -0
  2445. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc +0 -0
  2446. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +0 -0
  2447. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc +0 -0
  2448. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
  2449. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
  2450. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +95 -0
  2451. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +16 -0
  2452. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +284 -0
  2453. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +26 -0
  2454. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +535 -0
  2455. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
  2456. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-312.pyc +0 -0
  2457. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-312.pyc +0 -0
  2458. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-312.pyc +0 -0
  2459. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-312.pyc +0 -0
  2460. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
  2461. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-312.pyc +0 -0
  2462. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-312.pyc +0 -0
  2463. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-312.pyc +0 -0
  2464. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-312.pyc +0 -0
  2465. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-312.pyc +0 -0
  2466. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-312.pyc +0 -0
  2467. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-312.pyc +0 -0
  2468. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-312.pyc +0 -0
  2469. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-312.pyc +0 -0
  2470. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-312.pyc +0 -0
  2471. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
  2472. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-312.pyc +0 -0
  2473. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc +0 -0
  2474. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
  2475. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.pyc +0 -0
  2476. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
  2477. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +167 -0
  2478. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +141 -0
  2479. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
  2480. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
  2481. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +199 -0
  2482. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +811 -0
  2483. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +404 -0
  2484. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +150 -0
  2485. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +152 -0
  2486. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
  2487. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +348 -0
  2488. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +805 -0
  2489. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
  2490. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +90 -0
  2491. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +46 -0
  2492. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +236 -0
  2493. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +59 -0
  2494. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +521 -0
  2495. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +18 -0
  2496. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2497. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/numpy.cpython-312.pyc +0 -0
  2498. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2499. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
  2500. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
  2501. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/base.cpython-312.pyc +0 -0
  2502. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/cygwin.cpython-312.pyc +0 -0
  2503. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/errors.cpython-312.pyc +0 -0
  2504. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/msvc.cpython-312.pyc +0 -0
  2505. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/unix.cpython-312.pyc +0 -0
  2506. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/zos.cpython-312.pyc +0 -0
  2507. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/base.py +1386 -0
  2508. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/cygwin.py +340 -0
  2509. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/errors.py +24 -0
  2510. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/msvc.py +614 -0
  2511. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_base.cpython-312.pyc +0 -0
  2512. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_cygwin.cpython-312.pyc +0 -0
  2513. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_mingw.cpython-312.pyc +0 -0
  2514. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_msvc.cpython-312.pyc +0 -0
  2515. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_unix.cpython-312.pyc +0 -0
  2516. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_base.py +83 -0
  2517. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_cygwin.py +76 -0
  2518. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_mingw.py +48 -0
  2519. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_msvc.py +136 -0
  2520. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +413 -0
  2521. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/unix.py +422 -0
  2522. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/zos.py +230 -0
  2523. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/core.py +289 -0
  2524. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +31 -0
  2525. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/debug.py +5 -0
  2526. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
  2527. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +232 -0
  2528. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1384 -0
  2529. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/errors.py +108 -0
  2530. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/extension.py +258 -0
  2531. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +471 -0
  2532. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +228 -0
  2533. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +431 -0
  2534. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
  2535. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +130 -0
  2536. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +598 -0
  2537. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
  2538. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  2539. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +0 -0
  2540. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
  2541. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +0 -0
  2542. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +0 -0
  2543. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +0 -0
  2544. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +0 -0
  2545. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
  2546. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
  2547. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
  2548. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +0 -0
  2549. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +0 -0
  2550. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +0 -0
  2551. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +0 -0
  2552. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +0 -0
  2553. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +0 -0
  2554. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +0 -0
  2555. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
  2556. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +0 -0
  2557. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +0 -0
  2558. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +0 -0
  2559. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +0 -0
  2560. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +0 -0
  2561. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +0 -0
  2562. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +0 -0
  2563. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
  2564. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +0 -0
  2565. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +0 -0
  2566. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
  2567. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +0 -0
  2568. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +0 -0
  2569. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +0 -0
  2570. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +0 -0
  2571. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +0 -0
  2572. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +0 -0
  2573. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +0 -0
  2574. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
  2575. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2576. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2577. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +40 -0
  2578. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
  2579. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +342 -0
  2580. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
  2581. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
  2582. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +127 -0
  2583. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +49 -0
  2584. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
  2585. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +628 -0
  2586. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
  2587. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
  2588. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
  2589. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
  2590. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
  2591. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
  2592. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
  2593. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +139 -0
  2594. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +552 -0
  2595. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +117 -0
  2596. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +95 -0
  2597. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
  2598. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
  2599. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
  2600. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
  2601. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
  2602. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
  2603. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
  2604. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
  2605. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
  2606. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +141 -0
  2607. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
  2608. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
  2609. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
  2610. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
  2611. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
  2612. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
  2613. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
  2614. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +9 -0
  2615. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/util.py +506 -0
  2616. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/version.py +348 -0
  2617. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
  2618. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +3 -0
  2619. package/.local/python/lib/python3.12/site-packages/setuptools/_entry_points.py +94 -0
  2620. package/.local/python/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
  2621. package/.local/python/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
  2622. package/.local/python/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
  2623. package/.local/python/lib/python3.12/site-packages/setuptools/_normalization.py +180 -0
  2624. package/.local/python/lib/python3.12/site-packages/setuptools/_path.py +93 -0
  2625. package/.local/python/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
  2626. package/.local/python/lib/python3.12/site-packages/setuptools/_scripts.py +361 -0
  2627. package/.local/python/lib/python3.12/site-packages/setuptools/_shutil.py +59 -0
  2628. package/.local/python/lib/python3.12/site-packages/setuptools/_static.py +188 -0
  2629. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/.lock +0 -0
  2630. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
  2631. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +0 -0
  2632. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +0 -0
  2633. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +0 -0
  2634. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +0 -0
  2635. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +0 -0
  2636. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +0 -0
  2637. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
  2638. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
  2639. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
  2640. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
  2641. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
  2642. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +1 -0
  2643. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +166 -0
  2644. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +420 -0
  2645. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +13 -0
  2646. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/REQUESTED +0 -0
  2647. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +5 -0
  2648. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +1 -0
  2649. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +1 -0
  2650. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  2651. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +2937 -0
  2652. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +5 -0
  2653. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +0 -0
  2654. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +0 -0
  2655. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
  2656. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2657. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +0 -0
  2658. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +24 -0
  2659. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +1 -0
  2660. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +17 -0
  2661. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +46 -0
  2662. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +12 -0
  2663. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +0 -0
  2664. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +5 -0
  2665. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +1 -0
  2666. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1191 -0
  2667. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  2668. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
  2669. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
  2670. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
  2671. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
  2672. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
  2673. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
  2674. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
  2675. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
  2676. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
  2677. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +136 -0
  2678. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +34 -0
  2679. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +56 -0
  2680. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +135 -0
  2681. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +171 -0
  2682. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +71 -0
  2683. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
  2684. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_typing.py +15 -0
  2685. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
  2686. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2687. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2688. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2689. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
  2690. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +42 -0
  2691. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
  2692. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +0 -0
  2693. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +1 -0
  2694. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +133 -0
  2695. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +21 -0
  2696. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
  2697. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/WHEEL +5 -0
  2698. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +73 -0
  2699. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +1 -0
  2700. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__init__.py +367 -0
  2701. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__pycache__/__init__.cpython-312.pyc +0 -0
  2702. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/py.typed +0 -0
  2703. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +722 -0
  2704. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +123 -0
  2705. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +0 -0
  2706. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +0 -0
  2707. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt +2 -0
  2708. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +647 -0
  2709. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +0 -0
  2710. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +0 -0
  2711. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +0 -0
  2712. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +0 -0
  2713. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +0 -0
  2714. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +0 -0
  2715. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
  2716. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +32 -0
  2717. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
  2718. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +5 -0
  2719. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +5 -0
  2720. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/INSTALLER +1 -0
  2721. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/LICENSE +17 -0
  2722. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/METADATA +96 -0
  2723. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/RECORD +14 -0
  2724. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/REQUESTED +0 -0
  2725. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/WHEEL +5 -0
  2726. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/top_level.txt +1 -0
  2727. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/INSTALLER +1 -0
  2728. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/METADATA +82 -0
  2729. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/RECORD +9 -0
  2730. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/REQUESTED +0 -0
  2731. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/WHEEL +5 -0
  2732. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/licenses/LICENSE +18 -0
  2733. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/top_level.txt +1 -0
  2734. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/INSTALLER +1 -0
  2735. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/METADATA +69 -0
  2736. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/RECORD +10 -0
  2737. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/REQUESTED +0 -0
  2738. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/WHEEL +5 -0
  2739. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/licenses/LICENSE +18 -0
  2740. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/top_level.txt +1 -0
  2741. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +6 -0
  2742. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
  2743. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc +0 -0
  2744. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.pyc +0 -0
  2745. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc +0 -0
  2746. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +5303 -0
  2747. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +949 -0
  2748. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed +0 -0
  2749. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +1471 -0
  2750. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +205 -0
  2751. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/INSTALLER +1 -0
  2752. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/METADATA +283 -0
  2753. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/RECORD +13 -0
  2754. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/REQUESTED +0 -0
  2755. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/WHEEL +4 -0
  2756. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/licenses/LICENSE +19 -0
  2757. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
  2758. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  2759. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  2760. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  2761. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  2762. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  2763. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  2764. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  2765. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  2766. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  2767. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  2768. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  2769. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  2770. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  2771. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  2772. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  2773. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
  2774. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +262 -0
  2775. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
  2776. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +365 -0
  2777. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +69 -0
  2778. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +193 -0
  2779. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +147 -0
  2780. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  2781. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  2782. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +799 -0
  2783. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +388 -0
  2784. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +978 -0
  2785. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed +0 -0
  2786. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/pylock.py +635 -0
  2787. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +86 -0
  2788. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1068 -0
  2789. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +651 -0
  2790. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +158 -0
  2791. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +792 -0
  2792. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/INSTALLER +1 -0
  2793. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/METADATA +107 -0
  2794. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/RECORD +26 -0
  2795. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/REQUESTED +0 -0
  2796. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/WHEEL +4 -0
  2797. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE +3 -0
  2798. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
  2799. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
  2800. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +631 -0
  2801. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
  2802. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  2803. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  2804. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  2805. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  2806. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  2807. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  2808. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  2809. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  2810. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
  2811. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +299 -0
  2812. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +146 -0
  2813. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +0 -0
  2814. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +272 -0
  2815. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +34 -0
  2816. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
  2817. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/INSTALLER +1 -0
  2818. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/METADATA +350 -0
  2819. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/RECORD +15 -0
  2820. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/REQUESTED +0 -0
  2821. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/WHEEL +4 -0
  2822. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/licenses/LICENSE +21 -0
  2823. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +8 -0
  2824. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  2825. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  2826. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  2827. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  2828. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +782 -0
  2829. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +119 -0
  2830. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
  2831. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +1 -0
  2832. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/INSTALLER +1 -0
  2833. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/METADATA +270 -0
  2834. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/RECORD +11 -0
  2835. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/REQUESTED +0 -0
  2836. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/WHEEL +4 -0
  2837. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/licenses/LICENSE +21 -0
  2838. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
  2839. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +25 -0
  2840. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
  2841. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
  2842. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
  2843. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
  2844. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
  2845. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  2846. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
  2847. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
  2848. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
  2849. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +616 -0
  2850. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__init__.py +153 -0
  2851. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
  2852. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
  2853. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
  2854. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
  2855. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
  2856. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/convert.py +337 -0
  2857. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/pack.py +84 -0
  2858. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/tags.py +140 -0
  2859. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/unpack.py +30 -0
  2860. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_metadata.py +184 -0
  2861. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
  2862. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +26 -0
  2863. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +486 -0
  2864. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +17 -0
  2865. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +241 -0
  2866. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/INSTALLER +1 -0
  2867. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/METADATA +69 -0
  2868. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/RECORD +22 -0
  2869. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/REQUESTED +0 -0
  2870. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/WHEEL +4 -0
  2871. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/entry_points.txt +6 -0
  2872. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
  2873. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +456 -0
  2874. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
  2875. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
  2876. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
  2877. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/_functools.py +20 -0
  2878. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
  2879. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2880. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
  2881. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2882. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
  2883. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/overlay.py +37 -0
  2884. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +13 -0
  2885. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py313.py +34 -0
  2886. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +116 -0
  2887. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/INSTALLER +1 -0
  2888. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/METADATA +106 -0
  2889. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/RECORD +14 -0
  2890. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/REQUESTED +0 -0
  2891. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/WHEEL +5 -0
  2892. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/licenses/LICENSE +18 -0
  2893. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/top_level.txt +1 -0
  2894. package/.local/python/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
  2895. package/.local/python/lib/python3.12/site-packages/setuptools/build_meta.py +556 -0
  2896. package/.local/python/lib/python3.12/site-packages/setuptools/cli-32.exe +0 -0
  2897. package/.local/python/lib/python3.12/site-packages/setuptools/cli-64.exe +0 -0
  2898. package/.local/python/lib/python3.12/site-packages/setuptools/cli-arm64.exe +0 -0
  2899. package/.local/python/lib/python3.12/site-packages/setuptools/cli.exe +0 -0
  2900. package/.local/python/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
  2901. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/__init__.cpython-312.pyc +0 -0
  2902. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-312.pyc +0 -0
  2903. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/alias.cpython-312.pyc +0 -0
  2904. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc +0 -0
  2905. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
  2906. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  2907. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc +0 -0
  2908. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.pyc +0 -0
  2909. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_ext.cpython-312.pyc +0 -0
  2910. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_py.cpython-312.pyc +0 -0
  2911. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/develop.cpython-312.pyc +0 -0
  2912. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/dist_info.cpython-312.pyc +0 -0
  2913. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/easy_install.cpython-312.pyc +0 -0
  2914. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-312.pyc +0 -0
  2915. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/egg_info.cpython-312.pyc +0 -0
  2916. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install.cpython-312.pyc +0 -0
  2917. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
  2918. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_lib.cpython-312.pyc +0 -0
  2919. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
  2920. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/rotate.cpython-312.pyc +0 -0
  2921. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/saveopts.cpython-312.pyc +0 -0
  2922. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/sdist.cpython-312.pyc +0 -0
  2923. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/setopt.cpython-312.pyc +0 -0
  2924. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/test.cpython-312.pyc +0 -0
  2925. package/.local/python/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
  2926. package/.local/python/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
  2927. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +471 -0
  2928. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
  2929. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +603 -0
  2930. package/.local/python/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
  2931. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
  2932. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_ext.py +470 -0
  2933. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_py.py +403 -0
  2934. package/.local/python/lib/python3.12/site-packages/setuptools/command/develop.py +58 -0
  2935. package/.local/python/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
  2936. package/.local/python/lib/python3.12/site-packages/setuptools/command/easy_install.py +30 -0
  2937. package/.local/python/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +914 -0
  2938. package/.local/python/lib/python3.12/site-packages/setuptools/command/egg_info.py +716 -0
  2939. package/.local/python/lib/python3.12/site-packages/setuptools/command/install.py +131 -0
  2940. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +57 -0
  2941. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
  2942. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_scripts.py +66 -0
  2943. package/.local/python/lib/python3.12/site-packages/setuptools/command/launcher manifest.xml +15 -0
  2944. package/.local/python/lib/python3.12/site-packages/setuptools/command/rotate.py +64 -0
  2945. package/.local/python/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
  2946. package/.local/python/lib/python3.12/site-packages/setuptools/command/sdist.py +218 -0
  2947. package/.local/python/lib/python3.12/site-packages/setuptools/command/setopt.py +139 -0
  2948. package/.local/python/lib/python3.12/site-packages/setuptools/command/test.py +47 -0
  2949. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
  2950. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2951. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2952. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2953. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py312.cpython-312.pyc +0 -0
  2954. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2955. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py310.py +20 -0
  2956. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
  2957. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
  2958. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
  2959. package/.local/python/lib/python3.12/site-packages/setuptools/config/NOTICE +10 -0
  2960. package/.local/python/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
  2961. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc +0 -0
  2962. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-312.pyc +0 -0
  2963. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/expand.cpython-312.pyc +0 -0
  2964. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-312.pyc +0 -0
  2965. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/setupcfg.cpython-312.pyc +0 -0
  2966. package/.local/python/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +526 -0
  2967. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/NOTICE +438 -0
  2968. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
  2969. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-312.pyc +0 -0
  2970. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-312.pyc +0 -0
  2971. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-312.pyc +0 -0
  2972. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-312.pyc +0 -0
  2973. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-312.pyc +0 -0
  2974. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-312.pyc +0 -0
  2975. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
  2976. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +82 -0
  2977. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
  2978. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1412 -0
  2979. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +402 -0
  2980. package/.local/python/lib/python3.12/site-packages/setuptools/config/distutils.schema.json +26 -0
  2981. package/.local/python/lib/python3.12/site-packages/setuptools/config/expand.py +452 -0
  2982. package/.local/python/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
  2983. package/.local/python/lib/python3.12/site-packages/setuptools/config/setupcfg.py +782 -0
  2984. package/.local/python/lib/python3.12/site-packages/setuptools/config/setuptools.schema.json +433 -0
  2985. package/.local/python/lib/python3.12/site-packages/setuptools/depends.py +185 -0
  2986. package/.local/python/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
  2987. package/.local/python/lib/python3.12/site-packages/setuptools/dist.py +1124 -0
  2988. package/.local/python/lib/python3.12/site-packages/setuptools/errors.py +67 -0
  2989. package/.local/python/lib/python3.12/site-packages/setuptools/extension.py +179 -0
  2990. package/.local/python/lib/python3.12/site-packages/setuptools/glob.py +185 -0
  2991. package/.local/python/lib/python3.12/site-packages/setuptools/gui-32.exe +0 -0
  2992. package/.local/python/lib/python3.12/site-packages/setuptools/gui-64.exe +0 -0
  2993. package/.local/python/lib/python3.12/site-packages/setuptools/gui-arm64.exe +0 -0
  2994. package/.local/python/lib/python3.12/site-packages/setuptools/gui.exe +0 -0
  2995. package/.local/python/lib/python3.12/site-packages/setuptools/installer.py +155 -0
  2996. package/.local/python/lib/python3.12/site-packages/setuptools/launch.py +36 -0
  2997. package/.local/python/lib/python3.12/site-packages/setuptools/logging.py +40 -0
  2998. package/.local/python/lib/python3.12/site-packages/setuptools/modified.py +18 -0
  2999. package/.local/python/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
  3000. package/.local/python/lib/python3.12/site-packages/setuptools/msvc.py +1557 -0
  3001. package/.local/python/lib/python3.12/site-packages/setuptools/namespaces.py +101 -0
  3002. package/.local/python/lib/python3.12/site-packages/setuptools/script (dev).tmpl +6 -0
  3003. package/.local/python/lib/python3.12/site-packages/setuptools/script.tmpl +3 -0
  3004. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
  3005. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  3006. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +0 -0
  3007. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +0 -0
  3008. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +0 -0
  3009. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +0 -0
  3010. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +0 -0
  3011. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +0 -0
  3012. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
  3013. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +0 -0
  3014. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +0 -0
  3015. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +0 -0
  3016. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +0 -0
  3017. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
  3018. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
  3019. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +0 -0
  3020. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
  3021. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +0 -0
  3022. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +0 -0
  3023. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +0 -0
  3024. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +0 -0
  3025. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
  3026. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +0 -0
  3027. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +0 -0
  3028. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +0 -0
  3029. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +0 -0
  3030. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +0 -0
  3031. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +0 -0
  3032. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +0 -0
  3033. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +0 -0
  3034. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
  3035. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +0 -0
  3036. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +0 -0
  3037. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +0 -0
  3038. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_scripts.cpython-312.pyc +0 -0
  3039. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
  3040. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +0 -0
  3041. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +0 -0
  3042. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-312.pyc +0 -0
  3043. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +0 -0
  3044. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +0 -0
  3045. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +0 -0
  3046. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +0 -0
  3047. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +0 -0
  3048. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +0 -0
  3049. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +0 -0
  3050. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
  3051. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  3052. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
  3053. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
  3054. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
  3055. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +0 -0
  3056. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +0 -0
  3057. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +0 -0
  3058. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +0 -0
  3059. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +0 -0
  3060. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +0 -0
  3061. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
  3062. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +0 -0
  3063. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +0 -0
  3064. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
  3065. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +22 -0
  3066. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +774 -0
  3067. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +247 -0
  3068. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +398 -0
  3069. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +111 -0
  3070. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +987 -0
  3071. package/.local/python/lib/python3.12/site-packages/setuptools/tests/contexts.py +131 -0
  3072. package/.local/python/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
  3073. package/.local/python/lib/python3.12/site-packages/setuptools/tests/fixtures.py +406 -0
  3074. package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +3 -0
  3075. package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +4 -0
  3076. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
  3077. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +0 -0
  3078. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +0 -0
  3079. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pbr.cpython-312.pyc +0 -0
  3080. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +0 -0
  3081. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +80 -0
  3082. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
  3083. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
  3084. package/.local/python/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
  3085. package/.local/python/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
  3086. package/.local/python/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
  3087. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
  3088. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
  3089. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
  3090. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +708 -0
  3091. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
  3092. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
  3093. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +293 -0
  3094. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +959 -0
  3095. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
  3096. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
  3097. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +550 -0
  3098. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
  3099. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_develop.py +113 -0
  3100. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist.py +280 -0
  3101. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +147 -0
  3102. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
  3103. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1261 -0
  3104. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1306 -0
  3105. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
  3106. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
  3107. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
  3108. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
  3109. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
  3110. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
  3111. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +622 -0
  3112. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +79 -0
  3113. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_scripts.py +12 -0
  3114. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +980 -0
  3115. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
  3116. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
  3117. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
  3118. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
  3119. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
  3120. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
  3121. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +690 -0
  3122. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +258 -0
  3123. package/.local/python/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
  3124. package/.local/python/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
  3125. package/.local/python/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
  3126. package/.local/python/lib/python3.12/site-packages/setuptools/version.py +6 -0
  3127. package/.local/python/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
  3128. package/.local/python/lib/python3.12/site-packages/setuptools/wheel.py +262 -0
  3129. package/.local/python/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
  3130. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/INSTALLER +1 -0
  3131. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/METADATA +141 -0
  3132. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/RECORD +759 -0
  3133. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/WHEEL +5 -0
  3134. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/entry_points.txt +51 -0
  3135. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/licenses/LICENSE +17 -0
  3136. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/top_level.txt +2 -0
  3137. package/.local/python/lib/python3.12/site-packages/virtualenv/__init__.py +10 -0
  3138. package/.local/python/lib/python3.12/site-packages/virtualenv/__main__.py +92 -0
  3139. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc +0 -0
  3140. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__main__.cpython-312.pyc +0 -0
  3141. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/info.cpython-312.pyc +0 -0
  3142. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/report.cpython-312.pyc +0 -0
  3143. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/version.cpython-312.pyc +0 -0
  3144. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__init__.py +19 -0
  3145. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/__init__.cpython-312.pyc +0 -0
  3146. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/activator.cpython-312.pyc +0 -0
  3147. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/via_template.cpython-312.pyc +0 -0
  3148. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/activator.py +61 -0
  3149. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__init__.py +32 -0
  3150. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__pycache__/__init__.cpython-312.pyc +0 -0
  3151. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/activate.sh +132 -0
  3152. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__init__.py +38 -0
  3153. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__pycache__/__init__.cpython-312.pyc +0 -0
  3154. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/activate.bat +59 -0
  3155. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/deactivate.bat +30 -0
  3156. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/pydoc.bat +1 -0
  3157. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__init__.py +24 -0
  3158. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__pycache__/__init__.cpython-312.pyc +0 -0
  3159. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/activate.csh +74 -0
  3160. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__init__.py +29 -0
  3161. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__pycache__/__init__.cpython-312.pyc +0 -0
  3162. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/activate.fish +118 -0
  3163. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__init__.py +51 -0
  3164. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__pycache__/__init__.cpython-312.pyc +0 -0
  3165. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/activate.nu +89 -0
  3166. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__init__.py +30 -0
  3167. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__pycache__/__init__.cpython-312.pyc +0 -0
  3168. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/activate.ps1 +213 -0
  3169. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__init__.py +39 -0
  3170. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/__init__.cpython-312.pyc +0 -0
  3171. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/activate_this.cpython-312.pyc +0 -0
  3172. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/activate_this.py +45 -0
  3173. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/via_template.py +99 -0
  3174. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__init__.py +81 -0
  3175. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/__init__.cpython-312.pyc +0 -0
  3176. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/base.cpython-312.pyc +0 -0
  3177. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/na.cpython-312.pyc +0 -0
  3178. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/read_only.cpython-312.pyc +0 -0
  3179. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_disk_folder.cpython-312.pyc +0 -0
  3180. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_tempdir.cpython-312.pyc +0 -0
  3181. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/base.py +167 -0
  3182. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/na.py +78 -0
  3183. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/read_only.py +47 -0
  3184. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_disk_folder.py +181 -0
  3185. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_tempdir.py +38 -0
  3186. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__init__.py +0 -0
  3187. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/__init__.cpython-312.pyc +0 -0
  3188. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/convert.cpython-312.pyc +0 -0
  3189. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/env_var.cpython-312.pyc +0 -0
  3190. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/ini.cpython-312.pyc +0 -0
  3191. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__init__.py +0 -0
  3192. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  3193. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/parser.cpython-312.pyc +0 -0
  3194. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/parser.py +158 -0
  3195. package/.local/python/lib/python3.12/site-packages/virtualenv/config/convert.py +105 -0
  3196. package/.local/python/lib/python3.12/site-packages/virtualenv/config/env_var.py +38 -0
  3197. package/.local/python/lib/python3.12/site-packages/virtualenv/config/ini.py +83 -0
  3198. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__init__.py +0 -0
  3199. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/__init__.cpython-312.pyc +0 -0
  3200. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/creator.cpython-312.pyc +0 -0
  3201. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/debug.cpython-312.pyc +0 -0
  3202. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/describe.cpython-312.pyc +0 -0
  3203. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/pyenv_cfg.cpython-312.pyc +0 -0
  3204. package/.local/python/lib/python3.12/site-packages/virtualenv/create/creator.py +289 -0
  3205. package/.local/python/lib/python3.12/site-packages/virtualenv/create/debug.py +103 -0
  3206. package/.local/python/lib/python3.12/site-packages/virtualenv/create/describe.py +116 -0
  3207. package/.local/python/lib/python3.12/site-packages/virtualenv/create/pyenv_cfg.py +79 -0
  3208. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__init__.py +0 -0
  3209. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/__init__.cpython-312.pyc +0 -0
  3210. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/_virtualenv.cpython-312.pyc +0 -0
  3211. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/api.cpython-312.pyc +0 -0
  3212. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/store.cpython-312.pyc +0 -0
  3213. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/venv.cpython-312.pyc +0 -0
  3214. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/_virtualenv.py +128 -0
  3215. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/api.py +142 -0
  3216. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py +0 -0
  3217. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/__init__.cpython-312.pyc +0 -0
  3218. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/builtin_way.cpython-312.pyc +0 -0
  3219. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/ref.cpython-312.pyc +0 -0
  3220. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/via_global_self_do.cpython-312.pyc +0 -0
  3221. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py +25 -0
  3222. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py +0 -0
  3223. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/__init__.cpython-312.pyc +0 -0
  3224. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/common.cpython-312.pyc +0 -0
  3225. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/cpython3.cpython-312.pyc +0 -0
  3226. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/mac_os.cpython-312.pyc +0 -0
  3227. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py +99 -0
  3228. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py +220 -0
  3229. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py +290 -0
  3230. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__init__.py +99 -0
  3231. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__pycache__/__init__.cpython-312.pyc +0 -0
  3232. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py +0 -0
  3233. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/__init__.cpython-312.pyc +0 -0
  3234. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/common.cpython-312.pyc +0 -0
  3235. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/pypy3.cpython-312.pyc +0 -0
  3236. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py +61 -0
  3237. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py +83 -0
  3238. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/ref.py +181 -0
  3239. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__init__.py +53 -0
  3240. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__pycache__/__init__.cpython-312.pyc +0 -0
  3241. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py +135 -0
  3242. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/store.py +32 -0
  3243. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/venv.py +112 -0
  3244. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__init__.py +0 -0
  3245. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/__init__.cpython-312.pyc +0 -0
  3246. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/builtin.cpython-312.pyc +0 -0
  3247. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/cached_py_info.cpython-312.pyc +0 -0
  3248. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/discover.cpython-312.pyc +0 -0
  3249. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_info.cpython-312.pyc +0 -0
  3250. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_spec.cpython-312.pyc +0 -0
  3251. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/builtin.py +87 -0
  3252. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/cached_py_info.py +10 -0
  3253. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/discover.py +43 -0
  3254. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_info.py +9 -0
  3255. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_spec.py +9 -0
  3256. package/.local/python/lib/python3.12/site-packages/virtualenv/info.py +72 -0
  3257. package/.local/python/lib/python3.12/site-packages/virtualenv/py.typed +0 -0
  3258. package/.local/python/lib/python3.12/site-packages/virtualenv/report.py +50 -0
  3259. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__init__.py +197 -0
  3260. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/__init__.cpython-312.pyc +0 -0
  3261. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/session.cpython-312.pyc +0 -0
  3262. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__init__.py +0 -0
  3263. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/__init__.cpython-312.pyc +0 -0
  3264. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/activators.cpython-312.pyc +0 -0
  3265. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/base.cpython-312.pyc +0 -0
  3266. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/creators.cpython-312.pyc +0 -0
  3267. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/discovery.cpython-312.pyc +0 -0
  3268. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/seeders.cpython-312.pyc +0 -0
  3269. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/activators.py +74 -0
  3270. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/base.py +77 -0
  3271. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/creators.py +98 -0
  3272. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/discovery.py +60 -0
  3273. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/seeders.py +51 -0
  3274. package/.local/python/lib/python3.12/site-packages/virtualenv/run/session.py +121 -0
  3275. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__init__.py +0 -0
  3276. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/__init__.cpython-312.pyc +0 -0
  3277. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/seeder.cpython-312.pyc +0 -0
  3278. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__init__.py +0 -0
  3279. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/__init__.cpython-312.pyc +0 -0
  3280. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/base_embed.cpython-312.pyc +0 -0
  3281. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/pip_invoke.cpython-312.pyc +0 -0
  3282. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/base_embed.py +150 -0
  3283. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/pip_invoke.py +83 -0
  3284. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__init__.py +0 -0
  3285. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/__init__.cpython-312.pyc +0 -0
  3286. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/via_app_data.cpython-312.pyc +0 -0
  3287. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py +0 -0
  3288. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/__init__.cpython-312.pyc +0 -0
  3289. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/base.cpython-312.pyc +0 -0
  3290. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/copy.cpython-312.pyc +0 -0
  3291. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/symlink.cpython-312.pyc +0 -0
  3292. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py +214 -0
  3293. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py +44 -0
  3294. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py +62 -0
  3295. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py +160 -0
  3296. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/seeder.py +53 -0
  3297. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__init__.py +11 -0
  3298. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/__init__.cpython-312.pyc +0 -0
  3299. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/acquire.cpython-312.pyc +0 -0
  3300. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/bundle.cpython-312.pyc +0 -0
  3301. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/periodic_update.cpython-312.pyc +0 -0
  3302. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/util.cpython-312.pyc +0 -0
  3303. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/acquire.py +150 -0
  3304. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py +65 -0
  3305. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py +60 -0
  3306. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc +0 -0
  3307. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-25.0.1-py3-none-any.whl +0 -0
  3308. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-26.0.1-py3-none-any.whl +0 -0
  3309. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-75.3.4-py3-none-any.whl +0 -0
  3310. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-82.0.0-py3-none-any.whl +0 -0
  3311. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.45.1-py3-none-any.whl +0 -0
  3312. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py +458 -0
  3313. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py +125 -0
  3314. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__init__.py +0 -0
  3315. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/__init__.cpython-312.pyc +0 -0
  3316. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/error.cpython-312.pyc +0 -0
  3317. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/lock.cpython-312.pyc +0 -0
  3318. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/zipapp.cpython-312.pyc +0 -0
  3319. package/.local/python/lib/python3.12/site-packages/virtualenv/util/error.py +14 -0
  3320. package/.local/python/lib/python3.12/site-packages/virtualenv/util/lock.py +188 -0
  3321. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__init__.py +16 -0
  3322. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/__init__.cpython-312.pyc +0 -0
  3323. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_permission.cpython-312.pyc +0 -0
  3324. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_sync.cpython-312.pyc +0 -0
  3325. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_win.cpython-312.pyc +0 -0
  3326. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_permission.py +34 -0
  3327. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_sync.py +90 -0
  3328. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_win.py +23 -0
  3329. package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__init__.py +48 -0
  3330. package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__pycache__/__init__.cpython-312.pyc +0 -0
  3331. package/.local/python/lib/python3.12/site-packages/virtualenv/util/zipapp.py +47 -0
  3332. package/.local/python/lib/python3.12/site-packages/virtualenv/version.py +34 -0
  3333. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/INSTALLER +1 -0
  3334. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/METADATA +65 -0
  3335. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/RECORD +203 -0
  3336. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/WHEEL +4 -0
  3337. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/entry_points.txt +31 -0
  3338. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/licenses/LICENSE +20 -0
  3339. package/.local/python/lib/python3.12/site-packages/wheel/__init__.py +3 -0
  3340. package/.local/python/lib/python3.12/site-packages/wheel/__main__.py +25 -0
  3341. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
  3342. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
  3343. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
  3344. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
  3345. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
  3346. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  3347. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
  3348. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
  3349. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
  3350. package/.local/python/lib/python3.12/site-packages/wheel/_bdist_wheel.py +616 -0
  3351. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__init__.py +153 -0
  3352. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
  3353. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
  3354. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
  3355. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
  3356. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
  3357. package/.local/python/lib/python3.12/site-packages/wheel/_commands/convert.py +337 -0
  3358. package/.local/python/lib/python3.12/site-packages/wheel/_commands/pack.py +84 -0
  3359. package/.local/python/lib/python3.12/site-packages/wheel/_commands/tags.py +140 -0
  3360. package/.local/python/lib/python3.12/site-packages/wheel/_commands/unpack.py +30 -0
  3361. package/.local/python/lib/python3.12/site-packages/wheel/_metadata.py +184 -0
  3362. package/.local/python/lib/python3.12/site-packages/wheel/_setuptools_logging.py +26 -0
  3363. package/.local/python/lib/python3.12/site-packages/wheel/bdist_wheel.py +26 -0
  3364. package/.local/python/lib/python3.12/site-packages/wheel/macosx_libfile.py +486 -0
  3365. package/.local/python/lib/python3.12/site-packages/wheel/metadata.py +17 -0
  3366. package/.local/python/lib/python3.12/site-packages/wheel/wheelfile.py +241 -0
  3367. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/INSTALLER +1 -0
  3368. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/METADATA +69 -0
  3369. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/RECORD +36 -0
  3370. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/REQUESTED +0 -0
  3371. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/WHEEL +4 -0
  3372. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/entry_points.txt +6 -0
  3373. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
  3374. package/.local/python/pyvenv.cfg +5 -0
  3375. package/build/highlight.js/.dockerignore +15 -0
  3376. package/build/highlight.js/.editorconfig +8 -0
  3377. package/build/highlight.js/.eslintrc.js +120 -0
  3378. package/build/highlight.js/.eslintrc.lang.js +14 -0
  3379. package/build/highlight.js/.git-blame-ignore-revs +4 -0
  3380. package/build/highlight.js/.gitattributes +4 -0
  3381. package/build/highlight.js/.github/ISSUE_TEMPLATE/1_incorrect-syntax-highlighting.md +39 -0
  3382. package/build/highlight.js/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  3383. package/build/highlight.js/.github/ISSUE_TEMPLATE/config.yml +11 -0
  3384. package/build/highlight.js/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  3385. package/build/highlight.js/.github/ISSUE_TEMPLATE/z_request_language_repo.md +55 -0
  3386. package/build/highlight.js/.github/dependabot.yml +6 -0
  3387. package/build/highlight.js/.github/pull_request_template.md +11 -0
  3388. package/build/highlight.js/.github/workflows/lint.yml +24 -0
  3389. package/build/highlight.js/.github/workflows/release.yml +140 -0
  3390. package/build/highlight.js/.github/workflows/size_report_comment.yml +52 -0
  3391. package/build/highlight.js/.github/workflows/size_report_create.yml +45 -0
  3392. package/build/highlight.js/.mocharc.json +3 -0
  3393. package/build/highlight.js/.readthedocs.yaml +20 -0
  3394. package/build/highlight.js/.tokeignore +7 -0
  3395. package/build/highlight.js/CHANGES.md +3617 -0
  3396. package/build/highlight.js/CONTRIBUTING.md +126 -0
  3397. package/build/highlight.js/CONTRIBUTORS.md +27 -0
  3398. package/build/highlight.js/Dockerfile +22 -0
  3399. package/build/highlight.js/LICENSE +29 -0
  3400. package/build/highlight.js/MAINTAINERS_GUIDE.md +47 -0
  3401. package/build/highlight.js/README.CDN.md +45 -0
  3402. package/build/highlight.js/README.md +521 -0
  3403. package/build/highlight.js/SECURITY.md +19 -0
  3404. package/build/highlight.js/SUPPORTED_LANGUAGES.md +291 -0
  3405. package/build/highlight.js/VERSION_10_BREAKING_CHANGES.md +40 -0
  3406. package/build/highlight.js/VERSION_10_UPGRADE.md +58 -0
  3407. package/build/highlight.js/VERSION_11_UPGRADE.md +203 -0
  3408. package/build/highlight.js/demo/demo.js +48 -0
  3409. package/build/highlight.js/demo/index.html +47 -0
  3410. package/build/highlight.js/demo/readme.md +1 -0
  3411. package/build/highlight.js/demo/style.css +136 -0
  3412. package/build/highlight.js/docs/Makefile +153 -0
  3413. package/build/highlight.js/docs/_static/.gitkeep +0 -0
  3414. package/build/highlight.js/docs/_templates/.gitkeep +0 -0
  3415. package/build/highlight.js/docs/api.rst +265 -0
  3416. package/build/highlight.js/docs/building-testing.rst +176 -0
  3417. package/build/highlight.js/docs/conf.py +247 -0
  3418. package/build/highlight.js/docs/css-classes-reference.rst +230 -0
  3419. package/build/highlight.js/docs/index.rst +55 -0
  3420. package/build/highlight.js/docs/language-contribution.rst +121 -0
  3421. package/build/highlight.js/docs/language-guide.rst +308 -0
  3422. package/build/highlight.js/docs/language-requests.rst +28 -0
  3423. package/build/highlight.js/docs/line-numbers.rst +37 -0
  3424. package/build/highlight.js/docs/mode-reference.rst +708 -0
  3425. package/build/highlight.js/docs/plugin-api.rst +151 -0
  3426. package/build/highlight.js/docs/plugin-recipes.rst +26 -0
  3427. package/build/highlight.js/docs/requirements.txt +2 -0
  3428. package/build/highlight.js/docs/theme-guide.rst +120 -0
  3429. package/build/highlight.js/package-lock.json +9720 -0
  3430. package/build/highlight.js/package.json +96 -0
  3431. package/build/highlight.js/src/core.d.ts +3 -0
  3432. package/build/highlight.js/src/highlight.js +1051 -0
  3433. package/build/highlight.js/src/languages/1c.js +542 -0
  3434. package/build/highlight.js/src/languages/abnf.js +81 -0
  3435. package/build/highlight.js/src/languages/accesslog.js +90 -0
  3436. package/build/highlight.js/src/languages/actionscript.js +151 -0
  3437. package/build/highlight.js/src/languages/ada.js +264 -0
  3438. package/build/highlight.js/src/languages/angelscript.js +176 -0
  3439. package/build/highlight.js/src/languages/apache.js +103 -0
  3440. package/build/highlight.js/src/languages/applescript.js +147 -0
  3441. package/build/highlight.js/src/languages/arcade.js +426 -0
  3442. package/build/highlight.js/src/languages/arduino.js +403 -0
  3443. package/build/highlight.js/src/languages/armasm.js +122 -0
  3444. package/build/highlight.js/src/languages/asciidoc.js +259 -0
  3445. package/build/highlight.js/src/languages/aspectj.js +229 -0
  3446. package/build/highlight.js/src/languages/autohotkey.js +73 -0
  3447. package/build/highlight.js/src/languages/autoit.js +176 -0
  3448. package/build/highlight.js/src/languages/avrasm.js +76 -0
  3449. package/build/highlight.js/src/languages/awk.js +66 -0
  3450. package/build/highlight.js/src/languages/axapta.js +186 -0
  3451. package/build/highlight.js/src/languages/bash.js +407 -0
  3452. package/build/highlight.js/src/languages/basic.js +234 -0
  3453. package/build/highlight.js/src/languages/bnf.js +37 -0
  3454. package/build/highlight.js/src/languages/brainfuck.js +52 -0
  3455. package/build/highlight.js/src/languages/c.js +331 -0
  3456. package/build/highlight.js/src/languages/cal.js +158 -0
  3457. package/build/highlight.js/src/languages/capnproto.js +97 -0
  3458. package/build/highlight.js/src/languages/ceylon.js +138 -0
  3459. package/build/highlight.js/src/languages/clean.js +65 -0
  3460. package/build/highlight.js/src/languages/clojure-repl.js +25 -0
  3461. package/build/highlight.js/src/languages/clojure.js +182 -0
  3462. package/build/highlight.js/src/languages/cmake.js +62 -0
  3463. package/build/highlight.js/src/languages/coffeescript.js +221 -0
  3464. package/build/highlight.js/src/languages/coq.js +443 -0
  3465. package/build/highlight.js/src/languages/cos.js +138 -0
  3466. package/build/highlight.js/src/languages/cpp.js +599 -0
  3467. package/build/highlight.js/src/languages/crmsh.js +98 -0
  3468. package/build/highlight.js/src/languages/crystal.js +310 -0
  3469. package/build/highlight.js/src/languages/csharp.js +410 -0
  3470. package/build/highlight.js/src/languages/csp.js +63 -0
  3471. package/build/highlight.js/src/languages/css.js +138 -0
  3472. package/build/highlight.js/src/languages/d.js +270 -0
  3473. package/build/highlight.js/src/languages/dart.js +269 -0
  3474. package/build/highlight.js/src/languages/delphi.js +244 -0
  3475. package/build/highlight.js/src/languages/diff.js +63 -0
  3476. package/build/highlight.js/src/languages/django.js +73 -0
  3477. package/build/highlight.js/src/languages/dns.js +76 -0
  3478. package/build/highlight.js/src/languages/dockerfile.js +42 -0
  3479. package/build/highlight.js/src/languages/dos.js +165 -0
  3480. package/build/highlight.js/src/languages/dsconfig.js +64 -0
  3481. package/build/highlight.js/src/languages/dts.js +155 -0
  3482. package/build/highlight.js/src/languages/dust.js +45 -0
  3483. package/build/highlight.js/src/languages/ebnf.js +52 -0
  3484. package/build/highlight.js/src/languages/elixir.js +284 -0
  3485. package/build/highlight.js/src/languages/elm.js +141 -0
  3486. package/build/highlight.js/src/languages/erb.js +27 -0
  3487. package/build/highlight.js/src/languages/erlang-repl.js +52 -0
  3488. package/build/highlight.js/src/languages/erlang.js +233 -0
  3489. package/build/highlight.js/src/languages/excel.js +578 -0
  3490. package/build/highlight.js/src/languages/fix.js +37 -0
  3491. package/build/highlight.js/src/languages/flix.js +77 -0
  3492. package/build/highlight.js/src/languages/fortran.js +572 -0
  3493. package/build/highlight.js/src/languages/fsharp.js +557 -0
  3494. package/build/highlight.js/src/languages/gams.js +180 -0
  3495. package/build/highlight.js/src/languages/gauss.js +304 -0
  3496. package/build/highlight.js/src/languages/gcode.js +187 -0
  3497. package/build/highlight.js/src/languages/gherkin.js +47 -0
  3498. package/build/highlight.js/src/languages/glsl.js +126 -0
  3499. package/build/highlight.js/src/languages/gml.js +3128 -0
  3500. package/build/highlight.js/src/languages/go.js +154 -0
  3501. package/build/highlight.js/src/languages/golo.js +79 -0
  3502. package/build/highlight.js/src/languages/gradle.js +188 -0
  3503. package/build/highlight.js/src/languages/graphql.js +76 -0
  3504. package/build/highlight.js/src/languages/groovy.js +188 -0
  3505. package/build/highlight.js/src/languages/haml.js +111 -0
  3506. package/build/highlight.js/src/languages/handlebars.js +256 -0
  3507. package/build/highlight.js/src/languages/haskell.js +215 -0
  3508. package/build/highlight.js/src/languages/haxe.js +166 -0
  3509. package/build/highlight.js/src/languages/hsp.js +57 -0
  3510. package/build/highlight.js/src/languages/http.js +95 -0
  3511. package/build/highlight.js/src/languages/hy.js +135 -0
  3512. package/build/highlight.js/src/languages/inform7.js +68 -0
  3513. package/build/highlight.js/src/languages/ini.js +119 -0
  3514. package/build/highlight.js/src/languages/irpf90.js +105 -0
  3515. package/build/highlight.js/src/languages/isbl.js +3203 -0
  3516. package/build/highlight.js/src/languages/java.js +255 -0
  3517. package/build/highlight.js/src/languages/javascript.js +609 -0
  3518. package/build/highlight.js/src/languages/jboss-cli.js +61 -0
  3519. package/build/highlight.js/src/languages/json.js +54 -0
  3520. package/build/highlight.js/src/languages/julia-repl.js +49 -0
  3521. package/build/highlight.js/src/languages/julia.js +440 -0
  3522. package/build/highlight.js/src/languages/kotlin.js +250 -0
  3523. package/build/highlight.js/src/languages/lasso.js +169 -0
  3524. package/build/highlight.js/src/languages/latex.js +276 -0
  3525. package/build/highlight.js/src/languages/ldif.js +29 -0
  3526. package/build/highlight.js/src/languages/leaf.js +95 -0
  3527. package/build/highlight.js/src/languages/less.js +235 -0
  3528. package/build/highlight.js/src/languages/lib/css-shared.js +819 -0
  3529. package/build/highlight.js/src/languages/lib/ecmascript.js +169 -0
  3530. package/build/highlight.js/src/languages/lib/java.js +35 -0
  3531. package/build/highlight.js/src/languages/lib/kws_swift.js +337 -0
  3532. package/build/highlight.js/src/languages/lib/mathematica.js +7235 -0
  3533. package/build/highlight.js/src/languages/lisp.js +137 -0
  3534. package/build/highlight.js/src/languages/livecodeserver.js +171 -0
  3535. package/build/highlight.js/src/languages/livescript.js +233 -0
  3536. package/build/highlight.js/src/languages/llvm.js +133 -0
  3537. package/build/highlight.js/src/languages/lsl.js +74 -0
  3538. package/build/highlight.js/src/languages/lua.js +79 -0
  3539. package/build/highlight.js/src/languages/makefile.js +87 -0
  3540. package/build/highlight.js/src/languages/markdown.js +246 -0
  3541. package/build/highlight.js/src/languages/mathematica.js +143 -0
  3542. package/build/highlight.js/src/languages/matlab.js +105 -0
  3543. package/build/highlight.js/src/languages/maxima.js +412 -0
  3544. package/build/highlight.js/src/languages/mel.js +233 -0
  3545. package/build/highlight.js/src/languages/mercury.js +106 -0
  3546. package/build/highlight.js/src/languages/mipsasm.js +102 -0
  3547. package/build/highlight.js/src/languages/mizar.js +25 -0
  3548. package/build/highlight.js/src/languages/mojolicious.js +34 -0
  3549. package/build/highlight.js/src/languages/monkey.js +182 -0
  3550. package/build/highlight.js/src/languages/moonscript.js +139 -0
  3551. package/build/highlight.js/src/languages/n1ql.js +363 -0
  3552. package/build/highlight.js/src/languages/nestedtext.js +81 -0
  3553. package/build/highlight.js/src/languages/nginx.js +151 -0
  3554. package/build/highlight.js/src/languages/nim.js +185 -0
  3555. package/build/highlight.js/src/languages/nix.js +370 -0
  3556. package/build/highlight.js/src/languages/node-repl.js +31 -0
  3557. package/build/highlight.js/src/languages/nsis.js +556 -0
  3558. package/build/highlight.js/src/languages/objectivec.js +251 -0
  3559. package/build/highlight.js/src/languages/ocaml.js +81 -0
  3560. package/build/highlight.js/src/languages/openscad.js +75 -0
  3561. package/build/highlight.js/src/languages/oxygene.js +85 -0
  3562. package/build/highlight.js/src/languages/parser3.js +53 -0
  3563. package/build/highlight.js/src/languages/perl.js +502 -0
  3564. package/build/highlight.js/src/languages/pf.js +63 -0
  3565. package/build/highlight.js/src/languages/pgsql.js +525 -0
  3566. package/build/highlight.js/src/languages/php-template.js +52 -0
  3567. package/build/highlight.js/src/languages/php.js +629 -0
  3568. package/build/highlight.js/src/languages/plaintext.js +17 -0
  3569. package/build/highlight.js/src/languages/pony.js +88 -0
  3570. package/build/highlight.js/src/languages/powershell.js +347 -0
  3571. package/build/highlight.js/src/languages/processing.js +432 -0
  3572. package/build/highlight.js/src/languages/profile.js +41 -0
  3573. package/build/highlight.js/src/languages/prolog.js +95 -0
  3574. package/build/highlight.js/src/languages/properties.js +66 -0
  3575. package/build/highlight.js/src/languages/protobuf.js +77 -0
  3576. package/build/highlight.js/src/languages/puppet.js +144 -0
  3577. package/build/highlight.js/src/languages/purebasic.js +98 -0
  3578. package/build/highlight.js/src/languages/python-repl.js +30 -0
  3579. package/build/highlight.js/src/languages/python.js +434 -0
  3580. package/build/highlight.js/src/languages/q.js +36 -0
  3581. package/build/highlight.js/src/languages/qml.js +187 -0
  3582. package/build/highlight.js/src/languages/r.js +255 -0
  3583. package/build/highlight.js/src/languages/reasonml.js +140 -0
  3584. package/build/highlight.js/src/languages/rib.js +35 -0
  3585. package/build/highlight.js/src/languages/roboconf.js +80 -0
  3586. package/build/highlight.js/src/languages/routeros.js +174 -0
  3587. package/build/highlight.js/src/languages/rsl.js +147 -0
  3588. package/build/highlight.js/src/languages/ruby.js +446 -0
  3589. package/build/highlight.js/src/languages/ruleslanguage.js +74 -0
  3590. package/build/highlight.js/src/languages/rust.js +324 -0
  3591. package/build/highlight.js/src/languages/sas.js +555 -0
  3592. package/build/highlight.js/src/languages/scala.js +212 -0
  3593. package/build/highlight.js/src/languages/scheme.js +200 -0
  3594. package/build/highlight.js/src/languages/scilab.js +71 -0
  3595. package/build/highlight.js/src/languages/scss.js +127 -0
  3596. package/build/highlight.js/src/languages/shell.js +31 -0
  3597. package/build/highlight.js/src/languages/smali.js +124 -0
  3598. package/build/highlight.js/src/languages/smalltalk.js +67 -0
  3599. package/build/highlight.js/src/languages/sml.js +73 -0
  3600. package/build/highlight.js/src/languages/sqf.js +2660 -0
  3601. package/build/highlight.js/src/languages/sql.js +691 -0
  3602. package/build/highlight.js/src/languages/stan.js +519 -0
  3603. package/build/highlight.js/src/languages/stata.js +51 -0
  3604. package/build/highlight.js/src/languages/step21.js +65 -0
  3605. package/build/highlight.js/src/languages/stylus.js +187 -0
  3606. package/build/highlight.js/src/languages/subunit.js +42 -0
  3607. package/build/highlight.js/src/languages/swift.js +577 -0
  3608. package/build/highlight.js/src/languages/taggerscript.js +57 -0
  3609. package/build/highlight.js/src/languages/tap.js +45 -0
  3610. package/build/highlight.js/src/languages/tcl.js +189 -0
  3611. package/build/highlight.js/src/languages/thrift.js +75 -0
  3612. package/build/highlight.js/src/languages/tp.js +170 -0
  3613. package/build/highlight.js/src/languages/twig.js +258 -0
  3614. package/build/highlight.js/src/languages/typescript.js +145 -0
  3615. package/build/highlight.js/src/languages/vala.js +59 -0
  3616. package/build/highlight.js/src/languages/vbnet.js +155 -0
  3617. package/build/highlight.js/src/languages/vbscript-html.js +22 -0
  3618. package/build/highlight.js/src/languages/vbscript.js +218 -0
  3619. package/build/highlight.js/src/languages/verilog.js +548 -0
  3620. package/build/highlight.js/src/languages/vhdl.js +214 -0
  3621. package/build/highlight.js/src/languages/vim.js +127 -0
  3622. package/build/highlight.js/src/languages/wasm.js +137 -0
  3623. package/build/highlight.js/src/languages/wren.js +300 -0
  3624. package/build/highlight.js/src/languages/x86asm.js +151 -0
  3625. package/build/highlight.js/src/languages/xl.js +203 -0
  3626. package/build/highlight.js/src/languages/xml.js +239 -0
  3627. package/build/highlight.js/src/languages/xquery.js +364 -0
  3628. package/build/highlight.js/src/languages/yaml.js +211 -0
  3629. package/build/highlight.js/src/languages/zephir.js +127 -0
  3630. package/build/highlight.js/src/lib/compile_keywords.js +90 -0
  3631. package/build/highlight.js/src/lib/compiler_extensions.js +104 -0
  3632. package/build/highlight.js/src/lib/ext/multi_class.js +132 -0
  3633. package/build/highlight.js/src/lib/exts/before_match.js +25 -0
  3634. package/build/highlight.js/src/lib/html_injection_error.js +7 -0
  3635. package/build/highlight.js/src/lib/html_renderer.js +109 -0
  3636. package/build/highlight.js/src/lib/logger.js +44 -0
  3637. package/build/highlight.js/src/lib/mode_compiler.js +432 -0
  3638. package/build/highlight.js/src/lib/modes.js +197 -0
  3639. package/build/highlight.js/src/lib/regex.js +153 -0
  3640. package/build/highlight.js/src/lib/response.js +20 -0
  3641. package/build/highlight.js/src/lib/token_tree.js +169 -0
  3642. package/build/highlight.js/src/lib/utils.js +36 -0
  3643. package/build/highlight.js/src/stub.js +17 -0
  3644. package/build/highlight.js/src/styles/1c-light.css +121 -0
  3645. package/build/highlight.js/src/styles/a11y-dark.css +98 -0
  3646. package/build/highlight.js/src/styles/a11y-light.css +98 -0
  3647. package/build/highlight.js/src/styles/agate.css +139 -0
  3648. package/build/highlight.js/src/styles/an-old-hope.css +87 -0
  3649. package/build/highlight.js/src/styles/androidstudio.css +63 -0
  3650. package/build/highlight.js/src/styles/arduino-light.css +85 -0
  3651. package/build/highlight.js/src/styles/arta.css +69 -0
  3652. package/build/highlight.js/src/styles/ascetic.css +42 -0
  3653. package/build/highlight.js/src/styles/atom-one-dark-reasonable.css +74 -0
  3654. package/build/highlight.js/src/styles/atom-one-dark.css +94 -0
  3655. package/build/highlight.js/src/styles/atom-one-light.css +94 -0
  3656. package/build/highlight.js/src/styles/base16/3024.css +177 -0
  3657. package/build/highlight.js/src/styles/base16/apathy.css +177 -0
  3658. package/build/highlight.js/src/styles/base16/apprentice.css +177 -0
  3659. package/build/highlight.js/src/styles/base16/ashes.css +177 -0
  3660. package/build/highlight.js/src/styles/base16/atelier-cave-light.css +177 -0
  3661. package/build/highlight.js/src/styles/base16/atelier-cave.css +177 -0
  3662. package/build/highlight.js/src/styles/base16/atelier-dune-light.css +177 -0
  3663. package/build/highlight.js/src/styles/base16/atelier-dune.css +177 -0
  3664. package/build/highlight.js/src/styles/base16/atelier-estuary-light.css +177 -0
  3665. package/build/highlight.js/src/styles/base16/atelier-estuary.css +177 -0
  3666. package/build/highlight.js/src/styles/base16/atelier-forest-light.css +177 -0
  3667. package/build/highlight.js/src/styles/base16/atelier-forest.css +177 -0
  3668. package/build/highlight.js/src/styles/base16/atelier-heath-light.css +177 -0
  3669. package/build/highlight.js/src/styles/base16/atelier-heath.css +177 -0
  3670. package/build/highlight.js/src/styles/base16/atelier-lakeside-light.css +177 -0
  3671. package/build/highlight.js/src/styles/base16/atelier-lakeside.css +177 -0
  3672. package/build/highlight.js/src/styles/base16/atelier-plateau-light.css +177 -0
  3673. package/build/highlight.js/src/styles/base16/atelier-plateau.css +177 -0
  3674. package/build/highlight.js/src/styles/base16/atelier-savanna-light.css +177 -0
  3675. package/build/highlight.js/src/styles/base16/atelier-savanna.css +177 -0
  3676. package/build/highlight.js/src/styles/base16/atelier-seaside-light.css +177 -0
  3677. package/build/highlight.js/src/styles/base16/atelier-seaside.css +177 -0
  3678. package/build/highlight.js/src/styles/base16/atelier-sulphurpool-light.css +177 -0
  3679. package/build/highlight.js/src/styles/base16/atelier-sulphurpool.css +177 -0
  3680. package/build/highlight.js/src/styles/base16/atlas.css +177 -0
  3681. package/build/highlight.js/src/styles/base16/bespin.css +177 -0
  3682. package/build/highlight.js/src/styles/base16/black-metal-bathory.css +177 -0
  3683. package/build/highlight.js/src/styles/base16/black-metal-burzum.css +177 -0
  3684. package/build/highlight.js/src/styles/base16/black-metal-dark-funeral.css +177 -0
  3685. package/build/highlight.js/src/styles/base16/black-metal-gorgoroth.css +177 -0
  3686. package/build/highlight.js/src/styles/base16/black-metal-immortal.css +177 -0
  3687. package/build/highlight.js/src/styles/base16/black-metal-khold.css +177 -0
  3688. package/build/highlight.js/src/styles/base16/black-metal-marduk.css +177 -0
  3689. package/build/highlight.js/src/styles/base16/black-metal-mayhem.css +177 -0
  3690. package/build/highlight.js/src/styles/base16/black-metal-nile.css +177 -0
  3691. package/build/highlight.js/src/styles/base16/black-metal-venom.css +177 -0
  3692. package/build/highlight.js/src/styles/base16/black-metal.css +177 -0
  3693. package/build/highlight.js/src/styles/base16/brewer.css +177 -0
  3694. package/build/highlight.js/src/styles/base16/bright.css +177 -0
  3695. package/build/highlight.js/src/styles/base16/brogrammer.css +177 -0
  3696. package/build/highlight.js/src/styles/base16/brush-trees-dark.css +177 -0
  3697. package/build/highlight.js/src/styles/base16/brush-trees.css +177 -0
  3698. package/build/highlight.js/src/styles/base16/chalk.css +177 -0
  3699. package/build/highlight.js/src/styles/base16/circus.css +177 -0
  3700. package/build/highlight.js/src/styles/base16/classic-dark.css +177 -0
  3701. package/build/highlight.js/src/styles/base16/classic-light.css +177 -0
  3702. package/build/highlight.js/src/styles/base16/codeschool.css +177 -0
  3703. package/build/highlight.js/src/styles/base16/colors.css +177 -0
  3704. package/build/highlight.js/src/styles/base16/cupcake.css +177 -0
  3705. package/build/highlight.js/src/styles/base16/cupertino.css +177 -0
  3706. package/build/highlight.js/src/styles/base16/danqing.css +177 -0
  3707. package/build/highlight.js/src/styles/base16/darcula.css +177 -0
  3708. package/build/highlight.js/src/styles/base16/dark-violet.css +177 -0
  3709. package/build/highlight.js/src/styles/base16/darkmoss.css +177 -0
  3710. package/build/highlight.js/src/styles/base16/darktooth.css +177 -0
  3711. package/build/highlight.js/src/styles/base16/decaf.css +177 -0
  3712. package/build/highlight.js/src/styles/base16/default-dark.css +177 -0
  3713. package/build/highlight.js/src/styles/base16/default-light.css +177 -0
  3714. package/build/highlight.js/src/styles/base16/dirtysea.css +177 -0
  3715. package/build/highlight.js/src/styles/base16/dracula.css +177 -0
  3716. package/build/highlight.js/src/styles/base16/edge-dark.css +177 -0
  3717. package/build/highlight.js/src/styles/base16/edge-light.css +177 -0
  3718. package/build/highlight.js/src/styles/base16/eighties.css +177 -0
  3719. package/build/highlight.js/src/styles/base16/embers.css +177 -0
  3720. package/build/highlight.js/src/styles/base16/equilibrium-dark.css +177 -0
  3721. package/build/highlight.js/src/styles/base16/equilibrium-gray-dark.css +177 -0
  3722. package/build/highlight.js/src/styles/base16/equilibrium-gray-light.css +177 -0
  3723. package/build/highlight.js/src/styles/base16/equilibrium-light.css +177 -0
  3724. package/build/highlight.js/src/styles/base16/espresso.css +177 -0
  3725. package/build/highlight.js/src/styles/base16/eva-dim.css +177 -0
  3726. package/build/highlight.js/src/styles/base16/eva.css +177 -0
  3727. package/build/highlight.js/src/styles/base16/flat.css +177 -0
  3728. package/build/highlight.js/src/styles/base16/framer.css +177 -0
  3729. package/build/highlight.js/src/styles/base16/fruit-soda.css +177 -0
  3730. package/build/highlight.js/src/styles/base16/gigavolt.css +177 -0
  3731. package/build/highlight.js/src/styles/base16/github.css +177 -0
  3732. package/build/highlight.js/src/styles/base16/google-dark.css +177 -0
  3733. package/build/highlight.js/src/styles/base16/google-light.css +177 -0
  3734. package/build/highlight.js/src/styles/base16/grayscale-dark.css +177 -0
  3735. package/build/highlight.js/src/styles/base16/grayscale-light.css +177 -0
  3736. package/build/highlight.js/src/styles/base16/green-screen.css +177 -0
  3737. package/build/highlight.js/src/styles/base16/gruvbox-dark-hard.css +177 -0
  3738. package/build/highlight.js/src/styles/base16/gruvbox-dark-medium.css +177 -0
  3739. package/build/highlight.js/src/styles/base16/gruvbox-dark-pale.css +177 -0
  3740. package/build/highlight.js/src/styles/base16/gruvbox-dark-soft.css +177 -0
  3741. package/build/highlight.js/src/styles/base16/gruvbox-light-hard.css +177 -0
  3742. package/build/highlight.js/src/styles/base16/gruvbox-light-medium.css +177 -0
  3743. package/build/highlight.js/src/styles/base16/gruvbox-light-soft.css +177 -0
  3744. package/build/highlight.js/src/styles/base16/hardcore.css +177 -0
  3745. package/build/highlight.js/src/styles/base16/harmonic16-dark.css +177 -0
  3746. package/build/highlight.js/src/styles/base16/harmonic16-light.css +177 -0
  3747. package/build/highlight.js/src/styles/base16/heetch-dark.css +177 -0
  3748. package/build/highlight.js/src/styles/base16/heetch-light.css +177 -0
  3749. package/build/highlight.js/src/styles/base16/helios.css +177 -0
  3750. package/build/highlight.js/src/styles/base16/hopscotch.css +177 -0
  3751. package/build/highlight.js/src/styles/base16/horizon-dark.css +177 -0
  3752. package/build/highlight.js/src/styles/base16/horizon-light.css +177 -0
  3753. package/build/highlight.js/src/styles/base16/humanoid-dark.css +177 -0
  3754. package/build/highlight.js/src/styles/base16/humanoid-light.css +177 -0
  3755. package/build/highlight.js/src/styles/base16/ia-dark.css +177 -0
  3756. package/build/highlight.js/src/styles/base16/ia-light.css +177 -0
  3757. package/build/highlight.js/src/styles/base16/icy-dark.css +177 -0
  3758. package/build/highlight.js/src/styles/base16/ir-black.css +177 -0
  3759. package/build/highlight.js/src/styles/base16/isotope.css +177 -0
  3760. package/build/highlight.js/src/styles/base16/kimber.css +177 -0
  3761. package/build/highlight.js/src/styles/base16/london-tube.css +177 -0
  3762. package/build/highlight.js/src/styles/base16/macintosh.css +177 -0
  3763. package/build/highlight.js/src/styles/base16/marrakesh.css +177 -0
  3764. package/build/highlight.js/src/styles/base16/materia.css +177 -0
  3765. package/build/highlight.js/src/styles/base16/material-darker.css +177 -0
  3766. package/build/highlight.js/src/styles/base16/material-lighter.css +177 -0
  3767. package/build/highlight.js/src/styles/base16/material-palenight.css +177 -0
  3768. package/build/highlight.js/src/styles/base16/material-vivid.css +177 -0
  3769. package/build/highlight.js/src/styles/base16/material.css +177 -0
  3770. package/build/highlight.js/src/styles/base16/mellow-purple.css +177 -0
  3771. package/build/highlight.js/src/styles/base16/mexico-light.css +177 -0
  3772. package/build/highlight.js/src/styles/base16/mocha.css +177 -0
  3773. package/build/highlight.js/src/styles/base16/monokai.css +177 -0
  3774. package/build/highlight.js/src/styles/base16/nebula.css +177 -0
  3775. package/build/highlight.js/src/styles/base16/nord.css +177 -0
  3776. package/build/highlight.js/src/styles/base16/nova.css +177 -0
  3777. package/build/highlight.js/src/styles/base16/ocean.css +177 -0
  3778. package/build/highlight.js/src/styles/base16/oceanicnext.css +177 -0
  3779. package/build/highlight.js/src/styles/base16/one-light.css +177 -0
  3780. package/build/highlight.js/src/styles/base16/onedark.css +177 -0
  3781. package/build/highlight.js/src/styles/base16/outrun-dark.css +177 -0
  3782. package/build/highlight.js/src/styles/base16/papercolor-dark.css +177 -0
  3783. package/build/highlight.js/src/styles/base16/papercolor-light.css +177 -0
  3784. package/build/highlight.js/src/styles/base16/paraiso.css +177 -0
  3785. package/build/highlight.js/src/styles/base16/pasque.css +177 -0
  3786. package/build/highlight.js/src/styles/base16/phd.css +177 -0
  3787. package/build/highlight.js/src/styles/base16/pico.css +177 -0
  3788. package/build/highlight.js/src/styles/base16/pop.css +177 -0
  3789. package/build/highlight.js/src/styles/base16/porple.css +177 -0
  3790. package/build/highlight.js/src/styles/base16/qualia.css +177 -0
  3791. package/build/highlight.js/src/styles/base16/railscasts.css +177 -0
  3792. package/build/highlight.js/src/styles/base16/rebecca.css +177 -0
  3793. package/build/highlight.js/src/styles/base16/ros-pine-dawn.css +177 -0
  3794. package/build/highlight.js/src/styles/base16/ros-pine-moon.css +177 -0
  3795. package/build/highlight.js/src/styles/base16/ros-pine.css +177 -0
  3796. package/build/highlight.js/src/styles/base16/sagelight.css +177 -0
  3797. package/build/highlight.js/src/styles/base16/sandcastle.css +177 -0
  3798. package/build/highlight.js/src/styles/base16/seti-ui.css +177 -0
  3799. package/build/highlight.js/src/styles/base16/shapeshifter.css +177 -0
  3800. package/build/highlight.js/src/styles/base16/silk-dark.css +177 -0
  3801. package/build/highlight.js/src/styles/base16/silk-light.css +177 -0
  3802. package/build/highlight.js/src/styles/base16/snazzy.css +177 -0
  3803. package/build/highlight.js/src/styles/base16/solar-flare-light.css +177 -0
  3804. package/build/highlight.js/src/styles/base16/solar-flare.css +177 -0
  3805. package/build/highlight.js/src/styles/base16/solarized-dark.css +177 -0
  3806. package/build/highlight.js/src/styles/base16/solarized-light.css +177 -0
  3807. package/build/highlight.js/src/styles/base16/spacemacs.css +177 -0
  3808. package/build/highlight.js/src/styles/base16/summercamp.css +177 -0
  3809. package/build/highlight.js/src/styles/base16/summerfruit-dark.css +177 -0
  3810. package/build/highlight.js/src/styles/base16/summerfruit-light.css +177 -0
  3811. package/build/highlight.js/src/styles/base16/synth-midnight-terminal-dark.css +177 -0
  3812. package/build/highlight.js/src/styles/base16/synth-midnight-terminal-light.css +177 -0
  3813. package/build/highlight.js/src/styles/base16/tango.css +177 -0
  3814. package/build/highlight.js/src/styles/base16/tender.css +177 -0
  3815. package/build/highlight.js/src/styles/base16/tomorrow-night.css +177 -0
  3816. package/build/highlight.js/src/styles/base16/tomorrow.css +177 -0
  3817. package/build/highlight.js/src/styles/base16/twilight.css +177 -0
  3818. package/build/highlight.js/src/styles/base16/unikitty-dark.css +177 -0
  3819. package/build/highlight.js/src/styles/base16/unikitty-light.css +177 -0
  3820. package/build/highlight.js/src/styles/base16/vulcan.css +177 -0
  3821. package/build/highlight.js/src/styles/base16/windows-10-light.css +177 -0
  3822. package/build/highlight.js/src/styles/base16/windows-10.css +177 -0
  3823. package/build/highlight.js/src/styles/base16/windows-95-light.css +177 -0
  3824. package/build/highlight.js/src/styles/base16/windows-95.css +177 -0
  3825. package/build/highlight.js/src/styles/base16/windows-high-contrast-light.css +177 -0
  3826. package/build/highlight.js/src/styles/base16/windows-high-contrast.css +177 -0
  3827. package/build/highlight.js/src/styles/base16/windows-nt-light.css +177 -0
  3828. package/build/highlight.js/src/styles/base16/windows-nt.css +177 -0
  3829. package/build/highlight.js/src/styles/base16/woodland.css +177 -0
  3830. package/build/highlight.js/src/styles/base16/xcode-dusk.css +177 -0
  3831. package/build/highlight.js/src/styles/base16/zenburn.css +177 -0
  3832. package/build/highlight.js/src/styles/brown-paper.css +61 -0
  3833. package/build/highlight.js/src/styles/brown-papersq.png +0 -0
  3834. package/build/highlight.js/src/styles/codepen-embed.css +56 -0
  3835. package/build/highlight.js/src/styles/color-brewer.css +68 -0
  3836. package/build/highlight.js/src/styles/cybertopia-cherry.css +96 -0
  3837. package/build/highlight.js/src/styles/cybertopia-dimmer.css +96 -0
  3838. package/build/highlight.js/src/styles/cybertopia-icecap.css +96 -0
  3839. package/build/highlight.js/src/styles/cybertopia-saturated.css +96 -0
  3840. package/build/highlight.js/src/styles/dark.css +61 -0
  3841. package/build/highlight.js/src/styles/default.css +133 -0
  3842. package/build/highlight.js/src/styles/devibeans.css +97 -0
  3843. package/build/highlight.js/src/styles/docco.css +93 -0
  3844. package/build/highlight.js/src/styles/far.css +68 -0
  3845. package/build/highlight.js/src/styles/felipec.css +103 -0
  3846. package/build/highlight.js/src/styles/foundation.css +88 -0
  3847. package/build/highlight.js/src/styles/github-dark-dimmed.css +124 -0
  3848. package/build/highlight.js/src/styles/github-dark.css +125 -0
  3849. package/build/highlight.js/src/styles/github.css +125 -0
  3850. package/build/highlight.js/src/styles/gml.css +76 -0
  3851. package/build/highlight.js/src/styles/googlecode.css +85 -0
  3852. package/build/highlight.js/src/styles/gradient-dark.css +119 -0
  3853. package/build/highlight.js/src/styles/gradient-light.css +128 -0
  3854. package/build/highlight.js/src/styles/grayscale.css +98 -0
  3855. package/build/highlight.js/src/styles/hybrid.css +93 -0
  3856. package/build/highlight.js/src/styles/idea.css +94 -0
  3857. package/build/highlight.js/src/styles/intellij-light.css +119 -0
  3858. package/build/highlight.js/src/styles/ir-black.css +70 -0
  3859. package/build/highlight.js/src/styles/isbl-editor-dark.css +110 -0
  3860. package/build/highlight.js/src/styles/isbl-editor-light.css +109 -0
  3861. package/build/highlight.js/src/styles/kimbie-dark.css +70 -0
  3862. package/build/highlight.js/src/styles/kimbie-light.css +70 -0
  3863. package/build/highlight.js/src/styles/lightfair.css +86 -0
  3864. package/build/highlight.js/src/styles/lioshi.css +84 -0
  3865. package/build/highlight.js/src/styles/magula.css +67 -0
  3866. package/build/highlight.js/src/styles/mono-blue.css +53 -0
  3867. package/build/highlight.js/src/styles/monokai-sublime.css +80 -0
  3868. package/build/highlight.js/src/styles/monokai.css +70 -0
  3869. package/build/highlight.js/src/styles/night-owl.css +179 -0
  3870. package/build/highlight.js/src/styles/nnfx-dark.css +114 -0
  3871. package/build/highlight.js/src/styles/nnfx-light.css +114 -0
  3872. package/build/highlight.js/src/styles/nord.css +342 -0
  3873. package/build/highlight.js/src/styles/obsidian.css +83 -0
  3874. package/build/highlight.js/src/styles/panda-syntax-dark.css +98 -0
  3875. package/build/highlight.js/src/styles/panda-syntax-light.css +94 -0
  3876. package/build/highlight.js/src/styles/paraiso-dark.css +68 -0
  3877. package/build/highlight.js/src/styles/paraiso-light.css +68 -0
  3878. package/build/highlight.js/src/styles/pojoaque.css +81 -0
  3879. package/build/highlight.js/src/styles/pojoaque.jpg +0 -0
  3880. package/build/highlight.js/src/styles/purebasic.css +90 -0
  3881. package/build/highlight.js/src/styles/qtcreator-dark.css +80 -0
  3882. package/build/highlight.js/src/styles/qtcreator-light.css +78 -0
  3883. package/build/highlight.js/src/styles/rainbow.css +83 -0
  3884. package/build/highlight.js/src/styles/rose-pine-dawn.css +110 -0
  3885. package/build/highlight.js/src/styles/rose-pine-moon.css +112 -0
  3886. package/build/highlight.js/src/styles/rose-pine.css +112 -0
  3887. package/build/highlight.js/src/styles/routeros.css +102 -0
  3888. package/build/highlight.js/src/styles/school-book.css +61 -0
  3889. package/build/highlight.js/src/styles/shades-of-purple.css +91 -0
  3890. package/build/highlight.js/src/styles/srcery.css +92 -0
  3891. package/build/highlight.js/src/styles/stackoverflow-dark.css +126 -0
  3892. package/build/highlight.js/src/styles/stackoverflow-light.css +126 -0
  3893. package/build/highlight.js/src/styles/sunburst.css +100 -0
  3894. package/build/highlight.js/src/styles/tokyo-night-dark.css +117 -0
  3895. package/build/highlight.js/src/styles/tokyo-night-light.css +118 -0
  3896. package/build/highlight.js/src/styles/tomorrow-night-blue.css +71 -0
  3897. package/build/highlight.js/src/styles/tomorrow-night-bright.css +70 -0
  3898. package/build/highlight.js/src/styles/vs-dark.css +62 -0
  3899. package/build/highlight.js/src/styles/vs.css +65 -0
  3900. package/build/highlight.js/src/styles/vs2015.css +112 -0
  3901. package/build/highlight.js/src/styles/xcode.css +101 -0
  3902. package/build/highlight.js/src/styles/xt256.css +88 -0
  3903. package/build/highlight.js/test/api/autoDetection.js +36 -0
  3904. package/build/highlight.js/test/api/beginKeywords.js +51 -0
  3905. package/build/highlight.js/test/api/binaryNumber.js +24 -0
  3906. package/build/highlight.js/test/api/cNumber.js +43 -0
  3907. package/build/highlight.js/test/api/getLanguage.js +56 -0
  3908. package/build/highlight.js/test/api/highlight.js +57 -0
  3909. package/build/highlight.js/test/api/ident.js +27 -0
  3910. package/build/highlight.js/test/api/index.js +18 -0
  3911. package/build/highlight.js/test/api/keywords.js +48 -0
  3912. package/build/highlight.js/test/api/multiClassMatch.js +81 -0
  3913. package/build/highlight.js/test/api/number.js +26 -0
  3914. package/build/highlight.js/test/api/registerAlias.js +24 -0
  3915. package/build/highlight.js/test/api/starters.js +37 -0
  3916. package/build/highlight.js/test/api/underscoreIdent.js +29 -0
  3917. package/build/highlight.js/test/api/unregisterLanguage.js +39 -0
  3918. package/build/highlight.js/test/browser/highlight_block_callbacks.js +177 -0
  3919. package/build/highlight.js/test/browser/index.js +5 -0
  3920. package/build/highlight.js/test/browser/plain.js +14 -0
  3921. package/build/highlight.js/test/browser/worker.js +50 -0
  3922. package/build/highlight.js/test/builds/browser_build_as_commonjs.js +33 -0
  3923. package/build/highlight.js/test/builds/cdn_build_as_esm.mjs +24 -0
  3924. package/build/highlight.js/test/builds/node_build_as_esm.mjs +24 -0
  3925. package/build/highlight.js/test/builds/package.js +14 -0
  3926. package/build/highlight.js/test/builds/rollup_import_cdn_build_esm.mjs +16 -0
  3927. package/build/highlight.js/test/builds/rollup_import_node_build_esm.mjs +16 -0
  3928. package/build/highlight.js/test/builds/rollup_import_via_commonjs.mjs +16 -0
  3929. package/build/highlight.js/test/detect/1c/default.txt +30 -0
  3930. package/build/highlight.js/test/detect/abnf/default.txt +22 -0
  3931. package/build/highlight.js/test/detect/accesslog/default.txt +1 -0
  3932. package/build/highlight.js/test/detect/actionscript/default.txt +24 -0
  3933. package/build/highlight.js/test/detect/ada/default.txt +17 -0
  3934. package/build/highlight.js/test/detect/angelscript/default.txt +62 -0
  3935. package/build/highlight.js/test/detect/apache/default.txt +19 -0
  3936. package/build/highlight.js/test/detect/applescript/default.txt +14 -0
  3937. package/build/highlight.js/test/detect/arcade/default.txt +14 -0
  3938. package/build/highlight.js/test/detect/arduino/default.txt +24 -0
  3939. package/build/highlight.js/test/detect/armasm/default.txt +36 -0
  3940. package/build/highlight.js/test/detect/asciidoc/default.txt +65 -0
  3941. package/build/highlight.js/test/detect/aspectj/default.txt +23 -0
  3942. package/build/highlight.js/test/detect/autohotkey/default.txt +24 -0
  3943. package/build/highlight.js/test/detect/autoit/default.txt +16 -0
  3944. package/build/highlight.js/test/detect/avrasm/default.txt +19 -0
  3945. package/build/highlight.js/test/detect/awk/default.txt +16 -0
  3946. package/build/highlight.js/test/detect/axapta/default.txt +32 -0
  3947. package/build/highlight.js/test/detect/bash/default.txt +17 -0
  3948. package/build/highlight.js/test/detect/basic/default.txt +22 -0
  3949. package/build/highlight.js/test/detect/bnf/default.txt +8 -0
  3950. package/build/highlight.js/test/detect/brainfuck/default.txt +17 -0
  3951. package/build/highlight.js/test/detect/cal/default.txt +40 -0
  3952. package/build/highlight.js/test/detect/capnproto/default.txt +55 -0
  3953. package/build/highlight.js/test/detect/ceylon/default.txt +8 -0
  3954. package/build/highlight.js/test/detect/clean/default.txt +30 -0
  3955. package/build/highlight.js/test/detect/clojure/default.txt +11 -0
  3956. package/build/highlight.js/test/detect/clojure-repl/default.txt +7 -0
  3957. package/build/highlight.js/test/detect/cmake/default.txt +19 -0
  3958. package/build/highlight.js/test/detect/coffeescript/default.txt +13 -0
  3959. package/build/highlight.js/test/detect/coq/default.txt +41 -0
  3960. package/build/highlight.js/test/detect/cos/default.txt +21 -0
  3961. package/build/highlight.js/test/detect/cpp/default.txt +14 -0
  3962. package/build/highlight.js/test/detect/crmsh/default.txt +48 -0
  3963. package/build/highlight.js/test/detect/crystal/default.txt +29 -0
  3964. package/build/highlight.js/test/detect/csharp/default.txt +17 -0
  3965. package/build/highlight.js/test/detect/csp/default.txt +13 -0
  3966. package/build/highlight.js/test/detect/css/default.txt +16 -0
  3967. package/build/highlight.js/test/detect/d/default.txt +44 -0
  3968. package/build/highlight.js/test/detect/dart/default.txt +37 -0
  3969. package/build/highlight.js/test/detect/delphi/default.txt +30 -0
  3970. package/build/highlight.js/test/detect/diff/default.txt +30 -0
  3971. package/build/highlight.js/test/detect/django/default.txt +15 -0
  3972. package/build/highlight.js/test/detect/dns/default.txt +17 -0
  3973. package/build/highlight.js/test/detect/dockerfile/default.txt +56 -0
  3974. package/build/highlight.js/test/detect/dos/default.txt +24 -0
  3975. package/build/highlight.js/test/detect/dsconfig/default.txt +22 -0
  3976. package/build/highlight.js/test/detect/dts/default.txt +71 -0
  3977. package/build/highlight.js/test/detect/dust/default.txt +7 -0
  3978. package/build/highlight.js/test/detect/ebnf/default.txt +12 -0
  3979. package/build/highlight.js/test/detect/elixir/default.txt +50 -0
  3980. package/build/highlight.js/test/detect/elm/default.txt +22 -0
  3981. package/build/highlight.js/test/detect/erb/default.txt +10 -0
  3982. package/build/highlight.js/test/detect/erlang/default.txt +60 -0
  3983. package/build/highlight.js/test/detect/erlang-repl/default.txt +27 -0
  3984. package/build/highlight.js/test/detect/excel/default.txt +1 -0
  3985. package/build/highlight.js/test/detect/fix/default.txt +4 -0
  3986. package/build/highlight.js/test/detect/flix/default.txt +49 -0
  3987. package/build/highlight.js/test/detect/fortran/default.txt +22 -0
  3988. package/build/highlight.js/test/detect/fsharp/default.txt +48 -0
  3989. package/build/highlight.js/test/detect/gams/default.txt +31 -0
  3990. package/build/highlight.js/test/detect/gauss/default.txt +28 -0
  3991. package/build/highlight.js/test/detect/gcode/default.txt +31 -0
  3992. package/build/highlight.js/test/detect/gherkin/default.txt +25 -0
  3993. package/build/highlight.js/test/detect/glsl/default.txt +37 -0
  3994. package/build/highlight.js/test/detect/gml/default.txt +22 -0
  3995. package/build/highlight.js/test/detect/go/default.txt +12 -0
  3996. package/build/highlight.js/test/detect/go/swift-like.txt +15 -0
  3997. package/build/highlight.js/test/detect/golo/default.txt +15 -0
  3998. package/build/highlight.js/test/detect/gradle/default.txt +62 -0
  3999. package/build/highlight.js/test/detect/graphql/default.txt +38 -0
  4000. package/build/highlight.js/test/detect/groovy/default.txt +56 -0
  4001. package/build/highlight.js/test/detect/haml/default.txt +14 -0
  4002. package/build/highlight.js/test/detect/handlebars/default.txt +6 -0
  4003. package/build/highlight.js/test/detect/haskell/default.txt +38 -0
  4004. package/build/highlight.js/test/detect/haxe/default.txt +142 -0
  4005. package/build/highlight.js/test/detect/hsp/default.txt +23 -0
  4006. package/build/highlight.js/test/detect/http/default.txt +13 -0
  4007. package/build/highlight.js/test/detect/hy/default.txt +37 -0
  4008. package/build/highlight.js/test/detect/index.js +62 -0
  4009. package/build/highlight.js/test/detect/inform7/default.txt +24 -0
  4010. package/build/highlight.js/test/detect/ini/default.txt +12 -0
  4011. package/build/highlight.js/test/detect/irpf90/default.txt +37 -0
  4012. package/build/highlight.js/test/detect/isbl/default.txt +27 -0
  4013. package/build/highlight.js/test/detect/java/default.txt +16 -0
  4014. package/build/highlight.js/test/detect/javascript/default.txt +21 -0
  4015. package/build/highlight.js/test/detect/javascript/sample1.txt +20 -0
  4016. package/build/highlight.js/test/detect/javascript/short-plain.txt +8 -0
  4017. package/build/highlight.js/test/detect/jboss-cli/default.txt +24 -0
  4018. package/build/highlight.js/test/detect/json/default.txt +12 -0
  4019. package/build/highlight.js/test/detect/json5/default.txt +16 -0
  4020. package/build/highlight.js/test/detect/julia/default.txt +99 -0
  4021. package/build/highlight.js/test/detect/julia-repl/default.txt +36 -0
  4022. package/build/highlight.js/test/detect/kotlin/default.txt +29 -0
  4023. package/build/highlight.js/test/detect/lasso/default.txt +48 -0
  4024. package/build/highlight.js/test/detect/latex/default.txt +35 -0
  4025. package/build/highlight.js/test/detect/ldif/default.txt +48 -0
  4026. package/build/highlight.js/test/detect/leaf/default.txt +14 -0
  4027. package/build/highlight.js/test/detect/less/default.txt +27 -0
  4028. package/build/highlight.js/test/detect/lisp/default.txt +22 -0
  4029. package/build/highlight.js/test/detect/livecodeserver/default.txt +30 -0
  4030. package/build/highlight.js/test/detect/livescript/default.txt +66 -0
  4031. package/build/highlight.js/test/detect/llvm/default.txt +61 -0
  4032. package/build/highlight.js/test/detect/lsl/default.txt +12 -0
  4033. package/build/highlight.js/test/detect/lua/default.txt +32 -0
  4034. package/build/highlight.js/test/detect/makefile/default.txt +13 -0
  4035. package/build/highlight.js/test/detect/markdown/default.txt +23 -0
  4036. package/build/highlight.js/test/detect/mathematica/default.txt +79 -0
  4037. package/build/highlight.js/test/detect/matlab/default.txt +45 -0
  4038. package/build/highlight.js/test/detect/maxima/default.txt +57 -0
  4039. package/build/highlight.js/test/detect/mel/default.txt +25 -0
  4040. package/build/highlight.js/test/detect/mercury/default.txt +24 -0
  4041. package/build/highlight.js/test/detect/mipsasm/default.txt +22 -0
  4042. package/build/highlight.js/test/detect/mizar/default.txt +86 -0
  4043. package/build/highlight.js/test/detect/mojolicious/default.txt +20 -0
  4044. package/build/highlight.js/test/detect/monkey/default.txt +37 -0
  4045. package/build/highlight.js/test/detect/moonscript/default.txt +37 -0
  4046. package/build/highlight.js/test/detect/n1ql/default.txt +19 -0
  4047. package/build/highlight.js/test/detect/nestedtext/default.txt +27 -0
  4048. package/build/highlight.js/test/detect/nginx/default.txt +47 -0
  4049. package/build/highlight.js/test/detect/nim/default.txt +21 -0
  4050. package/build/highlight.js/test/detect/nix/default.txt +24 -0
  4051. package/build/highlight.js/test/detect/node-repl/default.txt +4 -0
  4052. package/build/highlight.js/test/detect/nsis/default.txt +37 -0
  4053. package/build/highlight.js/test/detect/objectivec/default.txt +13 -0
  4054. package/build/highlight.js/test/detect/ocaml/default.txt +23 -0
  4055. package/build/highlight.js/test/detect/openscad/default.txt +15 -0
  4056. package/build/highlight.js/test/detect/oxygene/default.txt +56 -0
  4057. package/build/highlight.js/test/detect/parser3/default.txt +34 -0
  4058. package/build/highlight.js/test/detect/perl/default.txt +41 -0
  4059. package/build/highlight.js/test/detect/pf/default.txt +43 -0
  4060. package/build/highlight.js/test/detect/pgsql/default.txt +13 -0
  4061. package/build/highlight.js/test/detect/php/default.txt +64 -0
  4062. package/build/highlight.js/test/detect/php-template/default.txt +8 -0
  4063. package/build/highlight.js/test/detect/plaintext/default.txt +6 -0
  4064. package/build/highlight.js/test/detect/pony/default.txt +20 -0
  4065. package/build/highlight.js/test/detect/powershell/default.txt +11 -0
  4066. package/build/highlight.js/test/detect/processing/default.txt +17 -0
  4067. package/build/highlight.js/test/detect/profile/default.txt +8 -0
  4068. package/build/highlight.js/test/detect/prolog/default.txt +11 -0
  4069. package/build/highlight.js/test/detect/properties/default.txt +11 -0
  4070. package/build/highlight.js/test/detect/protobuf/default.txt +23 -0
  4071. package/build/highlight.js/test/detect/puppet/default.txt +33 -0
  4072. package/build/highlight.js/test/detect/purebasic/default.txt +29 -0
  4073. package/build/highlight.js/test/detect/python/default.txt +12 -0
  4074. package/build/highlight.js/test/detect/python-repl/default.txt +15 -0
  4075. package/build/highlight.js/test/detect/q/default.txt +9 -0
  4076. package/build/highlight.js/test/detect/qml/default.txt +49 -0
  4077. package/build/highlight.js/test/detect/r/default.txt +46 -0
  4078. package/build/highlight.js/test/detect/reasonml/default.txt +47 -0
  4079. package/build/highlight.js/test/detect/rib/default.txt +25 -0
  4080. package/build/highlight.js/test/detect/roboconf/default.txt +54 -0
  4081. package/build/highlight.js/test/detect/routeros/default.txt +17 -0
  4082. package/build/highlight.js/test/detect/rsl/default.txt +15 -0
  4083. package/build/highlight.js/test/detect/ruby/default.txt +13 -0
  4084. package/build/highlight.js/test/detect/ruby/double-colon.txt +3 -0
  4085. package/build/highlight.js/test/detect/ruleslanguage/default.txt +36 -0
  4086. package/build/highlight.js/test/detect/rust/default.txt +23 -0
  4087. package/build/highlight.js/test/detect/sas/default.txt +48 -0
  4088. package/build/highlight.js/test/detect/scala/default.txt +58 -0
  4089. package/build/highlight.js/test/detect/scheme/default.txt +28 -0
  4090. package/build/highlight.js/test/detect/scilab/default.txt +14 -0
  4091. package/build/highlight.js/test/detect/scss/default.txt +73 -0
  4092. package/build/highlight.js/test/detect/shell/default.txt +11 -0
  4093. package/build/highlight.js/test/detect/smali/default.txt +75 -0
  4094. package/build/highlight.js/test/detect/smalltalk/default.txt +39 -0
  4095. package/build/highlight.js/test/detect/sml/default.txt +26 -0
  4096. package/build/highlight.js/test/detect/sqf/default.txt +19 -0
  4097. package/build/highlight.js/test/detect/sql/default.txt +12 -0
  4098. package/build/highlight.js/test/detect/stan/default.txt +42 -0
  4099. package/build/highlight.js/test/detect/stata/default.txt +40 -0
  4100. package/build/highlight.js/test/detect/step21/default.txt +33 -0
  4101. package/build/highlight.js/test/detect/stylus/default.txt +28 -0
  4102. package/build/highlight.js/test/detect/subunit/default.txt +18 -0
  4103. package/build/highlight.js/test/detect/swift/default.txt +20 -0
  4104. package/build/highlight.js/test/detect/taggerscript/default.txt +12 -0
  4105. package/build/highlight.js/test/detect/tap/default.txt +24 -0
  4106. package/build/highlight.js/test/detect/tcl/default.txt +26 -0
  4107. package/build/highlight.js/test/detect/thrift/default.txt +40 -0
  4108. package/build/highlight.js/test/detect/tp/default.txt +156 -0
  4109. package/build/highlight.js/test/detect/twig/default.txt +21 -0
  4110. package/build/highlight.js/test/detect/typescript/default.txt +14 -0
  4111. package/build/highlight.js/test/detect/vala/default.txt +46 -0
  4112. package/build/highlight.js/test/detect/vbnet/default.txt +42 -0
  4113. package/build/highlight.js/test/detect/vbscript/default.txt +29 -0
  4114. package/build/highlight.js/test/detect/vbscript-html/default.txt +7 -0
  4115. package/build/highlight.js/test/detect/verilog/default.txt +58 -0
  4116. package/build/highlight.js/test/detect/vhdl/default.txt +41 -0
  4117. package/build/highlight.js/test/detect/vim/default.txt +17 -0
  4118. package/build/highlight.js/test/detect/wasm/default.txt +11 -0
  4119. package/build/highlight.js/test/detect/wren/default.txt +61 -0
  4120. package/build/highlight.js/test/detect/x86asm/default.txt +40 -0
  4121. package/build/highlight.js/test/detect/xl/default.txt +28 -0
  4122. package/build/highlight.js/test/detect/xml/default.txt +13 -0
  4123. package/build/highlight.js/test/detect/xml/groovy-julia.txt +5 -0
  4124. package/build/highlight.js/test/detect/xml/js.txt +1 -0
  4125. package/build/highlight.js/test/detect/xquery/default.txt +30 -0
  4126. package/build/highlight.js/test/detect/yaml/default.txt +39 -0
  4127. package/build/highlight.js/test/detect/zephir/default.txt +60 -0
  4128. package/build/highlight.js/test/fixtures/expect/endsWithParentVariants.txt +1 -0
  4129. package/build/highlight.js/test/fixtures/expect/explicit1.txt +2 -0
  4130. package/build/highlight.js/test/fixtures/expect/explicit2.txt +2 -0
  4131. package/build/highlight.js/test/fixtures/expect/languagealias.txt +1 -0
  4132. package/build/highlight.js/test/fixtures/expect/sublanguages.txt +5 -0
  4133. package/build/highlight.js/test/fixtures/expect/useBr.txt +1 -0
  4134. package/build/highlight.js/test/fixtures/index.html +96 -0
  4135. package/build/highlight.js/test/fixtures/nested.js +18 -0
  4136. package/build/highlight.js/test/index.js +31 -0
  4137. package/build/highlight.js/test/markup/1c/default.expect.txt +30 -0
  4138. package/build/highlight.js/test/markup/1c/default.txt +30 -0
  4139. package/build/highlight.js/test/markup/abnf/default.expect.txt +22 -0
  4140. package/build/highlight.js/test/markup/abnf/default.txt +22 -0
  4141. package/build/highlight.js/test/markup/accesslog/default.expect.txt +5 -0
  4142. package/build/highlight.js/test/markup/accesslog/default.txt +5 -0
  4143. package/build/highlight.js/test/markup/actionscript/method-call.expect.txt +1 -0
  4144. package/build/highlight.js/test/markup/actionscript/method-call.txt +1 -0
  4145. package/build/highlight.js/test/markup/ada/default.expect.txt +17 -0
  4146. package/build/highlight.js/test/markup/ada/default.txt +17 -0
  4147. package/build/highlight.js/test/markup/angelscript/default.expect.txt +63 -0
  4148. package/build/highlight.js/test/markup/angelscript/default.txt +63 -0
  4149. package/build/highlight.js/test/markup/apache/default.expect.txt +19 -0
  4150. package/build/highlight.js/test/markup/apache/default.txt +19 -0
  4151. package/build/highlight.js/test/markup/applescript/default.expect.txt +14 -0
  4152. package/build/highlight.js/test/markup/applescript/default.txt +14 -0
  4153. package/build/highlight.js/test/markup/arcade/profile.expect.txt +38 -0
  4154. package/build/highlight.js/test/markup/arcade/profile.txt +38 -0
  4155. package/build/highlight.js/test/markup/arduino/default.expect.txt +24 -0
  4156. package/build/highlight.js/test/markup/arduino/default.txt +24 -0
  4157. package/build/highlight.js/test/markup/armasm/default.expect.txt +13 -0
  4158. package/build/highlight.js/test/markup/armasm/default.txt +13 -0
  4159. package/build/highlight.js/test/markup/asciidoc/constrained.expect.txt +97 -0
  4160. package/build/highlight.js/test/markup/asciidoc/constrained.txt +97 -0
  4161. package/build/highlight.js/test/markup/asciidoc/default.expect.txt +80 -0
  4162. package/build/highlight.js/test/markup/asciidoc/default.txt +80 -0
  4163. package/build/highlight.js/test/markup/asciidoc/unconstrained.expect.txt +83 -0
  4164. package/build/highlight.js/test/markup/asciidoc/unconstrained.txt +83 -0
  4165. package/build/highlight.js/test/markup/aspectj/intertype-constructor.expect.txt +3 -0
  4166. package/build/highlight.js/test/markup/aspectj/intertype-constructor.txt +3 -0
  4167. package/build/highlight.js/test/markup/aspectj/intertype-method.expect.txt +6 -0
  4168. package/build/highlight.js/test/markup/aspectj/intertype-method.txt +6 -0
  4169. package/build/highlight.js/test/markup/autohotkey/default.expect.txt +24 -0
  4170. package/build/highlight.js/test/markup/autohotkey/default.txt +24 -0
  4171. package/build/highlight.js/test/markup/autoit/default.expect.txt +16 -0
  4172. package/build/highlight.js/test/markup/autoit/default.txt +16 -0
  4173. package/build/highlight.js/test/markup/avrasm/default.expect.txt +19 -0
  4174. package/build/highlight.js/test/markup/avrasm/default.txt +19 -0
  4175. package/build/highlight.js/test/markup/awk/default.expect.txt +16 -0
  4176. package/build/highlight.js/test/markup/awk/default.txt +16 -0
  4177. package/build/highlight.js/test/markup/axapta/default.expect.txt +32 -0
  4178. package/build/highlight.js/test/markup/axapta/default.txt +32 -0
  4179. package/build/highlight.js/test/markup/bash/arithmetic.expect.txt +16 -0
  4180. package/build/highlight.js/test/markup/bash/arithmetic.txt +16 -0
  4181. package/build/highlight.js/test/markup/bash/escaped-apos.expect.txt +2 -0
  4182. package/build/highlight.js/test/markup/bash/escaped-apos.txt +2 -0
  4183. package/build/highlight.js/test/markup/bash/escaped-quote.expect.txt +2 -0
  4184. package/build/highlight.js/test/markup/bash/escaped-quote.txt +2 -0
  4185. package/build/highlight.js/test/markup/bash/no-numbers.expect.txt +3 -0
  4186. package/build/highlight.js/test/markup/bash/no-numbers.txt +3 -0
  4187. package/build/highlight.js/test/markup/bash/not-comments.expect.txt +3 -0
  4188. package/build/highlight.js/test/markup/bash/not-comments.txt +3 -0
  4189. package/build/highlight.js/test/markup/bash/strings.expect.txt +14 -0
  4190. package/build/highlight.js/test/markup/bash/strings.txt +14 -0
  4191. package/build/highlight.js/test/markup/bash/token-containing-keyword.expect.txt +10 -0
  4192. package/build/highlight.js/test/markup/bash/token-containing-keyword.txt +10 -0
  4193. package/build/highlight.js/test/markup/bash/variables.expect.txt +3 -0
  4194. package/build/highlight.js/test/markup/bash/variables.txt +3 -0
  4195. package/build/highlight.js/test/markup/basic/default.expect.txt +22 -0
  4196. package/build/highlight.js/test/markup/basic/default.txt +22 -0
  4197. package/build/highlight.js/test/markup/bnf/default.expect.txt +8 -0
  4198. package/build/highlight.js/test/markup/bnf/default.txt +8 -0
  4199. package/build/highlight.js/test/markup/brainfuck/default.expect.txt +17 -0
  4200. package/build/highlight.js/test/markup/brainfuck/default.txt +17 -0
  4201. package/build/highlight.js/test/markup/c/number-literals.expect.txt +46 -0
  4202. package/build/highlight.js/test/markup/c/number-literals.txt +46 -0
  4203. package/build/highlight.js/test/markup/cal/default.expect.txt +33 -0
  4204. package/build/highlight.js/test/markup/cal/default.txt +33 -0
  4205. package/build/highlight.js/test/markup/capnproto/default.expect.txt +55 -0
  4206. package/build/highlight.js/test/markup/capnproto/default.txt +55 -0
  4207. package/build/highlight.js/test/markup/ceylon/nested-comments.expect.txt +5 -0
  4208. package/build/highlight.js/test/markup/ceylon/nested-comments.txt +5 -0
  4209. package/build/highlight.js/test/markup/clean/default.expect.txt +30 -0
  4210. package/build/highlight.js/test/markup/clean/default.txt +30 -0
  4211. package/build/highlight.js/test/markup/clojure/character.expect.txt +5 -0
  4212. package/build/highlight.js/test/markup/clojure/character.txt +5 -0
  4213. package/build/highlight.js/test/markup/clojure/comment-macro.expect.txt +2 -0
  4214. package/build/highlight.js/test/markup/clojure/comment-macro.txt +2 -0
  4215. package/build/highlight.js/test/markup/clojure/deps_edn.expect.txt +14 -0
  4216. package/build/highlight.js/test/markup/clojure/deps_edn.txt +14 -0
  4217. package/build/highlight.js/test/markup/clojure/globals_definition.expect.txt +72 -0
  4218. package/build/highlight.js/test/markup/clojure/globals_definition.txt +72 -0
  4219. package/build/highlight.js/test/markup/clojure/number.expect.txt +69 -0
  4220. package/build/highlight.js/test/markup/clojure/number.txt +69 -0
  4221. package/build/highlight.js/test/markup/clojure/symbols-numbers.expect.txt +4 -0
  4222. package/build/highlight.js/test/markup/clojure/symbols-numbers.txt +4 -0
  4223. package/build/highlight.js/test/markup/clojure-repl/prompt.expect.txt +2 -0
  4224. package/build/highlight.js/test/markup/clojure-repl/prompt.txt +2 -0
  4225. package/build/highlight.js/test/markup/cmake/default.expect.txt +23 -0
  4226. package/build/highlight.js/test/markup/cmake/default.txt +23 -0
  4227. package/build/highlight.js/test/markup/coffeescript/division.expect.txt +8 -0
  4228. package/build/highlight.js/test/markup/coffeescript/division.txt +8 -0
  4229. package/build/highlight.js/test/markup/coffeescript/freeze_bug.expect.txt +2 -0
  4230. package/build/highlight.js/test/markup/coffeescript/freeze_bug.txt +2 -0
  4231. package/build/highlight.js/test/markup/coffeescript/function.expect.txt +14 -0
  4232. package/build/highlight.js/test/markup/coffeescript/function.txt +14 -0
  4233. package/build/highlight.js/test/markup/coffeescript/regex.expect.txt +18 -0
  4234. package/build/highlight.js/test/markup/coffeescript/regex.txt +18 -0
  4235. package/build/highlight.js/test/markup/coq/default.expect.txt +41 -0
  4236. package/build/highlight.js/test/markup/coq/default.txt +41 -0
  4237. package/build/highlight.js/test/markup/cos/basic.expect.txt +7 -0
  4238. package/build/highlight.js/test/markup/cos/basic.txt +7 -0
  4239. package/build/highlight.js/test/markup/cos/embedded.expect.txt +5 -0
  4240. package/build/highlight.js/test/markup/cos/embedded.txt +5 -0
  4241. package/build/highlight.js/test/markup/cpp/bitwise-keywords.expect.txt +14 -0
  4242. package/build/highlight.js/test/markup/cpp/bitwise-keywords.txt +14 -0
  4243. package/build/highlight.js/test/markup/cpp/bugs.expect.txt +6 -0
  4244. package/build/highlight.js/test/markup/cpp/bugs.txt +6 -0
  4245. package/build/highlight.js/test/markup/cpp/comments.expect.txt +14 -0
  4246. package/build/highlight.js/test/markup/cpp/comments.txt +13 -0
  4247. package/build/highlight.js/test/markup/cpp/expression-keywords.expect.txt +2 -0
  4248. package/build/highlight.js/test/markup/cpp/expression-keywords.txt +2 -0
  4249. package/build/highlight.js/test/markup/cpp/function-declarations.expect.txt +25 -0
  4250. package/build/highlight.js/test/markup/cpp/function-declarations.txt +25 -0
  4251. package/build/highlight.js/test/markup/cpp/function-like-keywords.expect.txt +12 -0
  4252. package/build/highlight.js/test/markup/cpp/function-like-keywords.txt +12 -0
  4253. package/build/highlight.js/test/markup/cpp/function-params.expect.txt +7 -0
  4254. package/build/highlight.js/test/markup/cpp/function-params.txt +7 -0
  4255. package/build/highlight.js/test/markup/cpp/function-title.expect.txt +10 -0
  4256. package/build/highlight.js/test/markup/cpp/function-title.txt +10 -0
  4257. package/build/highlight.js/test/markup/cpp/initializers.expect.txt +2 -0
  4258. package/build/highlight.js/test/markup/cpp/initializers.txt +2 -0
  4259. package/build/highlight.js/test/markup/cpp/number-literals.expect.txt +55 -0
  4260. package/build/highlight.js/test/markup/cpp/number-literals.txt +55 -0
  4261. package/build/highlight.js/test/markup/cpp/pointers-returns.expect.txt +4 -0
  4262. package/build/highlight.js/test/markup/cpp/pointers-returns.txt +4 -0
  4263. package/build/highlight.js/test/markup/cpp/preprocessor.expect.txt +33 -0
  4264. package/build/highlight.js/test/markup/cpp/preprocessor.txt +33 -0
  4265. package/build/highlight.js/test/markup/cpp/primitive-types.expect.txt +57 -0
  4266. package/build/highlight.js/test/markup/cpp/primitive-types.txt +57 -0
  4267. package/build/highlight.js/test/markup/cpp/string-literals.expect.txt +69 -0
  4268. package/build/highlight.js/test/markup/cpp/string-literals.txt +69 -0
  4269. package/build/highlight.js/test/markup/cpp/template-complexity.expect.txt +24 -0
  4270. package/build/highlight.js/test/markup/cpp/template-complexity.txt +24 -0
  4271. package/build/highlight.js/test/markup/cpp/truncated-raw-string.expect.txt +5 -0
  4272. package/build/highlight.js/test/markup/cpp/truncated-raw-string.txt +4 -0
  4273. package/build/highlight.js/test/markup/crmsh/default.expect.txt +48 -0
  4274. package/build/highlight.js/test/markup/crmsh/default.txt +48 -0
  4275. package/build/highlight.js/test/markup/crystal/defs.expect.txt +14 -0
  4276. package/build/highlight.js/test/markup/crystal/defs.txt +14 -0
  4277. package/build/highlight.js/test/markup/crystal/literals.expect.txt +98 -0
  4278. package/build/highlight.js/test/markup/crystal/literals.txt +98 -0
  4279. package/build/highlight.js/test/markup/crystal/macro.expect.txt +9 -0
  4280. package/build/highlight.js/test/markup/crystal/macro.txt +9 -0
  4281. package/build/highlight.js/test/markup/crystal/operators.expect.txt +34 -0
  4282. package/build/highlight.js/test/markup/crystal/operators.txt +33 -0
  4283. package/build/highlight.js/test/markup/crystal/regexes.expect.txt +12 -0
  4284. package/build/highlight.js/test/markup/crystal/regexes.txt +12 -0
  4285. package/build/highlight.js/test/markup/crystal/toplevel-keywords.expect.txt +4 -0
  4286. package/build/highlight.js/test/markup/crystal/toplevel-keywords.txt +4 -0
  4287. package/build/highlight.js/test/markup/csharp/dotted-namespace.expect.txt +6 -0
  4288. package/build/highlight.js/test/markup/csharp/dotted-namespace.txt +6 -0
  4289. package/build/highlight.js/test/markup/csharp/floats.expect.txt +6 -0
  4290. package/build/highlight.js/test/markup/csharp/floats.txt +5 -0
  4291. package/build/highlight.js/test/markup/csharp/functions.expect.txt +16 -0
  4292. package/build/highlight.js/test/markup/csharp/functions.txt +16 -0
  4293. package/build/highlight.js/test/markup/csharp/generic_modifiers.expect.txt +15 -0
  4294. package/build/highlight.js/test/markup/csharp/generic_modifiers.txt +15 -0
  4295. package/build/highlight.js/test/markup/csharp/identifiers.expect.txt +4 -0
  4296. package/build/highlight.js/test/markup/csharp/identifiers.txt +4 -0
  4297. package/build/highlight.js/test/markup/csharp/records.expect.txt +6 -0
  4298. package/build/highlight.js/test/markup/csharp/records.txt +6 -0
  4299. package/build/highlight.js/test/markup/csharp/scoped.expect.txt +1 -0
  4300. package/build/highlight.js/test/markup/csharp/scoped.txt +1 -0
  4301. package/build/highlight.js/test/markup/csharp/string-interpolation.expect.txt +9 -0
  4302. package/build/highlight.js/test/markup/csharp/string-interpolation.txt +9 -0
  4303. package/build/highlight.js/test/markup/csharp/string-raw.expect.txt +17 -0
  4304. package/build/highlight.js/test/markup/csharp/string-raw.txt +17 -0
  4305. package/build/highlight.js/test/markup/csharp/titles.expect.txt +21 -0
  4306. package/build/highlight.js/test/markup/csharp/titles.txt +21 -0
  4307. package/build/highlight.js/test/markup/csharp/try-catch.expect.txt +8 -0
  4308. package/build/highlight.js/test/markup/csharp/try-catch.txt +8 -0
  4309. package/build/highlight.js/test/markup/csp/default.expect.txt +13 -0
  4310. package/build/highlight.js/test/markup/csp/default.txt +13 -0
  4311. package/build/highlight.js/test/markup/css/css_consistency.expect.txt +77 -0
  4312. package/build/highlight.js/test/markup/css/css_consistency.txt +77 -0
  4313. package/build/highlight.js/test/markup/css/hex-colors.expect.txt +19 -0
  4314. package/build/highlight.js/test/markup/css/hex-colors.txt +19 -0
  4315. package/build/highlight.js/test/markup/css/pseudo-selector.expect.txt +24 -0
  4316. package/build/highlight.js/test/markup/css/pseudo-selector.txt +24 -0
  4317. package/build/highlight.js/test/markup/css/pseudo.expect.txt +11 -0
  4318. package/build/highlight.js/test/markup/css/pseudo.txt +11 -0
  4319. package/build/highlight.js/test/markup/css/sample.expect.txt +45 -0
  4320. package/build/highlight.js/test/markup/css/sample.txt +45 -0
  4321. package/build/highlight.js/test/markup/css/url.expect.txt +9 -0
  4322. package/build/highlight.js/test/markup/css/url.txt +9 -0
  4323. package/build/highlight.js/test/markup/css/variables.expect.txt +14 -0
  4324. package/build/highlight.js/test/markup/css/variables.txt +15 -0
  4325. package/build/highlight.js/test/markup/d/default.expect.txt +44 -0
  4326. package/build/highlight.js/test/markup/d/default.txt +44 -0
  4327. package/build/highlight.js/test/markup/dart/comment-markdown.expect.txt +14 -0
  4328. package/build/highlight.js/test/markup/dart/comment-markdown.txt +14 -0
  4329. package/build/highlight.js/test/markup/dart/string-interpolation.expect.txt +3 -0
  4330. package/build/highlight.js/test/markup/dart/string-interpolation.txt +3 -0
  4331. package/build/highlight.js/test/markup/delphi/character-string.expect.txt +12 -0
  4332. package/build/highlight.js/test/markup/delphi/character-string.txt +12 -0
  4333. package/build/highlight.js/test/markup/delphi/compiler-directive.expect.txt +4 -0
  4334. package/build/highlight.js/test/markup/delphi/compiler-directive.txt +4 -0
  4335. package/build/highlight.js/test/markup/delphi/numeric-literal.expect.txt +18 -0
  4336. package/build/highlight.js/test/markup/delphi/numeric-literal.txt +18 -0
  4337. package/build/highlight.js/test/markup/diff/comments.expect.txt +11 -0
  4338. package/build/highlight.js/test/markup/diff/comments.txt +11 -0
  4339. package/build/highlight.js/test/markup/diff/git-format-patch.expect.txt +37 -0
  4340. package/build/highlight.js/test/markup/diff/git-format-patch.txt +37 -0
  4341. package/build/highlight.js/test/markup/django/default.expect.txt +16 -0
  4342. package/build/highlight.js/test/markup/django/default.txt +15 -0
  4343. package/build/highlight.js/test/markup/dns/default.expect.txt +17 -0
  4344. package/build/highlight.js/test/markup/dns/default.txt +17 -0
  4345. package/build/highlight.js/test/markup/dockerfile/default.expect.txt +23 -0
  4346. package/build/highlight.js/test/markup/dockerfile/default.txt +23 -0
  4347. package/build/highlight.js/test/markup/dos/comments.expect.txt +3 -0
  4348. package/build/highlight.js/test/markup/dos/comments.txt +3 -0
  4349. package/build/highlight.js/test/markup/dsconfig/default.expect.txt +24 -0
  4350. package/build/highlight.js/test/markup/dsconfig/default.txt +24 -0
  4351. package/build/highlight.js/test/markup/dts/default.expect.txt +71 -0
  4352. package/build/highlight.js/test/markup/dts/default.txt +71 -0
  4353. package/build/highlight.js/test/markup/dust/default.expect.txt +8 -0
  4354. package/build/highlight.js/test/markup/dust/default.txt +7 -0
  4355. package/build/highlight.js/test/markup/ebnf/quote-symbols.expect.txt +8 -0
  4356. package/build/highlight.js/test/markup/ebnf/quote-symbols.txt +8 -0
  4357. package/build/highlight.js/test/markup/ebnf/terminators.expect.txt +3 -0
  4358. package/build/highlight.js/test/markup/ebnf/terminators.txt +3 -0
  4359. package/build/highlight.js/test/markup/ebnf/underscore-production.expect.txt +1 -0
  4360. package/build/highlight.js/test/markup/ebnf/underscore-production.txt +1 -0
  4361. package/build/highlight.js/test/markup/elixir/char-literal.expect.txt +2 -0
  4362. package/build/highlight.js/test/markup/elixir/char-literal.txt +2 -0
  4363. package/build/highlight.js/test/markup/elixir/conditionals.expect.txt +41 -0
  4364. package/build/highlight.js/test/markup/elixir/conditionals.txt +41 -0
  4365. package/build/highlight.js/test/markup/elixir/function-not-regex.expect.txt +6 -0
  4366. package/build/highlight.js/test/markup/elixir/function-not-regex.txt +6 -0
  4367. package/build/highlight.js/test/markup/elixir/function-title.expect.txt +21 -0
  4368. package/build/highlight.js/test/markup/elixir/function-title.txt +21 -0
  4369. package/build/highlight.js/test/markup/elixir/module-references.expect.txt +19 -0
  4370. package/build/highlight.js/test/markup/elixir/module-references.txt +19 -0
  4371. package/build/highlight.js/test/markup/elixir/modules.expect.txt +12 -0
  4372. package/build/highlight.js/test/markup/elixir/modules.txt +12 -0
  4373. package/build/highlight.js/test/markup/elixir/numbers.expect.txt +21 -0
  4374. package/build/highlight.js/test/markup/elixir/numbers.txt +21 -0
  4375. package/build/highlight.js/test/markup/elixir/sigils.expect.txt +49 -0
  4376. package/build/highlight.js/test/markup/elixir/sigils.txt +49 -0
  4377. package/build/highlight.js/test/markup/elixir/strings.expect.txt +8 -0
  4378. package/build/highlight.js/test/markup/elixir/strings.txt +8 -0
  4379. package/build/highlight.js/test/markup/elixir/uppercase-string-sigil.expect.txt +17 -0
  4380. package/build/highlight.js/test/markup/elixir/uppercase-string-sigil.txt +17 -0
  4381. package/build/highlight.js/test/markup/elm/default.expect.txt +22 -0
  4382. package/build/highlight.js/test/markup/elm/default.txt +22 -0
  4383. package/build/highlight.js/test/markup/erb/default.expect.txt +11 -0
  4384. package/build/highlight.js/test/markup/erb/default.txt +10 -0
  4385. package/build/highlight.js/test/markup/erlang/char_literal.expect.txt +23 -0
  4386. package/build/highlight.js/test/markup/erlang/char_literal.txt +23 -0
  4387. package/build/highlight.js/test/markup/erlang/doc_attribute.expect.txt +9 -0
  4388. package/build/highlight.js/test/markup/erlang/doc_attribute.txt +9 -0
  4389. package/build/highlight.js/test/markup/erlang/maybe.expect.txt +9 -0
  4390. package/build/highlight.js/test/markup/erlang/maybe.txt +9 -0
  4391. package/build/highlight.js/test/markup/erlang/numbers.expect.txt +14 -0
  4392. package/build/highlight.js/test/markup/erlang/numbers.txt +14 -0
  4393. package/build/highlight.js/test/markup/erlang/sigil.expect.txt +34 -0
  4394. package/build/highlight.js/test/markup/erlang/sigil.txt +34 -0
  4395. package/build/highlight.js/test/markup/erlang/triple_quote_string.expect.txt +23 -0
  4396. package/build/highlight.js/test/markup/erlang/triple_quote_string.txt +23 -0
  4397. package/build/highlight.js/test/markup/erlang-repl/default.expect.txt +27 -0
  4398. package/build/highlight.js/test/markup/erlang-repl/default.txt +27 -0
  4399. package/build/highlight.js/test/markup/excel/comments.expect.txt +1 -0
  4400. package/build/highlight.js/test/markup/excel/comments.txt +1 -0
  4401. package/build/highlight.js/test/markup/fix/default.expect.txt +4 -0
  4402. package/build/highlight.js/test/markup/fix/default.txt +4 -0
  4403. package/build/highlight.js/test/markup/flix/default.expect.txt +49 -0
  4404. package/build/highlight.js/test/markup/flix/default.txt +49 -0
  4405. package/build/highlight.js/test/markup/fortran/comments.expect.txt +11 -0
  4406. package/build/highlight.js/test/markup/fortran/comments.txt +11 -0
  4407. package/build/highlight.js/test/markup/fortran/dot_keywords.expect.txt +8 -0
  4408. package/build/highlight.js/test/markup/fortran/dot_keywords.txt +8 -0
  4409. package/build/highlight.js/test/markup/fortran/numbers.expect.txt +19 -0
  4410. package/build/highlight.js/test/markup/fortran/numbers.txt +19 -0
  4411. package/build/highlight.js/test/markup/fsharp/attributes.expect.txt +4 -0
  4412. package/build/highlight.js/test/markup/fsharp/attributes.txt +4 -0
  4413. package/build/highlight.js/test/markup/fsharp/bang-keywords.expect.txt +1 -0
  4414. package/build/highlight.js/test/markup/fsharp/bang-keywords.txt +1 -0
  4415. package/build/highlight.js/test/markup/fsharp/comments.expect.txt +44 -0
  4416. package/build/highlight.js/test/markup/fsharp/comments.txt +44 -0
  4417. package/build/highlight.js/test/markup/fsharp/computation-expressions.expect.txt +23 -0
  4418. package/build/highlight.js/test/markup/fsharp/computation-expressions.txt +23 -0
  4419. package/build/highlight.js/test/markup/fsharp/fsi-and-preprocessor.expect.txt +23 -0
  4420. package/build/highlight.js/test/markup/fsharp/fsi-and-preprocessor.txt +23 -0
  4421. package/build/highlight.js/test/markup/fsharp/numbers.expect.txt +40 -0
  4422. package/build/highlight.js/test/markup/fsharp/numbers.txt +40 -0
  4423. package/build/highlight.js/test/markup/fsharp/operators.expect.txt +77 -0
  4424. package/build/highlight.js/test/markup/fsharp/operators.txt +77 -0
  4425. package/build/highlight.js/test/markup/fsharp/strings.expect.txt +136 -0
  4426. package/build/highlight.js/test/markup/fsharp/strings.txt +136 -0
  4427. package/build/highlight.js/test/markup/fsharp/types.expect.txt +143 -0
  4428. package/build/highlight.js/test/markup/fsharp/types.txt +143 -0
  4429. package/build/highlight.js/test/markup/gams/default.expect.txt +31 -0
  4430. package/build/highlight.js/test/markup/gams/default.txt +31 -0
  4431. package/build/highlight.js/test/markup/gauss/function_defs.expect.txt +7 -0
  4432. package/build/highlight.js/test/markup/gauss/function_defs.txt +7 -0
  4433. package/build/highlight.js/test/markup/gauss/function_refs.expect.txt +5 -0
  4434. package/build/highlight.js/test/markup/gauss/function_refs.txt +5 -0
  4435. package/build/highlight.js/test/markup/gauss/keywords.expect.txt +7 -0
  4436. package/build/highlight.js/test/markup/gauss/keywords.txt +7 -0
  4437. package/build/highlight.js/test/markup/gcode/default.expect.txt +31 -0
  4438. package/build/highlight.js/test/markup/gcode/default.txt +31 -0
  4439. package/build/highlight.js/test/markup/gcode/extended.expect.txt +86 -0
  4440. package/build/highlight.js/test/markup/gcode/extended.txt +86 -0
  4441. package/build/highlight.js/test/markup/gherkin/default.expect.txt +25 -0
  4442. package/build/highlight.js/test/markup/gherkin/default.txt +25 -0
  4443. package/build/highlight.js/test/markup/glsl/default.expect.txt +37 -0
  4444. package/build/highlight.js/test/markup/glsl/default.txt +37 -0
  4445. package/build/highlight.js/test/markup/gml/default.expect.txt +22 -0
  4446. package/build/highlight.js/test/markup/gml/default.txt +22 -0
  4447. package/build/highlight.js/test/markup/go/functions.expect.txt +9 -0
  4448. package/build/highlight.js/test/markup/go/functions.txt +9 -0
  4449. package/build/highlight.js/test/markup/go/numbers.expect.txt +64 -0
  4450. package/build/highlight.js/test/markup/go/numbers.txt +64 -0
  4451. package/build/highlight.js/test/markup/go/strings.expect.txt +7 -0
  4452. package/build/highlight.js/test/markup/go/strings.txt +7 -0
  4453. package/build/highlight.js/test/markup/golo/default.expect.txt +15 -0
  4454. package/build/highlight.js/test/markup/golo/default.txt +15 -0
  4455. package/build/highlight.js/test/markup/gradle/default.expect.txt +62 -0
  4456. package/build/highlight.js/test/markup/gradle/default.txt +62 -0
  4457. package/build/highlight.js/test/markup/graphql/default.expect.txt +51 -0
  4458. package/build/highlight.js/test/markup/graphql/default.txt +51 -0
  4459. package/build/highlight.js/test/markup/groovy/default.expect.txt +58 -0
  4460. package/build/highlight.js/test/markup/groovy/default.txt +58 -0
  4461. package/build/highlight.js/test/markup/groovy/oneoffs.expect.txt +3 -0
  4462. package/build/highlight.js/test/markup/groovy/oneoffs.txt +3 -0
  4463. package/build/highlight.js/test/markup/haml/default.expect.txt +14 -0
  4464. package/build/highlight.js/test/markup/haml/default.txt +14 -0
  4465. package/build/highlight.js/test/markup/handlebars/block-expression-variants-as-path-segment.expect.txt +9 -0
  4466. package/build/highlight.js/test/markup/handlebars/block-expression-variants-as-path-segment.txt +8 -0
  4467. package/build/highlight.js/test/markup/handlebars/block-expression-variants-in-helper-name.expect.txt +14 -0
  4468. package/build/highlight.js/test/markup/handlebars/block-expression-variants-in-helper-name.txt +13 -0
  4469. package/build/highlight.js/test/markup/handlebars/block-expression-variants-in-param.expect.txt +8 -0
  4470. package/build/highlight.js/test/markup/handlebars/block-expression-variants-in-param.txt +7 -0
  4471. package/build/highlight.js/test/markup/handlebars/block-parameters-as.expect.txt +4 -0
  4472. package/build/highlight.js/test/markup/handlebars/block-parameters-as.txt +3 -0
  4473. package/build/highlight.js/test/markup/handlebars/block-with-param.expect.txt +2 -0
  4474. package/build/highlight.js/test/markup/handlebars/block-with-param.txt +1 -0
  4475. package/build/highlight.js/test/markup/handlebars/block.expect.txt +2 -0
  4476. package/build/highlight.js/test/markup/handlebars/block.txt +1 -0
  4477. package/build/highlight.js/test/markup/handlebars/built-ins.expect.txt +12 -0
  4478. package/build/highlight.js/test/markup/handlebars/built-ins.txt +11 -0
  4479. package/build/highlight.js/test/markup/handlebars/combinations-with-text.expect.txt +6 -0
  4480. package/build/highlight.js/test/markup/handlebars/combinations-with-text.txt +5 -0
  4481. package/build/highlight.js/test/markup/handlebars/comments.expect.txt +4 -0
  4482. package/build/highlight.js/test/markup/handlebars/comments.txt +3 -0
  4483. package/build/highlight.js/test/markup/handlebars/else-variants.expect.txt +11 -0
  4484. package/build/highlight.js/test/markup/handlebars/else-variants.txt +10 -0
  4485. package/build/highlight.js/test/markup/handlebars/escaped-mustaches.expect.txt +22 -0
  4486. package/build/highlight.js/test/markup/handlebars/escaped-mustaches.txt +21 -0
  4487. package/build/highlight.js/test/markup/handlebars/expression-variants.expect.txt +27 -0
  4488. package/build/highlight.js/test/markup/handlebars/expression-variants.txt +26 -0
  4489. package/build/highlight.js/test/markup/handlebars/hashes.expect.txt +12 -0
  4490. package/build/highlight.js/test/markup/handlebars/hashes.txt +11 -0
  4491. package/build/highlight.js/test/markup/handlebars/if-else.expect.txt +7 -0
  4492. package/build/highlight.js/test/markup/handlebars/if-else.txt +7 -0
  4493. package/build/highlight.js/test/markup/handlebars/literals-in-different-places.expect.txt +14 -0
  4494. package/build/highlight.js/test/markup/handlebars/literals-in-different-places.txt +13 -0
  4495. package/build/highlight.js/test/markup/handlebars/literals.expect.txt +14 -0
  4496. package/build/highlight.js/test/markup/handlebars/literals.txt +13 -0
  4497. package/build/highlight.js/test/markup/handlebars/partial-call.expect.txt +2 -0
  4498. package/build/highlight.js/test/markup/handlebars/partial-call.txt +1 -0
  4499. package/build/highlight.js/test/markup/handlebars/path-expressions.expect.txt +10 -0
  4500. package/build/highlight.js/test/markup/handlebars/path-expressions.txt +9 -0
  4501. package/build/highlight.js/test/markup/handlebars/raw-block.expect.txt +2 -0
  4502. package/build/highlight.js/test/markup/handlebars/raw-block.txt +1 -0
  4503. package/build/highlight.js/test/markup/handlebars/simple-expression.expect.txt +2 -0
  4504. package/build/highlight.js/test/markup/handlebars/simple-expression.txt +1 -0
  4505. package/build/highlight.js/test/markup/handlebars/sub-expressions.expect.txt +14 -0
  4506. package/build/highlight.js/test/markup/handlebars/sub-expressions.txt +13 -0
  4507. package/build/highlight.js/test/markup/handlebars/triple-mustache.expect.txt +2 -0
  4508. package/build/highlight.js/test/markup/handlebars/triple-mustache.txt +1 -0
  4509. package/build/highlight.js/test/markup/haskell/char.expect.txt +19 -0
  4510. package/build/highlight.js/test/markup/haskell/char.txt +19 -0
  4511. package/build/highlight.js/test/markup/haskell/infix.expect.txt +3 -0
  4512. package/build/highlight.js/test/markup/haskell/infix.txt +3 -0
  4513. package/build/highlight.js/test/markup/haskell/inline-comments.expect.txt +97 -0
  4514. package/build/highlight.js/test/markup/haskell/inline-comments.txt +97 -0
  4515. package/build/highlight.js/test/markup/haskell/nested-comments.expect.txt +1 -0
  4516. package/build/highlight.js/test/markup/haskell/nested-comments.txt +1 -0
  4517. package/build/highlight.js/test/markup/haskell/numbers.expect.txt +64 -0
  4518. package/build/highlight.js/test/markup/haskell/numbers.txt +64 -0
  4519. package/build/highlight.js/test/markup/haxe/default.expect.txt +184 -0
  4520. package/build/highlight.js/test/markup/haxe/default.txt +184 -0
  4521. package/build/highlight.js/test/markup/hsp/default.expect.txt +23 -0
  4522. package/build/highlight.js/test/markup/hsp/default.txt +23 -0
  4523. package/build/highlight.js/test/markup/http/default.expect.txt +7 -0
  4524. package/build/highlight.js/test/markup/http/default.txt +6 -0
  4525. package/build/highlight.js/test/markup/http/http3.expect.txt +13 -0
  4526. package/build/highlight.js/test/markup/http/http3.txt +13 -0
  4527. package/build/highlight.js/test/markup/http/just_headers.expect.txt +3 -0
  4528. package/build/highlight.js/test/markup/http/just_headers.txt +3 -0
  4529. package/build/highlight.js/test/markup/http/response.expect.txt +11 -0
  4530. package/build/highlight.js/test/markup/http/response.txt +11 -0
  4531. package/build/highlight.js/test/markup/hy/default.expect.txt +37 -0
  4532. package/build/highlight.js/test/markup/hy/default.txt +37 -0
  4533. package/build/highlight.js/test/markup/index.js +69 -0
  4534. package/build/highlight.js/test/markup/inform7/default.expect.txt +24 -0
  4535. package/build/highlight.js/test/markup/inform7/default.txt +24 -0
  4536. package/build/highlight.js/test/markup/ini/array.expect.txt +10 -0
  4537. package/build/highlight.js/test/markup/ini/array.txt +10 -0
  4538. package/build/highlight.js/test/markup/ini/comments.expect.txt +5 -0
  4539. package/build/highlight.js/test/markup/ini/comments.txt +5 -0
  4540. package/build/highlight.js/test/markup/ini/keys.expect.txt +32 -0
  4541. package/build/highlight.js/test/markup/ini/keys.txt +32 -0
  4542. package/build/highlight.js/test/markup/ini/tables.expect.txt +4 -0
  4543. package/build/highlight.js/test/markup/ini/tables.txt +4 -0
  4544. package/build/highlight.js/test/markup/ini/types.expect.txt +20 -0
  4545. package/build/highlight.js/test/markup/ini/types.txt +20 -0
  4546. package/build/highlight.js/test/markup/ini/variable.expect.txt +2 -0
  4547. package/build/highlight.js/test/markup/ini/variable.txt +2 -0
  4548. package/build/highlight.js/test/markup/irpf90/default.expect.txt +37 -0
  4549. package/build/highlight.js/test/markup/irpf90/default.txt +37 -0
  4550. package/build/highlight.js/test/markup/isbl/default.expect.txt +27 -0
  4551. package/build/highlight.js/test/markup/isbl/default.txt +27 -0
  4552. package/build/highlight.js/test/markup/java/annotations.expect.txt +12 -0
  4553. package/build/highlight.js/test/markup/java/annotations.txt +12 -0
  4554. package/build/highlight.js/test/markup/java/bugs.expect.txt +6 -0
  4555. package/build/highlight.js/test/markup/java/bugs.txt +6 -0
  4556. package/build/highlight.js/test/markup/java/functions.expect.txt +5 -0
  4557. package/build/highlight.js/test/markup/java/functions.txt +5 -0
  4558. package/build/highlight.js/test/markup/java/gh1031.expect.txt +7 -0
  4559. package/build/highlight.js/test/markup/java/gh1031.txt +7 -0
  4560. package/build/highlight.js/test/markup/java/numbers.expect.txt +105 -0
  4561. package/build/highlight.js/test/markup/java/numbers.txt +105 -0
  4562. package/build/highlight.js/test/markup/java/switch.expect.txt +13 -0
  4563. package/build/highlight.js/test/markup/java/switch.txt +13 -0
  4564. package/build/highlight.js/test/markup/java/textblock.expect.txt +5 -0
  4565. package/build/highlight.js/test/markup/java/textblock.txt +5 -0
  4566. package/build/highlight.js/test/markup/java/titles.expect.txt +18 -0
  4567. package/build/highlight.js/test/markup/java/titles.txt +18 -0
  4568. package/build/highlight.js/test/markup/javascript/arrow-function.expect.txt +14 -0
  4569. package/build/highlight.js/test/markup/javascript/arrow-function.txt +14 -0
  4570. package/build/highlight.js/test/markup/javascript/block-comments.expect.txt +9 -0
  4571. package/build/highlight.js/test/markup/javascript/block-comments.txt +9 -0
  4572. package/build/highlight.js/test/markup/javascript/built-in.expect.txt +4 -0
  4573. package/build/highlight.js/test/markup/javascript/built-in.txt +4 -0
  4574. package/build/highlight.js/test/markup/javascript/class.expect.txt +66 -0
  4575. package/build/highlight.js/test/markup/javascript/class.txt +66 -0
  4576. package/build/highlight.js/test/markup/javascript/comments.expect.txt +6 -0
  4577. package/build/highlight.js/test/markup/javascript/comments.txt +6 -0
  4578. package/build/highlight.js/test/markup/javascript/conventions.expect.txt +7 -0
  4579. package/build/highlight.js/test/markup/javascript/conventions.txt +7 -0
  4580. package/build/highlight.js/test/markup/javascript/default-parameters.expect.txt +1 -0
  4581. package/build/highlight.js/test/markup/javascript/default-parameters.txt +1 -0
  4582. package/build/highlight.js/test/markup/javascript/inline-languages.expect.txt +44 -0
  4583. package/build/highlight.js/test/markup/javascript/inline-languages.txt +44 -0
  4584. package/build/highlight.js/test/markup/javascript/jsdoc.expect.txt +17 -0
  4585. package/build/highlight.js/test/markup/javascript/jsdoc.txt +17 -0
  4586. package/build/highlight.js/test/markup/javascript/jsx-fragment.expect.txt +10 -0
  4587. package/build/highlight.js/test/markup/javascript/jsx-fragment.txt +10 -0
  4588. package/build/highlight.js/test/markup/javascript/jsx.expect.txt +45 -0
  4589. package/build/highlight.js/test/markup/javascript/jsx.txt +45 -0
  4590. package/build/highlight.js/test/markup/javascript/keyword-as-part-of-method-name.expect.txt +2 -0
  4591. package/build/highlight.js/test/markup/javascript/keyword-as-part-of-method-name.txt +2 -0
  4592. package/build/highlight.js/test/markup/javascript/keyword_as_identifier.expect.txt +9 -0
  4593. package/build/highlight.js/test/markup/javascript/keyword_as_identifier.txt +9 -0
  4594. package/build/highlight.js/test/markup/javascript/keywords.expect.txt +17 -0
  4595. package/build/highlight.js/test/markup/javascript/keywords.txt +17 -0
  4596. package/build/highlight.js/test/markup/javascript/method-call.expect.txt +7 -0
  4597. package/build/highlight.js/test/markup/javascript/method-call.txt +7 -0
  4598. package/build/highlight.js/test/markup/javascript/modules.expect.txt +10 -0
  4599. package/build/highlight.js/test/markup/javascript/modules.txt +10 -0
  4600. package/build/highlight.js/test/markup/javascript/numbers.expect.txt +98 -0
  4601. package/build/highlight.js/test/markup/javascript/numbers.txt +98 -0
  4602. package/build/highlight.js/test/markup/javascript/object-attr.expect.txt +15 -0
  4603. package/build/highlight.js/test/markup/javascript/object-attr.txt +15 -0
  4604. package/build/highlight.js/test/markup/javascript/regex.expect.txt +5 -0
  4605. package/build/highlight.js/test/markup/javascript/regex.txt +5 -0
  4606. package/build/highlight.js/test/markup/javascript/seperated-parameters.expect.txt +5 -0
  4607. package/build/highlight.js/test/markup/javascript/seperated-parameters.txt +5 -0
  4608. package/build/highlight.js/test/markup/javascript/shebang.expect.txt +3 -0
  4609. package/build/highlight.js/test/markup/javascript/shebang.txt +3 -0
  4610. package/build/highlight.js/test/markup/javascript/template-strings.expect.txt +1 -0
  4611. package/build/highlight.js/test/markup/javascript/template-strings.txt +1 -0
  4612. package/build/highlight.js/test/markup/jboss-cli/default.expect.txt +24 -0
  4613. package/build/highlight.js/test/markup/jboss-cli/default.txt +24 -0
  4614. package/build/highlight.js/test/markup/json/comments.expect.txt +18 -0
  4615. package/build/highlight.js/test/markup/json/comments.txt +18 -0
  4616. package/build/highlight.js/test/markup/json5/default.expect.txt +16 -0
  4617. package/build/highlight.js/test/markup/json5/default.txt +16 -0
  4618. package/build/highlight.js/test/markup/julia/default.expect.txt +99 -0
  4619. package/build/highlight.js/test/markup/julia/default.txt +99 -0
  4620. package/build/highlight.js/test/markup/julia-repl/default.expect.txt +36 -0
  4621. package/build/highlight.js/test/markup/julia-repl/default.txt +36 -0
  4622. package/build/highlight.js/test/markup/kotlin/class.expect.txt +16 -0
  4623. package/build/highlight.js/test/markup/kotlin/class.txt +16 -0
  4624. package/build/highlight.js/test/markup/kotlin/function.expect.txt +16 -0
  4625. package/build/highlight.js/test/markup/kotlin/function.txt +16 -0
  4626. package/build/highlight.js/test/markup/kotlin/nested_comment.expect.txt +9 -0
  4627. package/build/highlight.js/test/markup/kotlin/nested_comment.txt +9 -0
  4628. package/build/highlight.js/test/markup/kotlin/string.expect.txt +8 -0
  4629. package/build/highlight.js/test/markup/kotlin/string.txt +8 -0
  4630. package/build/highlight.js/test/markup/lasso/delimiters.expect.txt +7 -0
  4631. package/build/highlight.js/test/markup/lasso/delimiters.txt +7 -0
  4632. package/build/highlight.js/test/markup/latex/chars.expect.txt +18 -0
  4633. package/build/highlight.js/test/markup/latex/chars.txt +18 -0
  4634. package/build/highlight.js/test/markup/latex/comments.expect.txt +11 -0
  4635. package/build/highlight.js/test/markup/latex/comments.txt +11 -0
  4636. package/build/highlight.js/test/markup/latex/control_sequences.expect.txt +36 -0
  4637. package/build/highlight.js/test/markup/latex/control_sequences.txt +36 -0
  4638. package/build/highlight.js/test/markup/latex/parameters.expect.txt +5 -0
  4639. package/build/highlight.js/test/markup/latex/parameters.txt +5 -0
  4640. package/build/highlight.js/test/markup/latex/verbatim.expect.txt +48 -0
  4641. package/build/highlight.js/test/markup/latex/verbatim.txt +48 -0
  4642. package/build/highlight.js/test/markup/ldif/ldapmodify.expect.txt +7 -0
  4643. package/build/highlight.js/test/markup/ldif/ldapmodify.txt +7 -0
  4644. package/build/highlight.js/test/markup/ldif/schema.expect.txt +15 -0
  4645. package/build/highlight.js/test/markup/ldif/schema.txt +15 -0
  4646. package/build/highlight.js/test/markup/leaf/default.expect.txt +14 -0
  4647. package/build/highlight.js/test/markup/leaf/default.txt +14 -0
  4648. package/build/highlight.js/test/markup/less/css_consistency.expect.txt +77 -0
  4649. package/build/highlight.js/test/markup/less/css_consistency.txt +77 -0
  4650. package/build/highlight.js/test/markup/less/selectors.expect.txt +8 -0
  4651. package/build/highlight.js/test/markup/less/selectors.txt +8 -0
  4652. package/build/highlight.js/test/markup/lisp/mec.expect.txt +4 -0
  4653. package/build/highlight.js/test/markup/lisp/mec.txt +4 -0
  4654. package/build/highlight.js/test/markup/livecodeserver/default.expect.txt +30 -0
  4655. package/build/highlight.js/test/markup/livecodeserver/default.txt +30 -0
  4656. package/build/highlight.js/test/markup/livescript/default.expect.txt +66 -0
  4657. package/build/highlight.js/test/markup/livescript/default.txt +66 -0
  4658. package/build/highlight.js/test/markup/llvm/default.expect.txt +61 -0
  4659. package/build/highlight.js/test/markup/llvm/default.txt +61 -0
  4660. package/build/highlight.js/test/markup/llvm/numbers.expect.txt +11 -0
  4661. package/build/highlight.js/test/markup/llvm/numbers.txt +11 -0
  4662. package/build/highlight.js/test/markup/llvm/simple.expect.txt +19 -0
  4663. package/build/highlight.js/test/markup/llvm/simple.txt +19 -0
  4664. package/build/highlight.js/test/markup/llvm/string.expect.txt +8 -0
  4665. package/build/highlight.js/test/markup/llvm/string.txt +8 -0
  4666. package/build/highlight.js/test/markup/lsl/default.expect.txt +12 -0
  4667. package/build/highlight.js/test/markup/lsl/default.txt +12 -0
  4668. package/build/highlight.js/test/markup/lua/default.expect.txt +32 -0
  4669. package/build/highlight.js/test/markup/lua/default.txt +32 -0
  4670. package/build/highlight.js/test/markup/makefile/default.expect.txt +13 -0
  4671. package/build/highlight.js/test/markup/makefile/default.txt +13 -0
  4672. package/build/highlight.js/test/markup/markdown/bold_italics.expect.txt +33 -0
  4673. package/build/highlight.js/test/markup/markdown/bold_italics.txt +33 -0
  4674. package/build/highlight.js/test/markup/markdown/code.expect.txt +38 -0
  4675. package/build/highlight.js/test/markup/markdown/code.txt +38 -0
  4676. package/build/highlight.js/test/markup/markdown/entity.expect.txt +3 -0
  4677. package/build/highlight.js/test/markup/markdown/entity.txt +3 -0
  4678. package/build/highlight.js/test/markup/markdown/links.expect.txt +4 -0
  4679. package/build/highlight.js/test/markup/markdown/links.txt +4 -0
  4680. package/build/highlight.js/test/markup/markdown/list.expect.txt +5 -0
  4681. package/build/highlight.js/test/markup/markdown/list.txt +5 -0
  4682. package/build/highlight.js/test/markup/markdown/sections.expect.txt +12 -0
  4683. package/build/highlight.js/test/markup/markdown/sections.txt +12 -0
  4684. package/build/highlight.js/test/markup/mathematica/default.expect.txt +79 -0
  4685. package/build/highlight.js/test/markup/mathematica/default.txt +79 -0
  4686. package/build/highlight.js/test/markup/matlab/block_comment.expect.txt +27 -0
  4687. package/build/highlight.js/test/markup/matlab/block_comment.txt +27 -0
  4688. package/build/highlight.js/test/markup/matlab/transpose.expect.txt +40 -0
  4689. package/build/highlight.js/test/markup/matlab/transpose.txt +40 -0
  4690. package/build/highlight.js/test/markup/maxima/example.expect.txt +42 -0
  4691. package/build/highlight.js/test/markup/maxima/example.txt +42 -0
  4692. package/build/highlight.js/test/markup/maxima/numbers.expect.txt +24 -0
  4693. package/build/highlight.js/test/markup/maxima/numbers.txt +24 -0
  4694. package/build/highlight.js/test/markup/maxima/symbols.expect.txt +18 -0
  4695. package/build/highlight.js/test/markup/maxima/symbols.txt +18 -0
  4696. package/build/highlight.js/test/markup/mel/default.expect.txt +25 -0
  4697. package/build/highlight.js/test/markup/mel/default.txt +25 -0
  4698. package/build/highlight.js/test/markup/mercury/default.expect.txt +24 -0
  4699. package/build/highlight.js/test/markup/mercury/default.txt +24 -0
  4700. package/build/highlight.js/test/markup/mipsasm/default.expect.txt +22 -0
  4701. package/build/highlight.js/test/markup/mipsasm/default.txt +22 -0
  4702. package/build/highlight.js/test/markup/mizar/default.expect.txt +86 -0
  4703. package/build/highlight.js/test/markup/mizar/default.txt +86 -0
  4704. package/build/highlight.js/test/markup/mojolicious/default.expect.txt +21 -0
  4705. package/build/highlight.js/test/markup/mojolicious/default.txt +20 -0
  4706. package/build/highlight.js/test/markup/monkey/default.expect.txt +37 -0
  4707. package/build/highlight.js/test/markup/monkey/default.txt +37 -0
  4708. package/build/highlight.js/test/markup/moonscript/default.expect.txt +37 -0
  4709. package/build/highlight.js/test/markup/moonscript/default.txt +37 -0
  4710. package/build/highlight.js/test/markup/n1ql/default.expect.txt +19 -0
  4711. package/build/highlight.js/test/markup/n1ql/default.txt +19 -0
  4712. package/build/highlight.js/test/markup/nestedtext/default.expect.txt +27 -0
  4713. package/build/highlight.js/test/markup/nestedtext/default.txt +27 -0
  4714. package/build/highlight.js/test/markup/nestedtext/lists_of.expect.txt +10 -0
  4715. package/build/highlight.js/test/markup/nestedtext/lists_of.txt +10 -0
  4716. package/build/highlight.js/test/markup/nginx/default.expect.txt +47 -0
  4717. package/build/highlight.js/test/markup/nginx/default.txt +47 -0
  4718. package/build/highlight.js/test/markup/nim/default.expect.txt +21 -0
  4719. package/build/highlight.js/test/markup/nim/default.txt +21 -0
  4720. package/build/highlight.js/test/markup/nix/default.expect.txt +105 -0
  4721. package/build/highlight.js/test/markup/nix/default.txt +105 -0
  4722. package/build/highlight.js/test/markup/node-repl/sample.expect.txt +10 -0
  4723. package/build/highlight.js/test/markup/node-repl/sample.txt +10 -0
  4724. package/build/highlight.js/test/markup/nsis/default.expect.txt +39 -0
  4725. package/build/highlight.js/test/markup/nsis/default.txt +39 -0
  4726. package/build/highlight.js/test/markup/nsis/variables.expect.txt +7 -0
  4727. package/build/highlight.js/test/markup/nsis/variables.txt +7 -0
  4728. package/build/highlight.js/test/markup/objectivec/preprocessor.expect.txt +19 -0
  4729. package/build/highlight.js/test/markup/objectivec/preprocessor.txt +19 -0
  4730. package/build/highlight.js/test/markup/objectivec/string-literals.expect.txt +7 -0
  4731. package/build/highlight.js/test/markup/objectivec/string-literals.txt +7 -0
  4732. package/build/highlight.js/test/markup/ocaml/literals.expect.txt +29 -0
  4733. package/build/highlight.js/test/markup/ocaml/literals.txt +29 -0
  4734. package/build/highlight.js/test/markup/ocaml/types.expect.txt +17 -0
  4735. package/build/highlight.js/test/markup/ocaml/types.txt +17 -0
  4736. package/build/highlight.js/test/markup/openscad/default.expect.txt +15 -0
  4737. package/build/highlight.js/test/markup/openscad/default.txt +15 -0
  4738. package/build/highlight.js/test/markup/oxygene/default.expect.txt +56 -0
  4739. package/build/highlight.js/test/markup/oxygene/default.txt +56 -0
  4740. package/build/highlight.js/test/markup/parser3/default.expect.txt +35 -0
  4741. package/build/highlight.js/test/markup/parser3/default.txt +34 -0
  4742. package/build/highlight.js/test/markup/perl/class.expect.txt +10 -0
  4743. package/build/highlight.js/test/markup/perl/class.txt +10 -0
  4744. package/build/highlight.js/test/markup/perl/default.expect.txt +46 -0
  4745. package/build/highlight.js/test/markup/perl/default.txt +45 -0
  4746. package/build/highlight.js/test/markup/perl/number.expect.txt +21 -0
  4747. package/build/highlight.js/test/markup/perl/number.txt +21 -0
  4748. package/build/highlight.js/test/markup/perl/regex.expect.txt +37 -0
  4749. package/build/highlight.js/test/markup/perl/regex.txt +37 -0
  4750. package/build/highlight.js/test/markup/pf/default.expect.txt +43 -0
  4751. package/build/highlight.js/test/markup/pf/default.txt +43 -0
  4752. package/build/highlight.js/test/markup/pgsql/clauses.expect.txt +67 -0
  4753. package/build/highlight.js/test/markup/pgsql/clauses.txt +67 -0
  4754. package/build/highlight.js/test/markup/pgsql/clauses2.expect.txt +160 -0
  4755. package/build/highlight.js/test/markup/pgsql/clauses2.txt +160 -0
  4756. package/build/highlight.js/test/markup/pgsql/constraints.expect.txt +21 -0
  4757. package/build/highlight.js/test/markup/pgsql/constraints.txt +21 -0
  4758. package/build/highlight.js/test/markup/pgsql/dollar_strings.expect.txt +9 -0
  4759. package/build/highlight.js/test/markup/pgsql/dollar_strings.txt +9 -0
  4760. package/build/highlight.js/test/markup/pgsql/options.expect.txt +44 -0
  4761. package/build/highlight.js/test/markup/pgsql/options.txt +44 -0
  4762. package/build/highlight.js/test/markup/pgsql/plpgsql.expect.txt +61 -0
  4763. package/build/highlight.js/test/markup/pgsql/plpgsql.txt +61 -0
  4764. package/build/highlight.js/test/markup/pgsql/sql-commands.expect.txt +99 -0
  4765. package/build/highlight.js/test/markup/pgsql/sql-commands.txt +99 -0
  4766. package/build/highlight.js/test/markup/pgsql/window-functions.expect.txt +35 -0
  4767. package/build/highlight.js/test/markup/pgsql/window-functions.txt +35 -0
  4768. package/build/highlight.js/test/markup/pgsql/xml.expect.txt +47 -0
  4769. package/build/highlight.js/test/markup/pgsql/xml.txt +47 -0
  4770. package/build/highlight.js/test/markup/php/attributes.expect.txt +61 -0
  4771. package/build/highlight.js/test/markup/php/attributes.txt +61 -0
  4772. package/build/highlight.js/test/markup/php/case.expect.txt +8 -0
  4773. package/build/highlight.js/test/markup/php/case.txt +8 -0
  4774. package/build/highlight.js/test/markup/php/comments.expect.txt +19 -0
  4775. package/build/highlight.js/test/markup/php/comments.txt +19 -0
  4776. package/build/highlight.js/test/markup/php/functions.expect.txt +63 -0
  4777. package/build/highlight.js/test/markup/php/functions.txt +63 -0
  4778. package/build/highlight.js/test/markup/php/namespace.expect.txt +9 -0
  4779. package/build/highlight.js/test/markup/php/namespace.txt +9 -0
  4780. package/build/highlight.js/test/markup/php/numbers.expect.txt +12 -0
  4781. package/build/highlight.js/test/markup/php/numbers.txt +12 -0
  4782. package/build/highlight.js/test/markup/php/php80.expect.txt +13 -0
  4783. package/build/highlight.js/test/markup/php/php80.txt +13 -0
  4784. package/build/highlight.js/test/markup/php/strings.expect.txt +33 -0
  4785. package/build/highlight.js/test/markup/php/strings.txt +33 -0
  4786. package/build/highlight.js/test/markup/php/titles.expect.txt +26 -0
  4787. package/build/highlight.js/test/markup/php/titles.txt +26 -0
  4788. package/build/highlight.js/test/markup/php-template/default.expect.txt +9 -0
  4789. package/build/highlight.js/test/markup/php-template/default.txt +8 -0
  4790. package/build/highlight.js/test/markup/plaintext/default.expect.txt +6 -0
  4791. package/build/highlight.js/test/markup/plaintext/default.txt +6 -0
  4792. package/build/highlight.js/test/markup/pony/control-flow.expect.txt +21 -0
  4793. package/build/highlight.js/test/markup/pony/control-flow.txt +21 -0
  4794. package/build/highlight.js/test/markup/pony/creator.expect.txt +3 -0
  4795. package/build/highlight.js/test/markup/pony/creator.txt +3 -0
  4796. package/build/highlight.js/test/markup/pony/iterface-trait.expect.txt +9 -0
  4797. package/build/highlight.js/test/markup/pony/iterface-trait.txt +9 -0
  4798. package/build/highlight.js/test/markup/pony/lambda.expect.txt +1 -0
  4799. package/build/highlight.js/test/markup/pony/lambda.txt +1 -0
  4800. package/build/highlight.js/test/markup/pony/match.expect.txt +8 -0
  4801. package/build/highlight.js/test/markup/pony/match.txt +8 -0
  4802. package/build/highlight.js/test/markup/pony/method.expect.txt +8 -0
  4803. package/build/highlight.js/test/markup/pony/method.txt +8 -0
  4804. package/build/highlight.js/test/markup/pony/number-literals.expect.txt +15 -0
  4805. package/build/highlight.js/test/markup/pony/number-literals.txt +15 -0
  4806. package/build/highlight.js/test/markup/pony/objects.expect.txt +11 -0
  4807. package/build/highlight.js/test/markup/pony/objects.txt +11 -0
  4808. package/build/highlight.js/test/markup/pony/prime.expect.txt +2 -0
  4809. package/build/highlight.js/test/markup/pony/prime.txt +2 -0
  4810. package/build/highlight.js/test/markup/pony/triple-quote.expect.txt +5 -0
  4811. package/build/highlight.js/test/markup/pony/triple-quote.txt +5 -0
  4812. package/build/highlight.js/test/markup/powershell/apos-herestring.expect.txt +11 -0
  4813. package/build/highlight.js/test/markup/powershell/apos-herestring.txt +11 -0
  4814. package/build/highlight.js/test/markup/powershell/classes.expect.txt +57 -0
  4815. package/build/highlight.js/test/markup/powershell/classes.txt +57 -0
  4816. package/build/highlight.js/test/markup/powershell/flags.expect.txt +4 -0
  4817. package/build/highlight.js/test/markup/powershell/flags.txt +4 -0
  4818. package/build/highlight.js/test/markup/powershell/misc.expect.txt +35 -0
  4819. package/build/highlight.js/test/markup/powershell/misc.txt +35 -0
  4820. package/build/highlight.js/test/markup/powershell/quote-herestring.expect.txt +11 -0
  4821. package/build/highlight.js/test/markup/powershell/quote-herestring.txt +11 -0
  4822. package/build/highlight.js/test/markup/processing/default.expect.txt +17 -0
  4823. package/build/highlight.js/test/markup/processing/default.txt +17 -0
  4824. package/build/highlight.js/test/markup/profile/default.expect.txt +8 -0
  4825. package/build/highlight.js/test/markup/profile/default.txt +8 -0
  4826. package/build/highlight.js/test/markup/prolog/default.expect.txt +11 -0
  4827. package/build/highlight.js/test/markup/prolog/default.txt +11 -0
  4828. package/build/highlight.js/test/markup/properties/syntax.expect.txt +20 -0
  4829. package/build/highlight.js/test/markup/properties/syntax.txt +20 -0
  4830. package/build/highlight.js/test/markup/protobuf/message-message.expect.txt +13 -0
  4831. package/build/highlight.js/test/markup/protobuf/message-message.txt +13 -0
  4832. package/build/highlight.js/test/markup/protobuf/rpc.expect.txt +4 -0
  4833. package/build/highlight.js/test/markup/protobuf/rpc.txt +4 -0
  4834. package/build/highlight.js/test/markup/puppet/default.expect.txt +33 -0
  4835. package/build/highlight.js/test/markup/puppet/default.txt +33 -0
  4836. package/build/highlight.js/test/markup/purebasic/default.expect.txt +29 -0
  4837. package/build/highlight.js/test/markup/purebasic/default.txt +29 -0
  4838. package/build/highlight.js/test/markup/python/class_self.expect.txt +6 -0
  4839. package/build/highlight.js/test/markup/python/class_self.txt +6 -0
  4840. package/build/highlight.js/test/markup/python/decorators.expect.txt +31 -0
  4841. package/build/highlight.js/test/markup/python/decorators.txt +31 -0
  4842. package/build/highlight.js/test/markup/python/diacritic_identifiers.expect.txt +23 -0
  4843. package/build/highlight.js/test/markup/python/diacritic_identifiers.txt +23 -0
  4844. package/build/highlight.js/test/markup/python/escaped-quotes.expect.txt +51 -0
  4845. package/build/highlight.js/test/markup/python/escaped-quotes.txt +51 -0
  4846. package/build/highlight.js/test/markup/python/f-strings.expect.txt +36 -0
  4847. package/build/highlight.js/test/markup/python/f-strings.txt +36 -0
  4848. package/build/highlight.js/test/markup/python/false_positives.expect.txt +5 -0
  4849. package/build/highlight.js/test/markup/python/false_positives.txt +5 -0
  4850. package/build/highlight.js/test/markup/python/function-header-comments.expect.txt +10 -0
  4851. package/build/highlight.js/test/markup/python/function-header-comments.txt +10 -0
  4852. package/build/highlight.js/test/markup/python/function-header.expect.txt +2 -0
  4853. package/build/highlight.js/test/markup/python/function-header.txt +2 -0
  4854. package/build/highlight.js/test/markup/python/identifiers.expect.txt +15 -0
  4855. package/build/highlight.js/test/markup/python/identifiers.txt +15 -0
  4856. package/build/highlight.js/test/markup/python/keywords.expect.txt +16 -0
  4857. package/build/highlight.js/test/markup/python/keywords.txt +16 -0
  4858. package/build/highlight.js/test/markup/python/matrix-multiplication.expect.txt +7 -0
  4859. package/build/highlight.js/test/markup/python/matrix-multiplication.txt +7 -0
  4860. package/build/highlight.js/test/markup/python/numbers.expect.txt +59 -0
  4861. package/build/highlight.js/test/markup/python/numbers.txt +59 -0
  4862. package/build/highlight.js/test/markup/python-repl/sample.expect.txt +17 -0
  4863. package/build/highlight.js/test/markup/python-repl/sample.txt +17 -0
  4864. package/build/highlight.js/test/markup/q/default.expect.txt +9 -0
  4865. package/build/highlight.js/test/markup/q/default.txt +9 -0
  4866. package/build/highlight.js/test/markup/qml/default.expect.txt +49 -0
  4867. package/build/highlight.js/test/markup/qml/default.txt +49 -0
  4868. package/build/highlight.js/test/markup/r/names.expect.txt +38 -0
  4869. package/build/highlight.js/test/markup/r/names.txt +38 -0
  4870. package/build/highlight.js/test/markup/r/numbers.expect.txt +21 -0
  4871. package/build/highlight.js/test/markup/r/numbers.txt +21 -0
  4872. package/build/highlight.js/test/markup/r/ops.expect.r +63 -0
  4873. package/build/highlight.js/test/markup/r/ops.r +54 -0
  4874. package/build/highlight.js/test/markup/r/roxygen.expect.txt +28 -0
  4875. package/build/highlight.js/test/markup/r/roxygen.txt +28 -0
  4876. package/build/highlight.js/test/markup/r/strings.expect.txt +33 -0
  4877. package/build/highlight.js/test/markup/r/strings.txt +33 -0
  4878. package/build/highlight.js/test/markup/reasonml/comments.expect.txt +10 -0
  4879. package/build/highlight.js/test/markup/reasonml/comments.txt +10 -0
  4880. package/build/highlight.js/test/markup/reasonml/functions.expect.txt +28 -0
  4881. package/build/highlight.js/test/markup/reasonml/functions.txt +28 -0
  4882. package/build/highlight.js/test/markup/reasonml/literals.expect.txt +41 -0
  4883. package/build/highlight.js/test/markup/reasonml/literals.txt +41 -0
  4884. package/build/highlight.js/test/markup/reasonml/modules.expect.txt +19 -0
  4885. package/build/highlight.js/test/markup/reasonml/modules.txt +19 -0
  4886. package/build/highlight.js/test/markup/reasonml/pattern-matching.expect.txt +20 -0
  4887. package/build/highlight.js/test/markup/reasonml/pattern-matching.txt +20 -0
  4888. package/build/highlight.js/test/markup/reasonml/types.expect.txt +22 -0
  4889. package/build/highlight.js/test/markup/reasonml/types.txt +22 -0
  4890. package/build/highlight.js/test/markup/rib/default.expect.txt +25 -0
  4891. package/build/highlight.js/test/markup/rib/default.txt +25 -0
  4892. package/build/highlight.js/test/markup/roboconf/default.expect.txt +54 -0
  4893. package/build/highlight.js/test/markup/roboconf/default.txt +54 -0
  4894. package/build/highlight.js/test/markup/routeros/default.expect.txt +17 -0
  4895. package/build/highlight.js/test/markup/routeros/default.txt +17 -0
  4896. package/build/highlight.js/test/markup/rsl/default.expect.txt +15 -0
  4897. package/build/highlight.js/test/markup/rsl/default.txt +15 -0
  4898. package/build/highlight.js/test/markup/ruby/blocks.expect.txt +7 -0
  4899. package/build/highlight.js/test/markup/ruby/blocks.txt +7 -0
  4900. package/build/highlight.js/test/markup/ruby/gemfile.expect.txt +3 -0
  4901. package/build/highlight.js/test/markup/ruby/gemfile.txt +3 -0
  4902. package/build/highlight.js/test/markup/ruby/heredoc.expect.txt +31 -0
  4903. package/build/highlight.js/test/markup/ruby/heredoc.txt +31 -0
  4904. package/build/highlight.js/test/markup/ruby/numbers.expect.txt +57 -0
  4905. package/build/highlight.js/test/markup/ruby/numbers.txt +57 -0
  4906. package/build/highlight.js/test/markup/ruby/prompt.expect.txt +36 -0
  4907. package/build/highlight.js/test/markup/ruby/prompt.txt +36 -0
  4908. package/build/highlight.js/test/markup/ruby/regexes.expect.txt +5 -0
  4909. package/build/highlight.js/test/markup/ruby/regexes.txt +5 -0
  4910. package/build/highlight.js/test/markup/ruby/strings.expect.txt +30 -0
  4911. package/build/highlight.js/test/markup/ruby/strings.txt +30 -0
  4912. package/build/highlight.js/test/markup/ruleslanguage/default.expect.txt +36 -0
  4913. package/build/highlight.js/test/markup/ruleslanguage/default.txt +36 -0
  4914. package/build/highlight.js/test/markup/rust/comments.expect.txt +3 -0
  4915. package/build/highlight.js/test/markup/rust/comments.txt +3 -0
  4916. package/build/highlight.js/test/markup/rust/invoked-keywords.expect.txt +9 -0
  4917. package/build/highlight.js/test/markup/rust/invoked-keywords.txt +9 -0
  4918. package/build/highlight.js/test/markup/rust/numbers.expect.txt +13 -0
  4919. package/build/highlight.js/test/markup/rust/numbers.txt +13 -0
  4920. package/build/highlight.js/test/markup/rust/sample1.expect.txt +30 -0
  4921. package/build/highlight.js/test/markup/rust/sample1.txt +30 -0
  4922. package/build/highlight.js/test/markup/rust/strings.expect.txt +22 -0
  4923. package/build/highlight.js/test/markup/rust/strings.txt +22 -0
  4924. package/build/highlight.js/test/markup/rust/traits.expect.txt +3 -0
  4925. package/build/highlight.js/test/markup/rust/traits.txt +3 -0
  4926. package/build/highlight.js/test/markup/rust/types.expect.txt +7 -0
  4927. package/build/highlight.js/test/markup/rust/types.txt +7 -0
  4928. package/build/highlight.js/test/markup/rust/variables.expect.txt +4 -0
  4929. package/build/highlight.js/test/markup/rust/variables.txt +4 -0
  4930. package/build/highlight.js/test/markup/sas/default.expect.txt +48 -0
  4931. package/build/highlight.js/test/markup/sas/default.txt +48 -0
  4932. package/build/highlight.js/test/markup/scala/case-classes.expect.txt +3 -0
  4933. package/build/highlight.js/test/markup/scala/case-classes.txt +3 -0
  4934. package/build/highlight.js/test/markup/scala/end.expect.txt +41 -0
  4935. package/build/highlight.js/test/markup/scala/end.txt +41 -0
  4936. package/build/highlight.js/test/markup/scala/enum.expect.txt +6 -0
  4937. package/build/highlight.js/test/markup/scala/enum.txt +6 -0
  4938. package/build/highlight.js/test/markup/scala/export.expect.txt +2 -0
  4939. package/build/highlight.js/test/markup/scala/export.txt +2 -0
  4940. package/build/highlight.js/test/markup/scala/extension.expect.txt +19 -0
  4941. package/build/highlight.js/test/markup/scala/extension.txt +19 -0
  4942. package/build/highlight.js/test/markup/scala/for-do.expect.txt +1 -0
  4943. package/build/highlight.js/test/markup/scala/for-do.txt +1 -0
  4944. package/build/highlight.js/test/markup/scala/given.expect.txt +2 -0
  4945. package/build/highlight.js/test/markup/scala/given.txt +2 -0
  4946. package/build/highlight.js/test/markup/scala/if-then-else.expect.txt +1 -0
  4947. package/build/highlight.js/test/markup/scala/if-then-else.txt +1 -0
  4948. package/build/highlight.js/test/markup/scala/inline.expect.txt +15 -0
  4949. package/build/highlight.js/test/markup/scala/inline.txt +15 -0
  4950. package/build/highlight.js/test/markup/scala/quoted-code.expect.txt +1 -0
  4951. package/build/highlight.js/test/markup/scala/quoted-code.txt +1 -0
  4952. package/build/highlight.js/test/markup/scala/strings.expect.txt +1 -0
  4953. package/build/highlight.js/test/markup/scala/strings.txt +1 -0
  4954. package/build/highlight.js/test/markup/scala/symbol.expect.txt +5 -0
  4955. package/build/highlight.js/test/markup/scala/symbol.txt +5 -0
  4956. package/build/highlight.js/test/markup/scala/transparent.expect.txt +2 -0
  4957. package/build/highlight.js/test/markup/scala/transparent.txt +2 -0
  4958. package/build/highlight.js/test/markup/scala/using-directives.expect.txt +4 -0
  4959. package/build/highlight.js/test/markup/scala/using-directives.txt +4 -0
  4960. package/build/highlight.js/test/markup/scala/using.expect.txt +11 -0
  4961. package/build/highlight.js/test/markup/scala/using.txt +11 -0
  4962. package/build/highlight.js/test/markup/scala/while-do.expect.txt +1 -0
  4963. package/build/highlight.js/test/markup/scala/while-do.txt +1 -0
  4964. package/build/highlight.js/test/markup/scheme/lambda.expect.txt +7 -0
  4965. package/build/highlight.js/test/markup/scheme/lambda.txt +7 -0
  4966. package/build/highlight.js/test/markup/scheme/quoted.expect.txt +1 -0
  4967. package/build/highlight.js/test/markup/scheme/quoted.txt +1 -0
  4968. package/build/highlight.js/test/markup/scilab/default.expect.txt +14 -0
  4969. package/build/highlight.js/test/markup/scilab/default.txt +14 -0
  4970. package/build/highlight.js/test/markup/scss/css_consistency.expect.txt +77 -0
  4971. package/build/highlight.js/test/markup/scss/css_consistency.txt +77 -0
  4972. package/build/highlight.js/test/markup/scss/default.expect.txt +73 -0
  4973. package/build/highlight.js/test/markup/scss/default.txt +73 -0
  4974. package/build/highlight.js/test/markup/shell/command-continuation.expect.txt +14 -0
  4975. package/build/highlight.js/test/markup/shell/command-continuation.txt +14 -0
  4976. package/build/highlight.js/test/markup/shell/plain-prompt.expect.txt +2 -0
  4977. package/build/highlight.js/test/markup/shell/plain-prompt.txt +2 -0
  4978. package/build/highlight.js/test/markup/shell/prompt-with-slash.expect.txt +13 -0
  4979. package/build/highlight.js/test/markup/shell/prompt-with-slash.txt +13 -0
  4980. package/build/highlight.js/test/markup/shell/prompt-with-tilde.expect.txt +4 -0
  4981. package/build/highlight.js/test/markup/shell/prompt-with-tilde.txt +4 -0
  4982. package/build/highlight.js/test/markup/shell/simple.expect.txt +1 -0
  4983. package/build/highlight.js/test/markup/shell/simple.txt +1 -0
  4984. package/build/highlight.js/test/markup/shell/single.expect.txt +1 -0
  4985. package/build/highlight.js/test/markup/shell/single.txt +1 -0
  4986. package/build/highlight.js/test/markup/smali/default.expect.txt +75 -0
  4987. package/build/highlight.js/test/markup/smali/default.txt +75 -0
  4988. package/build/highlight.js/test/markup/smalltalk/default.expect.txt +39 -0
  4989. package/build/highlight.js/test/markup/smalltalk/default.txt +39 -0
  4990. package/build/highlight.js/test/markup/sml/default.expect.txt +26 -0
  4991. package/build/highlight.js/test/markup/sml/default.txt +26 -0
  4992. package/build/highlight.js/test/markup/sqf/default.expect.txt +17 -0
  4993. package/build/highlight.js/test/markup/sqf/default.txt +17 -0
  4994. package/build/highlight.js/test/markup/sql/combos.expect.txt +118 -0
  4995. package/build/highlight.js/test/markup/sql/combos.txt +118 -0
  4996. package/build/highlight.js/test/markup/sql/functions.expect.txt +7 -0
  4997. package/build/highlight.js/test/markup/sql/functions.txt +7 -0
  4998. package/build/highlight.js/test/markup/sql/join.expect.txt +17 -0
  4999. package/build/highlight.js/test/markup/sql/join.txt +17 -0
  5000. package/build/highlight.js/test/markup/sql/keywords.expect.txt +1 -0
  5001. package/build/highlight.js/test/markup/sql/keywords.txt +1 -0
  5002. package/build/highlight.js/test/markup/sql/numeric-types.expect.txt +1 -0
  5003. package/build/highlight.js/test/markup/sql/numeric-types.txt +1 -0
  5004. package/build/highlight.js/test/markup/sql/set-operator.expect.txt +1 -0
  5005. package/build/highlight.js/test/markup/sql/set-operator.txt +1 -0
  5006. package/build/highlight.js/test/markup/sql/string-types.expect.txt +7 -0
  5007. package/build/highlight.js/test/markup/sql/string-types.txt +7 -0
  5008. package/build/highlight.js/test/markup/sql/types.expect.txt +72 -0
  5009. package/build/highlight.js/test/markup/sql/types.txt +72 -0
  5010. package/build/highlight.js/test/markup/sql/values-statement.expect.txt +7 -0
  5011. package/build/highlight.js/test/markup/sql/values-statement.txt +7 -0
  5012. package/build/highlight.js/test/markup/stan/default.expect.txt +42 -0
  5013. package/build/highlight.js/test/markup/stan/default.txt +42 -0
  5014. package/build/highlight.js/test/markup/stata/built_ins.expect.txt +3 -0
  5015. package/build/highlight.js/test/markup/stata/built_ins.txt +3 -0
  5016. package/build/highlight.js/test/markup/step21/default.expect.txt +33 -0
  5017. package/build/highlight.js/test/markup/step21/default.txt +33 -0
  5018. package/build/highlight.js/test/markup/stylus/css_consistency.expect.txt +77 -0
  5019. package/build/highlight.js/test/markup/stylus/css_consistency.txt +77 -0
  5020. package/build/highlight.js/test/markup/stylus/default.expect.txt +28 -0
  5021. package/build/highlight.js/test/markup/stylus/default.txt +28 -0
  5022. package/build/highlight.js/test/markup/subunit/subunit-errorline.expect.txt +2 -0
  5023. package/build/highlight.js/test/markup/subunit/subunit-errorline.txt +2 -0
  5024. package/build/highlight.js/test/markup/subunit/subunit-failureline.expect.txt +4 -0
  5025. package/build/highlight.js/test/markup/subunit/subunit-failureline.txt +4 -0
  5026. package/build/highlight.js/test/markup/subunit/subunit-progressline.expect.txt +7 -0
  5027. package/build/highlight.js/test/markup/subunit/subunit-progressline.txt +7 -0
  5028. package/build/highlight.js/test/markup/subunit/subunit-skipline.expect.txt +3 -0
  5029. package/build/highlight.js/test/markup/subunit/subunit-skipline.txt +3 -0
  5030. package/build/highlight.js/test/markup/subunit/subunit-successline.expect.txt +8 -0
  5031. package/build/highlight.js/test/markup/subunit/subunit-successline.txt +8 -0
  5032. package/build/highlight.js/test/markup/subunit/subunit-tagline.expect.txt +5 -0
  5033. package/build/highlight.js/test/markup/subunit/subunit-tagline.txt +5 -0
  5034. package/build/highlight.js/test/markup/subunit/subunit-testline.expect.txt +10 -0
  5035. package/build/highlight.js/test/markup/subunit/subunit-testline.txt +10 -0
  5036. package/build/highlight.js/test/markup/subunit/subunit-timeline.expect.txt +3 -0
  5037. package/build/highlight.js/test/markup/subunit/subunit-timeline.txt +3 -0
  5038. package/build/highlight.js/test/markup/subunit/subunit-uxsuccessline.expect.txt +3 -0
  5039. package/build/highlight.js/test/markup/subunit/subunit-uxsuccessline.txt +3 -0
  5040. package/build/highlight.js/test/markup/subunit/subunit-xfailline.expect.txt +3 -0
  5041. package/build/highlight.js/test/markup/subunit/subunit-xfailline.txt +3 -0
  5042. package/build/highlight.js/test/markup/swift/attributes.expect.txt +27 -0
  5043. package/build/highlight.js/test/markup/swift/attributes.txt +27 -0
  5044. package/build/highlight.js/test/markup/swift/availability.expect.txt +11 -0
  5045. package/build/highlight.js/test/markup/swift/availability.txt +11 -0
  5046. package/build/highlight.js/test/markup/swift/class-func-var.expect.txt +15 -0
  5047. package/build/highlight.js/test/markup/swift/class-func-var.txt +15 -0
  5048. package/build/highlight.js/test/markup/swift/distributed-actor-runtime.expect.txt +7 -0
  5049. package/build/highlight.js/test/markup/swift/distributed-actor-runtime.txt +7 -0
  5050. package/build/highlight.js/test/markup/swift/functions.expect.txt +32 -0
  5051. package/build/highlight.js/test/markup/swift/functions.txt +32 -0
  5052. package/build/highlight.js/test/markup/swift/identifiers.expect.txt +3 -0
  5053. package/build/highlight.js/test/markup/swift/identifiers.txt +3 -0
  5054. package/build/highlight.js/test/markup/swift/keywords.expect.txt +28 -0
  5055. package/build/highlight.js/test/markup/swift/keywords.txt +28 -0
  5056. package/build/highlight.js/test/markup/swift/macro.expect.txt +12 -0
  5057. package/build/highlight.js/test/markup/swift/macro.txt +12 -0
  5058. package/build/highlight.js/test/markup/swift/numbers.expect.txt +56 -0
  5059. package/build/highlight.js/test/markup/swift/numbers.txt +56 -0
  5060. package/build/highlight.js/test/markup/swift/operator-declarations.expect.txt +3 -0
  5061. package/build/highlight.js/test/markup/swift/operator-declarations.txt +3 -0
  5062. package/build/highlight.js/test/markup/swift/operators.expect.txt +98 -0
  5063. package/build/highlight.js/test/markup/swift/operators.txt +98 -0
  5064. package/build/highlight.js/test/markup/swift/ownership.expect.txt +23 -0
  5065. package/build/highlight.js/test/markup/swift/ownership.txt +23 -0
  5066. package/build/highlight.js/test/markup/swift/parameterpack.expect.txt +7 -0
  5067. package/build/highlight.js/test/markup/swift/parameterpack.txt +7 -0
  5068. package/build/highlight.js/test/markup/swift/precedencegroup.expect.txt +8 -0
  5069. package/build/highlight.js/test/markup/swift/precedencegroup.txt +8 -0
  5070. package/build/highlight.js/test/markup/swift/regex.expect.txt +103 -0
  5071. package/build/highlight.js/test/markup/swift/regex.txt +103 -0
  5072. package/build/highlight.js/test/markup/swift/strings.expect.txt +72 -0
  5073. package/build/highlight.js/test/markup/swift/strings.txt +72 -0
  5074. package/build/highlight.js/test/markup/swift/swiftui.expect.txt +12 -0
  5075. package/build/highlight.js/test/markup/swift/swiftui.txt +12 -0
  5076. package/build/highlight.js/test/markup/swift/tuples.expect.txt +17 -0
  5077. package/build/highlight.js/test/markup/swift/tuples.txt +17 -0
  5078. package/build/highlight.js/test/markup/swift/type-definition.expect.txt +61 -0
  5079. package/build/highlight.js/test/markup/swift/type-definition.txt +61 -0
  5080. package/build/highlight.js/test/markup/swift/types.expect.txt +48 -0
  5081. package/build/highlight.js/test/markup/swift/types.txt +48 -0
  5082. package/build/highlight.js/test/markup/taggerscript/default.expect.txt +12 -0
  5083. package/build/highlight.js/test/markup/taggerscript/default.txt +12 -0
  5084. package/build/highlight.js/test/markup/taggerscript/functions.expect.txt +5 -0
  5085. package/build/highlight.js/test/markup/taggerscript/functions.txt +5 -0
  5086. package/build/highlight.js/test/markup/taggerscript/noop.expect.txt +6 -0
  5087. package/build/highlight.js/test/markup/taggerscript/noop.txt +6 -0
  5088. package/build/highlight.js/test/markup/tap/basic.expect.txt +5 -0
  5089. package/build/highlight.js/test/markup/tap/basic.txt +5 -0
  5090. package/build/highlight.js/test/markup/tap/without-numbers.expect.txt +6 -0
  5091. package/build/highlight.js/test/markup/tap/without-numbers.txt +6 -0
  5092. package/build/highlight.js/test/markup/tap/yaml-block.expect.txt +26 -0
  5093. package/build/highlight.js/test/markup/tap/yaml-block.txt +26 -0
  5094. package/build/highlight.js/test/markup/tcl/default.expect.txt +26 -0
  5095. package/build/highlight.js/test/markup/tcl/default.txt +26 -0
  5096. package/build/highlight.js/test/markup/tcl/variables.expect.txt +24 -0
  5097. package/build/highlight.js/test/markup/tcl/variables.txt +24 -0
  5098. package/build/highlight.js/test/markup/thrift/default.expect.txt +40 -0
  5099. package/build/highlight.js/test/markup/thrift/default.txt +40 -0
  5100. package/build/highlight.js/test/markup/tp/default.expect.txt +156 -0
  5101. package/build/highlight.js/test/markup/tp/default.txt +156 -0
  5102. package/build/highlight.js/test/markup/twig/filter_with_underscore.expect.txt +1 -0
  5103. package/build/highlight.js/test/markup/twig/filter_with_underscore.txt +1 -0
  5104. package/build/highlight.js/test/markup/twig/template_tags.expect.txt +12 -0
  5105. package/build/highlight.js/test/markup/twig/template_tags.txt +11 -0
  5106. package/build/highlight.js/test/markup/typescript/class.expect.txt +28 -0
  5107. package/build/highlight.js/test/markup/typescript/class.txt +28 -0
  5108. package/build/highlight.js/test/markup/typescript/declares.expect.txt +8 -0
  5109. package/build/highlight.js/test/markup/typescript/declares.txt +8 -0
  5110. package/build/highlight.js/test/markup/typescript/decorator-factories.expect.txt +13 -0
  5111. package/build/highlight.js/test/markup/typescript/decorator-factories.txt +13 -0
  5112. package/build/highlight.js/test/markup/typescript/functions.expect.txt +51 -0
  5113. package/build/highlight.js/test/markup/typescript/functions.txt +50 -0
  5114. package/build/highlight.js/test/markup/typescript/generics.expect.txt +69 -0
  5115. package/build/highlight.js/test/markup/typescript/generics.txt +70 -0
  5116. package/build/highlight.js/test/markup/typescript/identifiers_that_include_keywords.expect.txt +2 -0
  5117. package/build/highlight.js/test/markup/typescript/identifiers_that_include_keywords.txt +2 -0
  5118. package/build/highlight.js/test/markup/typescript/inline-languages.expect.txt +34 -0
  5119. package/build/highlight.js/test/markup/typescript/inline-languages.txt +34 -0
  5120. package/build/highlight.js/test/markup/typescript/jsx.expect.txt +19 -0
  5121. package/build/highlight.js/test/markup/typescript/jsx.txt +19 -0
  5122. package/build/highlight.js/test/markup/typescript/module-id.expect.txt +14 -0
  5123. package/build/highlight.js/test/markup/typescript/module-id.txt +14 -0
  5124. package/build/highlight.js/test/markup/typescript/namespace_as_identifier.expect.txt +4 -0
  5125. package/build/highlight.js/test/markup/typescript/namespace_as_identifier.txt +3 -0
  5126. package/build/highlight.js/test/markup/typescript/nested-templates.expect.txt +3 -0
  5127. package/build/highlight.js/test/markup/typescript/nested-templates.txt +3 -0
  5128. package/build/highlight.js/test/markup/typescript/numbers-and-dashes.expect.txt +9 -0
  5129. package/build/highlight.js/test/markup/typescript/numbers-and-dashes.txt +9 -0
  5130. package/build/highlight.js/test/markup/typescript/numbers.expect.txt +50 -0
  5131. package/build/highlight.js/test/markup/typescript/numbers.txt +50 -0
  5132. package/build/highlight.js/test/markup/typescript/satisfies-and-as.expect.txt +2 -0
  5133. package/build/highlight.js/test/markup/typescript/satisfies-and-as.txt +2 -0
  5134. package/build/highlight.js/test/markup/vala/default.expect.txt +46 -0
  5135. package/build/highlight.js/test/markup/vala/default.txt +46 -0
  5136. package/build/highlight.js/test/markup/vbnet/comments.expect.txt +12 -0
  5137. package/build/highlight.js/test/markup/vbnet/comments.txt +12 -0
  5138. package/build/highlight.js/test/markup/vbnet/default.expect.txt +41 -0
  5139. package/build/highlight.js/test/markup/vbnet/default.txt +41 -0
  5140. package/build/highlight.js/test/markup/vbnet/directives.expect.txt +16 -0
  5141. package/build/highlight.js/test/markup/vbnet/directives.txt +16 -0
  5142. package/build/highlight.js/test/markup/vbnet/literals.expect.txt +17 -0
  5143. package/build/highlight.js/test/markup/vbnet/literals.txt +17 -0
  5144. package/build/highlight.js/test/markup/vbnet/numbers.expect.txt +29 -0
  5145. package/build/highlight.js/test/markup/vbnet/numbers.txt +29 -0
  5146. package/build/highlight.js/test/markup/vbscript/default.expect.txt +29 -0
  5147. package/build/highlight.js/test/markup/vbscript/default.txt +29 -0
  5148. package/build/highlight.js/test/markup/vbscript-html/default.expect.txt +8 -0
  5149. package/build/highlight.js/test/markup/vbscript-html/default.txt +7 -0
  5150. package/build/highlight.js/test/markup/verilog/directives.expect.txt +2 -0
  5151. package/build/highlight.js/test/markup/verilog/directives.txt +2 -0
  5152. package/build/highlight.js/test/markup/verilog/misc.expect.txt +37 -0
  5153. package/build/highlight.js/test/markup/verilog/misc.txt +37 -0
  5154. package/build/highlight.js/test/markup/verilog/numbers.expect.txt +8 -0
  5155. package/build/highlight.js/test/markup/verilog/numbers.txt +8 -0
  5156. package/build/highlight.js/test/markup/vhdl/default.expect.txt +41 -0
  5157. package/build/highlight.js/test/markup/vhdl/default.txt +41 -0
  5158. package/build/highlight.js/test/markup/vim/default.expect.txt +17 -0
  5159. package/build/highlight.js/test/markup/vim/default.txt +17 -0
  5160. package/build/highlight.js/test/markup/vim/strings-comments.expect.txt +4 -0
  5161. package/build/highlight.js/test/markup/vim/strings-comments.txt +4 -0
  5162. package/build/highlight.js/test/markup/wasm/sample.expect.txt +303 -0
  5163. package/build/highlight.js/test/markup/wasm/sample.txt +303 -0
  5164. package/build/highlight.js/test/markup/wren/attributes.expect.txt +16 -0
  5165. package/build/highlight.js/test/markup/wren/attributes.txt +16 -0
  5166. package/build/highlight.js/test/markup/wren/default.expect.txt +61 -0
  5167. package/build/highlight.js/test/markup/wren/default.txt +61 -0
  5168. package/build/highlight.js/test/markup/x86asm/labels-directives.expect.txt +6 -0
  5169. package/build/highlight.js/test/markup/x86asm/labels-directives.txt +6 -0
  5170. package/build/highlight.js/test/markup/xl/default.expect.txt +28 -0
  5171. package/build/highlight.js/test/markup/xl/default.txt +28 -0
  5172. package/build/highlight.js/test/markup/xml/document-type-variations.expect.txt +38 -0
  5173. package/build/highlight.js/test/markup/xml/document-type-variations.txt +38 -0
  5174. package/build/highlight.js/test/markup/xml/namespace.expect.txt +3 -0
  5175. package/build/highlight.js/test/markup/xml/namespace.txt +3 -0
  5176. package/build/highlight.js/test/markup/xml/non-ascii-attribute-names.expect.txt +3 -0
  5177. package/build/highlight.js/test/markup/xml/non-ascii-attribute-names.txt +3 -0
  5178. package/build/highlight.js/test/markup/xml/non-ascii-element-names.expect.txt +12 -0
  5179. package/build/highlight.js/test/markup/xml/non-ascii-element-names.txt +12 -0
  5180. package/build/highlight.js/test/markup/xml/processing.expect.txt +6 -0
  5181. package/build/highlight.js/test/markup/xml/processing.txt +6 -0
  5182. package/build/highlight.js/test/markup/xml/space-attributes.expect.txt +3 -0
  5183. package/build/highlight.js/test/markup/xml/space-attributes.txt +3 -0
  5184. package/build/highlight.js/test/markup/xml/sublanguage_no_relevancy.expect.txt +3 -0
  5185. package/build/highlight.js/test/markup/xml/sublanguage_no_relevancy.txt +3 -0
  5186. package/build/highlight.js/test/markup/xml/unquoted-attributes.expect.txt +9 -0
  5187. package/build/highlight.js/test/markup/xml/unquoted-attributes.txt +9 -0
  5188. package/build/highlight.js/test/markup/xquery/computed_inbuilt.expect.txt +9 -0
  5189. package/build/highlight.js/test/markup/xquery/computed_inbuilt.txt +9 -0
  5190. package/build/highlight.js/test/markup/xquery/direct_method.expect.txt +12 -0
  5191. package/build/highlight.js/test/markup/xquery/direct_method.txt +12 -0
  5192. package/build/highlight.js/test/markup/xquery/function_body.expect.txt +11 -0
  5193. package/build/highlight.js/test/markup/xquery/function_body.txt +11 -0
  5194. package/build/highlight.js/test/markup/xquery/prolog_declarations.expect.txt +22 -0
  5195. package/build/highlight.js/test/markup/xquery/prolog_declarations.txt +22 -0
  5196. package/build/highlight.js/test/markup/yaml/block.expect.txt +30 -0
  5197. package/build/highlight.js/test/markup/yaml/block.txt +30 -0
  5198. package/build/highlight.js/test/markup/yaml/inline.expect.txt +3 -0
  5199. package/build/highlight.js/test/markup/yaml/inline.txt +3 -0
  5200. package/build/highlight.js/test/markup/yaml/keys.expect.txt +32 -0
  5201. package/build/highlight.js/test/markup/yaml/keys.txt +32 -0
  5202. package/build/highlight.js/test/markup/yaml/numbers.expect.txt +10 -0
  5203. package/build/highlight.js/test/markup/yaml/numbers.txt +10 -0
  5204. package/build/highlight.js/test/markup/yaml/special_chars.expect.txt +18 -0
  5205. package/build/highlight.js/test/markup/yaml/special_chars.txt +19 -0
  5206. package/build/highlight.js/test/markup/yaml/string.expect.txt +15 -0
  5207. package/build/highlight.js/test/markup/yaml/string.txt +15 -0
  5208. package/build/highlight.js/test/markup/yaml/tag.expect.txt +12 -0
  5209. package/build/highlight.js/test/markup/yaml/tag.txt +12 -0
  5210. package/build/highlight.js/test/markup/zephir/default.expect.txt +55 -0
  5211. package/build/highlight.js/test/markup/zephir/default.txt +55 -0
  5212. package/build/highlight.js/test/mocha.opts +6 -0
  5213. package/build/highlight.js/test/parser/beginEndScope.js +72 -0
  5214. package/build/highlight.js/test/parser/compiler-extensions.js +52 -0
  5215. package/build/highlight.js/test/parser/index.js +12 -0
  5216. package/build/highlight.js/test/parser/look-ahead-end-matchers.js +31 -0
  5217. package/build/highlight.js/test/parser/max_keyword_hits.js +19 -0
  5218. package/build/highlight.js/test/parser/resume-scan.js +26 -0
  5219. package/build/highlight.js/test/parser/reuse-endsWithParent.js +27 -0
  5220. package/build/highlight.js/test/parser/should-not-destroyData.js +40 -0
  5221. package/build/highlight.js/test/regex/index.js +407 -0
  5222. package/build/highlight.js/test/regex/lib/analysis.js +87 -0
  5223. package/build/highlight.js/test/regex/lib/util.js +109 -0
  5224. package/build/highlight.js/test/special/buildClassName.js +37 -0
  5225. package/build/highlight.js/test/special/endsWithParentVariants.js +19 -0
  5226. package/build/highlight.js/test/special/explicitLanguage.js +44 -0
  5227. package/build/highlight.js/test/special/index.js +40 -0
  5228. package/build/highlight.js/test/special/languageAlias.js +19 -0
  5229. package/build/highlight.js/test/special/noHighlight.js +59 -0
  5230. package/build/highlight.js/test/special/subLanguages.js +17 -0
  5231. package/build/highlight.js/test/utility.js +25 -0
  5232. package/build/highlight.js/tools/build.js +110 -0
  5233. package/build/highlight.js/tools/buildSizeReport.js +192 -0
  5234. package/build/highlight.js/tools/build_browser.js +255 -0
  5235. package/build/highlight.js/tools/build_cdn.js +181 -0
  5236. package/build/highlight.js/tools/build_config.js +73 -0
  5237. package/build/highlight.js/tools/build_node.js +209 -0
  5238. package/build/highlight.js/tools/checkAutoDetect.js +83 -0
  5239. package/build/highlight.js/tools/checkTheme.js +288 -0
  5240. package/build/highlight.js/tools/css +15 -0
  5241. package/build/highlight.js/tools/developer.html +442 -0
  5242. package/build/highlight.js/tools/lib/bundling.js +28 -0
  5243. package/build/highlight.js/tools/lib/dependencies.js +81 -0
  5244. package/build/highlight.js/tools/lib/external_language.js +105 -0
  5245. package/build/highlight.js/tools/lib/language.js +124 -0
  5246. package/build/highlight.js/tools/lib/makestuff.js +51 -0
  5247. package/build/highlight.js/tools/perf.js +70 -0
  5248. package/build/highlight.js/tools/sample_files/python.txt +1713 -0
  5249. package/build/highlight.js/tools/templates/DIGESTS.md +23 -0
  5250. package/build/highlight.js/tools/vendor/jquery-2.1.1.min.js +4 -0
  5251. package/build/highlight.js/tsconfig.json +65 -0
  5252. package/build/highlight.js/types/index.d.ts +274 -0
  5253. package/dist/opl.es.min.js +6 -0
  5254. package/dist/opl.min.js +7 -0
  5255. package/package.json +1 -1
  5256. package/.github/workflows/build.yaml +0 -50
  5257. package/.tool-versions +0 -3
  5258. package/scripts/build.sh +0 -99
  5259. package/scripts/changes/.github/workflows/test.yaml +0 -58
  5260. package/scripts/changes/Pipfile +0 -14
  5261. package/scripts/changes/README.md +0 -45
  5262. package/scripts/changes/changes +0 -27
  5263. package/scripts/changes/changes.py +0 -890
  5264. package/scripts/changes/cli.py +0 -80
  5265. package/scripts/changes/examples/gh-release.sh +0 -38
  5266. package/scripts/changes/scripts/release.sh +0 -28
  5267. package/scripts/changes/scripts/test.sh +0 -54
  5268. package/scripts/changes/templates/multiple.markdown +0 -9
  5269. package/scripts/changes/templates/single.markdown +0 -9
  5270. package/scripts/changes/tests/common.py +0 -195
  5271. package/scripts/changes/tests/test_cli.py +0 -1064
  5272. package/scripts/changes/tests/test_common.py +0 -73
  5273. package/scripts/changes/tests/test_history.py +0 -114
  5274. package/scripts/changes/tests/test_version.py +0 -199
  5275. package/scripts/environment.sh +0 -33
  5276. package/scripts/install-dependencies.sh +0 -52
  5277. package/scripts/upload-and-publish-release.sh +0 -38
@@ -0,0 +1,247 @@
1
+ <#
2
+ .Synopsis
3
+ Activate a Python virtual environment for the current PowerShell session.
4
+
5
+ .Description
6
+ Pushes the python executable for a virtual environment to the front of the
7
+ $Env:PATH environment variable and sets the prompt to signify that you are
8
+ in a Python virtual environment. Makes use of the command line switches as
9
+ well as the `pyvenv.cfg` file values present in the virtual environment.
10
+
11
+ .Parameter VenvDir
12
+ Path to the directory that contains the virtual environment to activate. The
13
+ default value for this is the parent of the directory that the Activate.ps1
14
+ script is located within.
15
+
16
+ .Parameter Prompt
17
+ The prompt prefix to display when this virtual environment is activated. By
18
+ default, this prompt is the name of the virtual environment folder (VenvDir)
19
+ surrounded by parentheses and followed by a single space (ie. '(.venv) ').
20
+
21
+ .Example
22
+ Activate.ps1
23
+ Activates the Python virtual environment that contains the Activate.ps1 script.
24
+
25
+ .Example
26
+ Activate.ps1 -Verbose
27
+ Activates the Python virtual environment that contains the Activate.ps1 script,
28
+ and shows extra information about the activation as it executes.
29
+
30
+ .Example
31
+ Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
32
+ Activates the Python virtual environment located in the specified location.
33
+
34
+ .Example
35
+ Activate.ps1 -Prompt "MyPython"
36
+ Activates the Python virtual environment that contains the Activate.ps1 script,
37
+ and prefixes the current prompt with the specified string (surrounded in
38
+ parentheses) while the virtual environment is active.
39
+
40
+ .Notes
41
+ On Windows, it may be required to enable this Activate.ps1 script by setting the
42
+ execution policy for the user. You can do this by issuing the following PowerShell
43
+ command:
44
+
45
+ PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
46
+
47
+ For more information on Execution Policies:
48
+ https://go.microsoft.com/fwlink/?LinkID=135170
49
+
50
+ #>
51
+ Param(
52
+ [Parameter(Mandatory = $false)]
53
+ [String]
54
+ $VenvDir,
55
+ [Parameter(Mandatory = $false)]
56
+ [String]
57
+ $Prompt
58
+ )
59
+
60
+ <# Function declarations --------------------------------------------------- #>
61
+
62
+ <#
63
+ .Synopsis
64
+ Remove all shell session elements added by the Activate script, including the
65
+ addition of the virtual environment's Python executable from the beginning of
66
+ the PATH variable.
67
+
68
+ .Parameter NonDestructive
69
+ If present, do not remove this function from the global namespace for the
70
+ session.
71
+
72
+ #>
73
+ function global:deactivate ([switch]$NonDestructive) {
74
+ # Revert to original values
75
+
76
+ # The prior prompt:
77
+ if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
78
+ Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
79
+ Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
80
+ }
81
+
82
+ # The prior PYTHONHOME:
83
+ if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
84
+ Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
85
+ Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
86
+ }
87
+
88
+ # The prior PATH:
89
+ if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
90
+ Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
91
+ Remove-Item -Path Env:_OLD_VIRTUAL_PATH
92
+ }
93
+
94
+ # Just remove the VIRTUAL_ENV altogether:
95
+ if (Test-Path -Path Env:VIRTUAL_ENV) {
96
+ Remove-Item -Path env:VIRTUAL_ENV
97
+ }
98
+
99
+ # Just remove VIRTUAL_ENV_PROMPT altogether.
100
+ if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
101
+ Remove-Item -Path env:VIRTUAL_ENV_PROMPT
102
+ }
103
+
104
+ # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
105
+ if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
106
+ Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
107
+ }
108
+
109
+ # Leave deactivate function in the global namespace if requested:
110
+ if (-not $NonDestructive) {
111
+ Remove-Item -Path function:deactivate
112
+ }
113
+ }
114
+
115
+ <#
116
+ .Description
117
+ Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
118
+ given folder, and returns them in a map.
119
+
120
+ For each line in the pyvenv.cfg file, if that line can be parsed into exactly
121
+ two strings separated by `=` (with any amount of whitespace surrounding the =)
122
+ then it is considered a `key = value` line. The left hand string is the key,
123
+ the right hand is the value.
124
+
125
+ If the value starts with a `'` or a `"` then the first and last character is
126
+ stripped from the value before being captured.
127
+
128
+ .Parameter ConfigDir
129
+ Path to the directory that contains the `pyvenv.cfg` file.
130
+ #>
131
+ function Get-PyVenvConfig(
132
+ [String]
133
+ $ConfigDir
134
+ ) {
135
+ Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
136
+
137
+ # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
138
+ $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
139
+
140
+ # An empty map will be returned if no config file is found.
141
+ $pyvenvConfig = @{ }
142
+
143
+ if ($pyvenvConfigPath) {
144
+
145
+ Write-Verbose "File exists, parse `key = value` lines"
146
+ $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
147
+
148
+ $pyvenvConfigContent | ForEach-Object {
149
+ $keyval = $PSItem -split "\s*=\s*", 2
150
+ if ($keyval[0] -and $keyval[1]) {
151
+ $val = $keyval[1]
152
+
153
+ # Remove extraneous quotations around a string value.
154
+ if ("'""".Contains($val.Substring(0, 1))) {
155
+ $val = $val.Substring(1, $val.Length - 2)
156
+ }
157
+
158
+ $pyvenvConfig[$keyval[0]] = $val
159
+ Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
160
+ }
161
+ }
162
+ }
163
+ return $pyvenvConfig
164
+ }
165
+
166
+
167
+ <# Begin Activate script --------------------------------------------------- #>
168
+
169
+ # Determine the containing directory of this script
170
+ $VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
171
+ $VenvExecDir = Get-Item -Path $VenvExecPath
172
+
173
+ Write-Verbose "Activation script is located in path: '$VenvExecPath'"
174
+ Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
175
+ Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
176
+
177
+ # Set values required in priority: CmdLine, ConfigFile, Default
178
+ # First, get the location of the virtual environment, it might not be
179
+ # VenvExecDir if specified on the command line.
180
+ if ($VenvDir) {
181
+ Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
182
+ }
183
+ else {
184
+ Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
185
+ $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
186
+ Write-Verbose "VenvDir=$VenvDir"
187
+ }
188
+
189
+ # Next, read the `pyvenv.cfg` file to determine any required value such
190
+ # as `prompt`.
191
+ $pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
192
+
193
+ # Next, set the prompt from the command line, or the config file, or
194
+ # just use the name of the virtual environment folder.
195
+ if ($Prompt) {
196
+ Write-Verbose "Prompt specified as argument, using '$Prompt'"
197
+ }
198
+ else {
199
+ Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
200
+ if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
201
+ Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
202
+ $Prompt = $pyvenvCfg['prompt'];
203
+ }
204
+ else {
205
+ Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
206
+ Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
207
+ $Prompt = Split-Path -Path $venvDir -Leaf
208
+ }
209
+ }
210
+
211
+ Write-Verbose "Prompt = '$Prompt'"
212
+ Write-Verbose "VenvDir='$VenvDir'"
213
+
214
+ # Deactivate any currently active virtual environment, but leave the
215
+ # deactivate function in place.
216
+ deactivate -nondestructive
217
+
218
+ # Now set the environment variable VIRTUAL_ENV, used by many tools to determine
219
+ # that there is an activated venv.
220
+ $env:VIRTUAL_ENV = $VenvDir
221
+
222
+ if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
223
+
224
+ Write-Verbose "Setting prompt to '$Prompt'"
225
+
226
+ # Set the prompt to include the env name
227
+ # Make sure _OLD_VIRTUAL_PROMPT is global
228
+ function global:_OLD_VIRTUAL_PROMPT { "" }
229
+ Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
230
+ New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
231
+
232
+ function global:prompt {
233
+ Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
234
+ _OLD_VIRTUAL_PROMPT
235
+ }
236
+ $env:VIRTUAL_ENV_PROMPT = $Prompt
237
+ }
238
+
239
+ # Clear PYTHONHOME
240
+ if (Test-Path -Path Env:PYTHONHOME) {
241
+ Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
242
+ Remove-Item -Path Env:PYTHONHOME
243
+ }
244
+
245
+ # Add the venv to the PATH
246
+ Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
247
+ $Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
@@ -0,0 +1,70 @@
1
+ # This file must be used with "source bin/activate" *from bash*
2
+ # You cannot run it directly
3
+
4
+ deactivate () {
5
+ # reset old environment variables
6
+ if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
7
+ PATH="${_OLD_VIRTUAL_PATH:-}"
8
+ export PATH
9
+ unset _OLD_VIRTUAL_PATH
10
+ fi
11
+ if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
12
+ PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
13
+ export PYTHONHOME
14
+ unset _OLD_VIRTUAL_PYTHONHOME
15
+ fi
16
+
17
+ # Call hash to forget past commands. Without forgetting
18
+ # past commands the $PATH changes we made may not be respected
19
+ hash -r 2> /dev/null
20
+
21
+ if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
22
+ PS1="${_OLD_VIRTUAL_PS1:-}"
23
+ export PS1
24
+ unset _OLD_VIRTUAL_PS1
25
+ fi
26
+
27
+ unset VIRTUAL_ENV
28
+ unset VIRTUAL_ENV_PROMPT
29
+ if [ ! "${1:-}" = "nondestructive" ] ; then
30
+ # Self destruct!
31
+ unset -f deactivate
32
+ fi
33
+ }
34
+
35
+ # unset irrelevant variables
36
+ deactivate nondestructive
37
+
38
+ # on Windows, a path can contain colons and backslashes and has to be converted:
39
+ if [ "$OSTYPE" = "cygwin" ] || [ "$OSTYPE" = "msys" ] ; then
40
+ # transform D:\path\to\venv to /d/path/to/venv on MSYS
41
+ # and to /cygdrive/d/path/to/venv on Cygwin
42
+ export VIRTUAL_ENV=$(cygpath "/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python")
43
+ else
44
+ # use the path as-is
45
+ export VIRTUAL_ENV="/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python"
46
+ fi
47
+
48
+ _OLD_VIRTUAL_PATH="$PATH"
49
+ PATH="$VIRTUAL_ENV/bin:$PATH"
50
+ export PATH
51
+
52
+ # unset PYTHONHOME if set
53
+ # this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
54
+ # could use `if (set -u; : $PYTHONHOME) ;` in bash
55
+ if [ -n "${PYTHONHOME:-}" ] ; then
56
+ _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
57
+ unset PYTHONHOME
58
+ fi
59
+
60
+ if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
61
+ _OLD_VIRTUAL_PS1="${PS1:-}"
62
+ PS1="(python) ${PS1:-}"
63
+ export PS1
64
+ VIRTUAL_ENV_PROMPT="(python) "
65
+ export VIRTUAL_ENV_PROMPT
66
+ fi
67
+
68
+ # Call hash to forget past commands. Without forgetting
69
+ # past commands the $PATH changes we made may not be respected
70
+ hash -r 2> /dev/null
@@ -0,0 +1,27 @@
1
+ # This file must be used with "source bin/activate.csh" *from csh*.
2
+ # You cannot run it directly.
3
+
4
+ # Created by Davide Di Blasi <davidedb@gmail.com>.
5
+ # Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
6
+
7
+ alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
8
+
9
+ # Unset irrelevant variables.
10
+ deactivate nondestructive
11
+
12
+ setenv VIRTUAL_ENV "/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python"
13
+
14
+ set _OLD_VIRTUAL_PATH="$PATH"
15
+ setenv PATH "$VIRTUAL_ENV/bin:$PATH"
16
+
17
+
18
+ set _OLD_VIRTUAL_PROMPT="$prompt"
19
+
20
+ if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
21
+ set prompt = "(python) $prompt"
22
+ setenv VIRTUAL_ENV_PROMPT "(python) "
23
+ endif
24
+
25
+ alias pydoc python -m pydoc
26
+
27
+ rehash
@@ -0,0 +1,69 @@
1
+ # This file must be used with "source <venv>/bin/activate.fish" *from fish*
2
+ # (https://fishshell.com/). You cannot run it directly.
3
+
4
+ function deactivate -d "Exit virtual environment and return to normal shell environment"
5
+ # reset old environment variables
6
+ if test -n "$_OLD_VIRTUAL_PATH"
7
+ set -gx PATH $_OLD_VIRTUAL_PATH
8
+ set -e _OLD_VIRTUAL_PATH
9
+ end
10
+ if test -n "$_OLD_VIRTUAL_PYTHONHOME"
11
+ set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
12
+ set -e _OLD_VIRTUAL_PYTHONHOME
13
+ end
14
+
15
+ if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
16
+ set -e _OLD_FISH_PROMPT_OVERRIDE
17
+ # prevents error when using nested fish instances (Issue #93858)
18
+ if functions -q _old_fish_prompt
19
+ functions -e fish_prompt
20
+ functions -c _old_fish_prompt fish_prompt
21
+ functions -e _old_fish_prompt
22
+ end
23
+ end
24
+
25
+ set -e VIRTUAL_ENV
26
+ set -e VIRTUAL_ENV_PROMPT
27
+ if test "$argv[1]" != "nondestructive"
28
+ # Self-destruct!
29
+ functions -e deactivate
30
+ end
31
+ end
32
+
33
+ # Unset irrelevant variables.
34
+ deactivate nondestructive
35
+
36
+ set -gx VIRTUAL_ENV "/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python"
37
+
38
+ set -gx _OLD_VIRTUAL_PATH $PATH
39
+ set -gx PATH "$VIRTUAL_ENV/bin" $PATH
40
+
41
+ # Unset PYTHONHOME if set.
42
+ if set -q PYTHONHOME
43
+ set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
44
+ set -e PYTHONHOME
45
+ end
46
+
47
+ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
48
+ # fish uses a function instead of an env var to generate the prompt.
49
+
50
+ # Save the current fish_prompt function as the function _old_fish_prompt.
51
+ functions -c fish_prompt _old_fish_prompt
52
+
53
+ # With the original prompt function renamed, we can override with our own.
54
+ function fish_prompt
55
+ # Save the return status of the last command.
56
+ set -l old_status $status
57
+
58
+ # Output the venv prompt; color taken from the blue of the Python logo.
59
+ printf "%s%s%s" (set_color 4B8BBE) "(python) " (set_color normal)
60
+
61
+ # Restore the return status of the previous command.
62
+ echo "exit $old_status" | .
63
+ # Output the original/"old" prompt.
64
+ _old_fish_prompt
65
+ end
66
+
67
+ set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
68
+ set -gx VIRTUAL_ENV_PROMPT "(python) "
69
+ end
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pipenv import cli
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(cli())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pipenv.resolver import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from virtualenv.__main__ import run_with_catch
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(run_with_catch())
@@ -0,0 +1,8 @@
1
+ #!/home/runner/work/highlightjs-opl/highlightjs-opl/.local/python/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from wheel._commands import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())