diff --git a/Updater.py b/Updater.py new file mode 100755 index 0000000000000000000000000000000000000000..5554cc4b63b70be604f7befd667ddade886ad6a2 --- /dev/null +++ b/Updater.py @@ -0,0 +1,186 @@ +#!/bin/python3 + +import sys +sys.path.insert(0,"_vendor") + +import requests +import os +import re +import json +from tqdm import tqdm +from dataclasses import dataclass +import glob +import pprint + +root = "www.photopea.com/" +website = "https://photopea.com/" +urls = [ + "index.html", + "style/all.css", + "code/ext/ext.js", + "promo/thumb256.png", + "code/pp/pp.js", + "code/dbs/DBS.js", + "rsrc/basic/basic.zip", + "code/ext/hb.wasm", + "code/ext/fribidi.wasm", + "papi/tpls.json", + "rsrc/fonts/fonts.png", + "code/storages/deviceStorage.html", + "code/storages/googledriveStorage.html", + "code/storages/dropboxStorage.html", + "rsrc/basic/fa_basic.csh", + "img/nft.png", + ["templates/?type=0&rsrc=","templates/index.html"], + "templates/templates.js", + "templates/templates.css" +] + + + +#Update files + +def download_file(remote,local): + if os.path.exists(local): + #return --- Maybe make some flag for this + pass + with tqdm(desc=local, unit="B", unit_scale=True) as progress_bar: + r = requests.get(remote, stream=True) + progress_bar.total = int(r.headers.get("Content-Length", 0)) + + if r.status_code != 200: + progress_bar.desc += "ERROR: HTTP Status %d" % r.status_code + return + + + os.makedirs(os.path.dirname(local), exist_ok=True) + with open(local, "wb") as outf: + for chunk in r.iter_content(chunk_size=1024): + progress_bar.update(len(chunk)) + outf.write(chunk) +def dl_file(path): + if isinstance(path,list): + outfn=path[1] + path=path[0] + else: + outfn=path + path=path + + download_file(website + path,root+outfn) + +for url in urls: + dl_file(url) + +db_data = open(root + "code/dbs/DBS.js").read() +db_vars = re.findall(r"var (\w+)\s*=\s*(\{[\w\W]+?\n\s*\})\s*(?=;|/\*|var)", db_data) +db = {} + +for varname, vardata in db_vars: + try: + db[varname] = json.loads(vardata) + except Exception as e: + if varname=='FNTS': + print("Unable to load DBS variable %s: %s" % (varname, e)) + +#Update fonts +@dataclass +class Font: + ff: str + fsf: str + psn: str + flg: int + cat: int + url: str + + +def decompress_font_list(flist): + prev_ff, prev_fsf, prev_flg, prev_cat = "", "", "0", "0" + for font in flist: + ff, fsf, psn, flg, cat, url = font.split(",") + if not ff: + ff = prev_ff + if not fsf: + fsf = prev_fsf + if not flg: + flg = prev_flg + if not cat: + cat = prev_cat + + if not psn: + psn = (ff + "-" + fsf).replace(" ", "") + elif psn == "a": + psn = ff.replace(" ", "") + + if not url: + url = "fs/" + psn + ".otf" + elif url == "a": + url = "gf/" + psn + ".otf" + + yield Font(ff, fsf, psn, int(flg), int(cat), url) + + prev_ff, prev_fsf, prev_flg, prev_cat = ff, fsf, flg, cat + +if '--fonts' in sys.argv: + for font in decompress_font_list(db["FNTS"]["list"]): + path = "rsrc/fonts/" + font.url + if not os.path.isfile(root + path): + print("Downloading " + font.url) + dl_file(path) + print("\n") + + #Delete any unused fonts + fonts_db=[root+'rsrc/fonts/'+font.url for font in decompress_font_list(db["FNTS"]["list"])] + + fonts_local=[_ for _ in glob.glob(root + 'rsrc/fonts/**/*', recursive=True) if re.match(root+r'rsrc/fonts/(.*)/*.(otf|ttc|ttf)',_)] + + for font_file in list(set(fonts_local)-set(fonts_db)): + print('Removing ' + font_file) + os.remove(font_file) + +if '--templates' in sys.argv: + templates_db=['file/' + ('psdshared' if _[4].startswith("https://i.imgur.com/") or _[4].startswith("https://imgur.com/") else 'pp-resources') +'/' + _[3] for _ in json.load(open(root+"papi/tpls.json"))['list']] + for template in templates_db: + path="https://f000.backblazeb2.com/" + template + outfn=root+"templates/"+template + download_file(path,outfn) + + + templates_local=[_ for _ in glob.glob(root + 'templates/file/**/*', recursive=True) if _.endswith(".psd")] + templates_db=[root+"templates/"+_ for _ in templates_db] + + for tpl in list(set(templates_local)-set(templates_db)): + print('Removing ' + tpl) + os.remove(tpl) + +def find_and_replace(file,find,replace): + with open(os.path.join(root,file),'r') as pp: + file1=pp.read() + file1=file1.replace(find,replace) + with open(os.path.join(root,file),'w') as pp: + pp.write(file1) + +#Allow any port to be used +find_and_replace('code/pp/pp.js','"\'$!|"))','"\'$!|"))||true') + +#Don't load Google Analytics +find_and_replace('index.html','//www.google-analytics.com/analytics.js','') +find_and_replace('index.html', '//www.googletagmanager.com', '#') + +#Allow the import of pictures of URLs (bypassing mirror.php) +find_and_replace('code/pp/pp.js','"mirror.php?url="+encodeURIComponent','') + +#Allow Dropbox to load from dropboxStorage.html +find_and_replace('code/storages/dropboxStorage.html', 'var redirectUri = window.location.href;', 'var redirectUri = "https://www.photopea.com/code/storages/dropboxStorage.html";') + +#Remove Facebook Pixel Domains +find_and_replace('index.html','https://connect.facebook.net','') + +find_and_replace('index.html','https://www.facebook.com','') + +#Redirect dynamic pages to static equivalent +find_and_replace('code/pp/pp.js','"&rsrc="','""') +find_and_replace('code/pp/pp.js','"templates/?type="','"templates/index.html?type="') +find_and_replace('code/pp/pp.js','"https://f000.backblazeb2.com/file/"', '"templates/file/"') + +# Having ? in static sites doesn't really work +#find_and_replace("templates/index.html",'sch.split("?");','sch.split("#");') diff --git a/_vendor/bin/tqdm b/_vendor/bin/tqdm new file mode 100755 index 0000000000000000000000000000000000000000..46369d044c256419b392820536c91fc7da96112d --- /dev/null +++ b/_vendor/bin/tqdm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515517b0a5d516e1dd5e6e74627a93c6099658c9a7c35197b3216288b3633793 +size 206 diff --git a/_vendor/certifi-2022.9.24.dist-info/INSTALLER b/_vendor/certifi-2022.9.24.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/certifi-2022.9.24.dist-info/LICENSE b/_vendor/certifi-2022.9.24.dist-info/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..774a2de59e702d02ac0c0ad1787be593aa82a109 --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/LICENSE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02f6c638f9fb84d06f7764c3ab085d8af7eda5b93c166da54312479077c6fb0 +size 1052 diff --git a/_vendor/certifi-2022.9.24.dist-info/METADATA b/_vendor/certifi-2022.9.24.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..ea3afa7f2e8b747fa77154fb9504d7ed5eed400b --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df73403a692a29309bdaed58b3c66d87b0015977c4b8b829fb980ba75c8affb0 +size 2911 diff --git a/_vendor/certifi-2022.9.24.dist-info/RECORD b/_vendor/certifi-2022.9.24.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..07070689ef6b7c95b7a384d51fcb57215c7b0180 --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f91e560858c98498f541c9642a63de23ae4780eb8ccaaa29670bf7360d0a4d +size 1015 diff --git a/_vendor/certifi-2022.9.24.dist-info/WHEEL b/_vendor/certifi-2022.9.24.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..3d683ae669fb5b566a3030c916eeb9883559052e --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0c04b9e8a8d42d977874ef4f5ee7f1d6542603afc82582b7459534b0a53fda +size 92 diff --git a/_vendor/certifi-2022.9.24.dist-info/top_level.txt b/_vendor/certifi-2022.9.24.dist-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c810a6667c70627f6e79468f59b4ce5d6caa19 --- /dev/null +++ b/_vendor/certifi-2022.9.24.dist-info/top_level.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cbb8bd409fb232eb90f6d235d81d7a44bea552730402453bffe723c345ebe5 +size 8 diff --git a/_vendor/certifi/__init__.py b/_vendor/certifi/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d776eaa347b46541727ad9174ec3b0d517db0e46 --- /dev/null +++ b/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e0e3206c434ab43d3b4ced85dcf92e7b74ebd67fede47518811e7c469ff98b +size 94 diff --git a/_vendor/certifi/__main__.py b/_vendor/certifi/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..80a919c61bd1253f10829dc030ea12d31132db83 --- /dev/null +++ b/_vendor/certifi/__main__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c410688fdd394d45812d118034e71fee88ba7beddd30fe1c1281bd3b232cd758 +size 243 diff --git a/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/_vendor/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..792e5ef47fd448390255808da2379c2942d9c327 --- /dev/null +++ b/_vendor/certifi/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbbac22057a99e9c8668257789583d543fbfcda2a9124cd6395e888cd631075 +size 261 diff --git a/_vendor/certifi/__pycache__/__main__.cpython-310.pyc b/_vendor/certifi/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb09fddac776764b589194845f5b0de9bfa2840d --- /dev/null +++ b/_vendor/certifi/__pycache__/__main__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136d38e437b2f4c2a1a13647e088232f30f24efe291e46ff2cb4096a946a00f5 +size 399 diff --git a/_vendor/certifi/__pycache__/core.cpython-310.pyc b/_vendor/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..436c7f4e53b28b3060277a63336aed7523f7532d --- /dev/null +++ b/_vendor/certifi/__pycache__/core.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8adc1d207e41b0243fbbb03a0933460e5a721a7d26a03f38fa41580a727097cc +size 1869 diff --git a/_vendor/certifi/cacert.pem b/_vendor/certifi/cacert.pem new file mode 100644 index 0000000000000000000000000000000000000000..b867db243b18c11bf93c4947a535833ae712ba90 --- /dev/null +++ b/_vendor/certifi/cacert.pem @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5f02716b7fa8be36d37d2b1a2783dd22ee7c80855f46d8b4684397f11754f2 +size 286370 diff --git a/_vendor/certifi/core.py b/_vendor/certifi/core.py new file mode 100644 index 0000000000000000000000000000000000000000..a6ba716e5a50b7103dada559629ecba314bc5196 --- /dev/null +++ b/_vendor/certifi/core.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9617b0cf4cc56f66f850bb10bab1259a5a18c10a1e7235b33ea63aecff13ee23 +size 4219 diff --git a/_vendor/certifi/py.typed b/_vendor/certifi/py.typed new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/INSTALLER b/_vendor/charset_normalizer-2.1.1.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/LICENSE b/_vendor/charset_normalizer-2.1.1.dist-info/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c1b6c4313e7af26389ef0c4af6a1933d8532da3d --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/LICENSE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb31a0c5a4fb09b8a4e32055d25c1e5f9c358a2752fef3cd720213d1ccfee241 +size 1070 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/METADATA b/_vendor/charset_normalizer-2.1.1.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..6da6d8cd85e4d2325c78d4e91bb237da26d12014 --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdf65d7683877513dfd4896fa6a8f096c7bbf633f958196c72d464ce8d74ac0 +size 11942 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/RECORD b/_vendor/charset_normalizer-2.1.1.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..71517e325d13e70cee12c0737df368fb348ce23b --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f324b649f10958dd2090150e7f4978bd1a76f31cbe52303ea01ac522d95836 +size 2562 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/WHEEL b/_vendor/charset_normalizer-2.1.1.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..e6d69e06b3cd0a8105e8a756bbc41c10ce651aef --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5e87e00dc87a84269cead8578b9e6462928e18a95f1f3373c9eef451a5bcc0 +size 92 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/entry_points.txt b/_vendor/charset_normalizer-2.1.1.dist-info/entry_points.txt new file mode 100644 index 0000000000000000000000000000000000000000..371a4249f48b7232d91bd196d68945785c34430e --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98a3c68818b5aff188167d29dae479df63f127e29905d70e1b81ac0d017ccfd +size 76 diff --git a/_vendor/charset_normalizer-2.1.1.dist-info/top_level.txt b/_vendor/charset_normalizer-2.1.1.dist-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0604d2c97c8f7f35d5d1f66df48be2aaa0abac9 --- /dev/null +++ b/_vendor/charset_normalizer-2.1.1.dist-info/top_level.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec04b2cde3ebf3fc6e65626c9ea263201b7257cbe1128d30042bf530f4518b74 +size 19 diff --git a/_vendor/charset_normalizer/__init__.py b/_vendor/charset_normalizer/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9c32f6a504a604ea60930275bdfe0964b1ab5b62 --- /dev/null +++ b/_vendor/charset_normalizer/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c68617f521c3a00a966caf9f7713d7cfbe358a9df955a877bf2f090e2632275 +size 1790 diff --git a/_vendor/charset_normalizer/__pycache__/__init__.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eac6681d7aa8e55e769dbcb122ceb18fb194c3c --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54d85410d77f6a957afbe8b0224a34b21b44c3c13945ecc1f0b23f98933276d +size 1695 diff --git a/_vendor/charset_normalizer/__pycache__/api.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/api.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be1ea05e375954a5f584029a6d740c8b1a1f0970 --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/api.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c80afb4cbab681962e5c91fb791a61df5a2f9f7060425c4c217d08e5ef9c926 +size 11031 diff --git a/_vendor/charset_normalizer/__pycache__/cd.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/cd.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ba4ccaca9a6a7ed8759f622da8dc8cf18024d9b --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/cd.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c327b631e0e928054643640444eb4888828fae0e8c032e9961128cddae597dfa +size 8596 diff --git a/_vendor/charset_normalizer/__pycache__/constant.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/constant.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef5f38ea840f6b1f7f1f795c554ea198c3ce2caa --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/constant.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0d01dbae04932057e8f4170a26df9de8620bac4debfb29874d32297c17e467 +size 17419 diff --git a/_vendor/charset_normalizer/__pycache__/legacy.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b14b57214c70bbb59b6344859faf34267fb98ebf --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/legacy.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864a64ada3c977ce63867c1e923efa5b6af1c8153504825593e2e6e4ab45c395 +size 2875 diff --git a/_vendor/charset_normalizer/__pycache__/md.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/md.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edb299895ea6c9504f803347e8c18754ae271db3 --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/md.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2edd07228785e84c7ad273e71b7e3d37717036d20bd2f48021fab407ad071d +size 13935 diff --git a/_vendor/charset_normalizer/__pycache__/models.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a4985f7e52602872839527a13290efa6550021d9 --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/models.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0f7dd4917819f4bba75b8de36e479ce9318f23cb6df677c88b5a990970f708b +size 13234 diff --git a/_vendor/charset_normalizer/__pycache__/utils.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f84de5bad2b30c3dfbd02fc9cd8b99cb614ead4 --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/utils.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477f8bd1e97700ccd9aee09be835355408d801a5d937cfac16a87863b6df0ac8 +size 8883 diff --git a/_vendor/charset_normalizer/__pycache__/version.cpython-310.pyc b/_vendor/charset_normalizer/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..abfc18ee7155220d71bd597abc8a00ce8570840b --- /dev/null +++ b/_vendor/charset_normalizer/__pycache__/version.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24af15c3935b5cc75181120a19cd35bc90a450fcab1ac67dc670c2ac43ad79e4 +size 243 diff --git a/_vendor/charset_normalizer/api.py b/_vendor/charset_normalizer/api.py new file mode 100644 index 0000000000000000000000000000000000000000..388da41ffecdad12b49f8e9530c5363f9cead5ea --- /dev/null +++ b/_vendor/charset_normalizer/api.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae54f9a300c6e3a6a8441cf8df2adcb2d662b9d94d1339405442033f432e9e1 +size 19191 diff --git a/_vendor/charset_normalizer/assets/__init__.py b/_vendor/charset_normalizer/assets/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..26bdcb804dbadefefc1bd3df6abc0e0705ee2797 --- /dev/null +++ b/_vendor/charset_normalizer/assets/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb69a90f69121cd85146da6c3657c34e4ef925db9fdeb8a677c0f7f948055ae +size 15222 diff --git a/_vendor/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc b/_vendor/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e4630fa037fc0ce2dd34e35892e62a614d6c6f8 --- /dev/null +++ b/_vendor/charset_normalizer/assets/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278ad8efcb66065e90afd695389f2b0caf2dcfc85a848d87b8bac64186ab0dd1 +size 7710 diff --git a/_vendor/charset_normalizer/cd.py b/_vendor/charset_normalizer/cd.py new file mode 100644 index 0000000000000000000000000000000000000000..b5361d68c0a78e1a50b52764422347c2c95575ba --- /dev/null +++ b/_vendor/charset_normalizer/cd.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f17646e7e1ccb4899178d8a4dbd4589622aa8aa1bbb3fdf0e31b073a24c3417 +size 10811 diff --git a/_vendor/charset_normalizer/cli/__init__.py b/_vendor/charset_normalizer/cli/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc b/_vendor/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0740e5b936765f40a511c54cefe0e49c6ccba699 --- /dev/null +++ b/_vendor/charset_normalizer/cli/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184c9848703aa0fe879e0f2b3aac4c3e1ef39a321230f2128a6b6f454ed7b49e +size 163 diff --git a/_vendor/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc b/_vendor/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8559169b0a25eeb078b92b0f50d8ef094c32b2f8 --- /dev/null +++ b/_vendor/charset_normalizer/cli/__pycache__/normalizer.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3a7de36da64030b41ed8f8ae2f9a2bd4948e2155a3f4c3563d4002679d6e8b +size 6253 diff --git a/_vendor/charset_normalizer/cli/normalizer.py b/_vendor/charset_normalizer/cli/normalizer.py new file mode 100644 index 0000000000000000000000000000000000000000..beb5b64ca382da008dd942b6f21d9b47ee6a5b61 --- /dev/null +++ b/_vendor/charset_normalizer/cli/normalizer.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1660f545778ca51060fe68d1d0c68984d529336a99f30cf69de004ec06b205e8 +size 9521 diff --git a/_vendor/charset_normalizer/constant.py b/_vendor/charset_normalizer/constant.py new file mode 100644 index 0000000000000000000000000000000000000000..97e67bb597caf1066e224f2fa980721c72b08582 --- /dev/null +++ b/_vendor/charset_normalizer/constant.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36053ea58f091f66bd964553f282b000598851834a3ae481c19805f4cae53423 +size 19157 diff --git a/_vendor/charset_normalizer/legacy.py b/_vendor/charset_normalizer/legacy.py new file mode 100644 index 0000000000000000000000000000000000000000..7afc2cec0bb94aac2f6baadbdf8099d3d4fa98ac --- /dev/null +++ b/_vendor/charset_normalizer/legacy.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca7993adb3f1dd61053f25bdc2f597ce8d8d828942f5df693dfe75deafc8228 +size 3384 diff --git a/_vendor/charset_normalizer/md.py b/_vendor/charset_normalizer/md.py new file mode 100644 index 0000000000000000000000000000000000000000..0846030c805a5d74791d6d68b4970f3be9172b12 --- /dev/null +++ b/_vendor/charset_normalizer/md.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a593fc215a520bcd83f08340f537ffcb48a3252448f94227719bcb75f4d611de +size 17642 diff --git a/_vendor/charset_normalizer/models.py b/_vendor/charset_normalizer/models.py new file mode 100644 index 0000000000000000000000000000000000000000..55c3d350e2f9b2d11432f85dc55305640446c8aa --- /dev/null +++ b/_vendor/charset_normalizer/models.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baf1876548b4c42371040555eaf132cd01bcb28eb2c2d8e5accdcf8e04093d2 +size 13167 diff --git a/_vendor/charset_normalizer/py.typed b/_vendor/charset_normalizer/py.typed new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/charset_normalizer/utils.py b/_vendor/charset_normalizer/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..c416d241bd6f7438807e097ade68992dce39445c --- /dev/null +++ b/_vendor/charset_normalizer/utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca43b39e1700787f8e0cb05626e23bb759dbc1ad5201f37f6c36130891b28785 +size 11771 diff --git a/_vendor/charset_normalizer/version.py b/_vendor/charset_normalizer/version.py new file mode 100644 index 0000000000000000000000000000000000000000..e7d357adeb15511a4c73782065bb451bcfa8acb2 --- /dev/null +++ b/_vendor/charset_normalizer/version.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde876300dea4bffc86a395e3d0c4a066970eb36810ef3d894b744831808a23c +size 79 diff --git a/_vendor/idna-3.4.dist-info/INSTALLER b/_vendor/idna-3.4.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/idna-3.4.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/idna-3.4.dist-info/LICENSE.md b/_vendor/idna-3.4.dist-info/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..604678ad6654d82509dbf3aebb6ae5039674800c --- /dev/null +++ b/_vendor/idna-3.4.dist-info/LICENSE.md @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d6e4d940bd24dbe7b9645cde19a9792cc51db7ae0d5acd301ac860caa3e836 +size 1523 diff --git a/_vendor/idna-3.4.dist-info/METADATA b/_vendor/idna-3.4.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..702291a7591fec67485358b21457f9409ddbe4b5 --- /dev/null +++ b/_vendor/idna-3.4.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a2d27fd3054bba01dbaa59876869ae0ede269d1425273edeba5ffdebe9e030 +size 9830 diff --git a/_vendor/idna-3.4.dist-info/RECORD b/_vendor/idna-3.4.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..9195a72ff4095fe1e995655c190ed9a88d77d9c3 --- /dev/null +++ b/_vendor/idna-3.4.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c245f578810c390792adac787dcec83f2b381b3e1605b7afc5de6cbbed4571c +size 1378 diff --git a/_vendor/idna-3.4.dist-info/WHEEL b/_vendor/idna-3.4.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..8088b0310e4515c7c30cea2d9860868bb359a1f0 --- /dev/null +++ b/_vendor/idna-3.4.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e137ca201ff1bbed386dcda22b3ebfcc5b7e80414410353fdf51c686acce084f +size 81 diff --git a/_vendor/idna/__init__.py b/_vendor/idna/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7d6c393318f24aad3ba4580aa4fcc2eb9a982561 --- /dev/null +++ b/_vendor/idna/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28940dd5e401afc8882b948aac9e3b957bf11b4049ecb9b7f16e334f4bfff259 +size 849 diff --git a/_vendor/idna/__pycache__/__init__.cpython-310.pyc b/_vendor/idna/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71a6e0fdec015b0cdb0c7b356042aabbed23a3f9 --- /dev/null +++ b/_vendor/idna/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1d9152cf9a0ac106746a18cb133eef82dc0f7afa3e536a9dd9851219b41625 +size 804 diff --git a/_vendor/idna/__pycache__/codec.cpython-310.pyc b/_vendor/idna/__pycache__/codec.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aca287842ce257d653774f6ef114253710f17f81 --- /dev/null +++ b/_vendor/idna/__pycache__/codec.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697be527a07012e02cde051f35a54d20d62e0d5bbe539f303e30564056323690 +size 2775 diff --git a/_vendor/idna/__pycache__/compat.cpython-310.pyc b/_vendor/idna/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7524de3153a73ff5ceb6291a0185c16f0436d6b --- /dev/null +++ b/_vendor/idna/__pycache__/compat.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22b6ba0997bde27e0de07b3615f9d6f48bf66e61d7e4c56f0a8cee5af7ecd9c +size 704 diff --git a/_vendor/idna/__pycache__/core.cpython-310.pyc b/_vendor/idna/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dfa8307847358f5b663282bb6f93ba6e1839bbc --- /dev/null +++ b/_vendor/idna/__pycache__/core.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca82527b44b31314b4d13ddd027047b1eee8263b4c7b63758e9eec6df2f0939 +size 9661 diff --git a/_vendor/idna/__pycache__/idnadata.cpython-310.pyc b/_vendor/idna/__pycache__/idnadata.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..961032944594d5497cb1a505cfb4483084d950ee --- /dev/null +++ b/_vendor/idna/__pycache__/idnadata.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963222e081d326e7d8f8e1373a9295714b5836b8320be84da3504468c50a28ee +size 38340 diff --git a/_vendor/idna/__pycache__/intranges.cpython-310.pyc b/_vendor/idna/__pycache__/intranges.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d091126b58772d5696623245495fc7cef6d3bad8 --- /dev/null +++ b/_vendor/idna/__pycache__/intranges.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd8dbdc489577131699aabd3f7d0dc69251d9976fdde23ec4e4137bf27a4443 +size 1941 diff --git a/_vendor/idna/__pycache__/package_data.cpython-310.pyc b/_vendor/idna/__pycache__/package_data.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d66966c9544e1750f2f7cda668edd7b54331c66e --- /dev/null +++ b/_vendor/idna/__pycache__/package_data.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8811b509cd91ec752f8a0c81297c4958d5c3c8746bcca8ffc51ef003e4b99c16 +size 168 diff --git a/_vendor/idna/__pycache__/uts46data.cpython-310.pyc b/_vendor/idna/__pycache__/uts46data.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e94a018995f38c0c6aefa08c6a850ac5cd90f49 --- /dev/null +++ b/_vendor/idna/__pycache__/uts46data.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5d8e9eb0068bfab0b9cd1be75f135f4d39c752d2563dbf5ed4940cbb477604 +size 152355 diff --git a/_vendor/idna/codec.py b/_vendor/idna/codec.py new file mode 100644 index 0000000000000000000000000000000000000000..07d84c63687ca7c4b912f790ffa658dec604d9b0 --- /dev/null +++ b/_vendor/idna/codec.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5cb9a1d29faabcad293f7fed4ae51a49479dfd4348adabf42e9c48ce2c6b6f +size 3374 diff --git a/_vendor/idna/compat.py b/_vendor/idna/compat.py new file mode 100644 index 0000000000000000000000000000000000000000..f30387a2b8ef78d1df9d984adc3bf626000e7cfb --- /dev/null +++ b/_vendor/idna/compat.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fb0e114313e02570f5da03defc91857f345f5f4fc2a168501b3b816b05304e +size 321 diff --git a/_vendor/idna/core.py b/_vendor/idna/core.py new file mode 100644 index 0000000000000000000000000000000000000000..979c04b57194e6cebdb6772cf41b3663a3462190 --- /dev/null +++ b/_vendor/idna/core.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49c5c8702b39310529fb47fa02135da806edde56ec74573771a2598869ddb83 +size 12950 diff --git a/_vendor/idna/idnadata.py b/_vendor/idna/idnadata.py new file mode 100644 index 0000000000000000000000000000000000000000..0c620740b516f516ccb03743824376f008009920 --- /dev/null +++ b/_vendor/idna/idnadata.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c548ea2aa88957c1e8fd7cc1a40b6fe4916854f4aea4af92517bed8f28141eac +size 44375 diff --git a/_vendor/idna/intranges.py b/_vendor/idna/intranges.py new file mode 100644 index 0000000000000000000000000000000000000000..9a13dc8824f12cb36dbfbd744ab96de478607e9e --- /dev/null +++ b/_vendor/idna/intranges.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601af87d162e587ee44ca4b6b579458ccdb8645d4f76f722afe6b2c278889ea8 +size 1881 diff --git a/_vendor/idna/package_data.py b/_vendor/idna/package_data.py new file mode 100644 index 0000000000000000000000000000000000000000..d6cf8bcd0da604b7c2438c09b3088041bee3fa71 --- /dev/null +++ b/_vendor/idna/package_data.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf8c7273997f0f238c6ad23a7399c4ccc696f9943b2ae28e55cb1433955ad91 +size 21 diff --git a/_vendor/idna/py.typed b/_vendor/idna/py.typed new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/idna/uts46data.py b/_vendor/idna/uts46data.py new file mode 100644 index 0000000000000000000000000000000000000000..ad8089a4eb41757f17e4a76e1de59895a117db3e --- /dev/null +++ b/_vendor/idna/uts46data.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef8d9536e2ce7cfee012f39d0c71dd0d9c3d17eff802300323cd634879425d7 +size 206539 diff --git a/_vendor/requests-2.28.1.dist-info/INSTALLER b/_vendor/requests-2.28.1.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/requests-2.28.1.dist-info/LICENSE b/_vendor/requests-2.28.1.dist-info/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..92e353b460ff5d1243e15e8e0c62307e3ffb2ef9 --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/LICENSE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e8a9bcec8067104652c168685ab0931e7868f9c8284b66f5ae6edae5f1130b +size 10142 diff --git a/_vendor/requests-2.28.1.dist-info/METADATA b/_vendor/requests-2.28.1.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..ab3d83aade99854eb4cdb10c0da2f839279cb838 --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8358489b8f59baa5ed38a5f5d28f6fef8a454da8b8647883b531b591681cd5 +size 4641 diff --git a/_vendor/requests-2.28.1.dist-info/RECORD b/_vendor/requests-2.28.1.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..9154f687d1882d7230f6905fe65c1f18b20c2fac --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2ccb61fbecbdbd5b9206e5a63b3d1a15704bfe2414ebaf7a9970c8de91ac90 +size 2851 diff --git a/_vendor/requests-2.28.1.dist-info/REQUESTED b/_vendor/requests-2.28.1.dist-info/REQUESTED new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/requests-2.28.1.dist-info/WHEEL b/_vendor/requests-2.28.1.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..e6d69e06b3cd0a8105e8a756bbc41c10ce651aef --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5e87e00dc87a84269cead8578b9e6462928e18a95f1f3373c9eef451a5bcc0 +size 92 diff --git a/_vendor/requests-2.28.1.dist-info/top_level.txt b/_vendor/requests-2.28.1.dist-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..918913b23acbe86ae86946383fce5aacc6fbb6fb --- /dev/null +++ b/_vendor/requests-2.28.1.dist-info/top_level.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc4959877dbe6b6c63a8eb1bfe3bfb545fa8fe5b28b1b2c13e4a7c1c0d1c4d4 +size 9 diff --git a/_vendor/requests/__init__.py b/_vendor/requests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..65bb70a4b54d2d417f9b8ec01bbe95dad842f545 --- /dev/null +++ b/_vendor/requests/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b62b48e754fe824ab4f9d5272d172881d177c8f07f4db7b12acc44400f8e208 +size 4972 diff --git a/_vendor/requests/__pycache__/__init__.cpython-310.pyc b/_vendor/requests/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..476bb9be6280add6c575c9b6730ab49bb073ffef --- /dev/null +++ b/_vendor/requests/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7529287e76c380b30b5cabd6821557e638fdff0f29f0d1b67e40e31ec7b78bd +size 3850 diff --git a/_vendor/requests/__pycache__/__version__.cpython-310.pyc b/_vendor/requests/__pycache__/__version__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07d024ac13609394670455dd6e7b45d4fbefb624 --- /dev/null +++ b/_vendor/requests/__pycache__/__version__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe480cb0e3d250e44b755b42b6a6837a4cfdc4dc49c639a15e0cfe5d151733b +size 512 diff --git a/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc b/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e95517d0ec129e1a518d211031744f979c338a29 --- /dev/null +++ b/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dfb41994f7f5376b0f76ca9bb288bb5ba8d53413c678544411c7d085469b49 +size 1522 diff --git a/_vendor/requests/__pycache__/adapters.cpython-310.pyc b/_vendor/requests/__pycache__/adapters.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09cbb1a8f36b70161f37385bf83d39be3aec191a --- /dev/null +++ b/_vendor/requests/__pycache__/adapters.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:011565777c2364460258fb977a1733b81ca01898e3280fd9ab6207f9b4c870f7 +size 16784 diff --git a/_vendor/requests/__pycache__/api.cpython-310.pyc b/_vendor/requests/__pycache__/api.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d891e93272780a952064ffb33f2ab835991007c --- /dev/null +++ b/_vendor/requests/__pycache__/api.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b2390e0ec8402d5f0dba75601b8313de98b9039ea3629db0cbf051b6cd4b00 +size 6611 diff --git a/_vendor/requests/__pycache__/auth.cpython-310.pyc b/_vendor/requests/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa2610a4a4a6c9a8d42f38e739974b2559acc283 --- /dev/null +++ b/_vendor/requests/__pycache__/auth.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088897815e2328b4f11bba75a9835ef9661cf3fa936c289aae3a9938baa9e287 +size 8079 diff --git a/_vendor/requests/__pycache__/certs.cpython-310.pyc b/_vendor/requests/__pycache__/certs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ff2bca0c5f023cbfa4a02977504a32a6f075997 --- /dev/null +++ b/_vendor/requests/__pycache__/certs.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9823df7315e976718602d6c32db73605e3343af3663de4c0a39f1af8e8dd709 +size 584 diff --git a/_vendor/requests/__pycache__/compat.cpython-310.pyc b/_vendor/requests/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb0748b4f3e64cd7314c44e1332bb2f421200d30 --- /dev/null +++ b/_vendor/requests/__pycache__/compat.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dc8c729f98d4bb63ba7fd8a499edd61408bdab2c316eb935dbc7aa457a87c4 +size 1481 diff --git a/_vendor/requests/__pycache__/cookies.cpython-310.pyc b/_vendor/requests/__pycache__/cookies.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37eae902737a8bb7832a5891c18dfaed06d164a3 --- /dev/null +++ b/_vendor/requests/__pycache__/cookies.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03604735877472d6f635fb29d573a3fa5f45cdf3a0519dd5f448105e7c37aaa +size 18654 diff --git a/_vendor/requests/__pycache__/exceptions.cpython-310.pyc b/_vendor/requests/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c4eccd59583f8c0913621af56be836fe540caeb --- /dev/null +++ b/_vendor/requests/__pycache__/exceptions.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc7e51305eebef4a67b98f656d54d394f9e2f68eefab041dd94ff7741812f19 +size 5686 diff --git a/_vendor/requests/__pycache__/help.cpython-310.pyc b/_vendor/requests/__pycache__/help.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3bf88a0dc69bf8fb8e7ef075c879bffe6688b59b --- /dev/null +++ b/_vendor/requests/__pycache__/help.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b693b897e1436de8af8621284630ae7f47234e27a097b05230349dbae0c44c +size 2806 diff --git a/_vendor/requests/__pycache__/hooks.cpython-310.pyc b/_vendor/requests/__pycache__/hooks.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85356fb3cdf6976707327f9de803597e065f40a1 --- /dev/null +++ b/_vendor/requests/__pycache__/hooks.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e572f2a51fb343fb001b8895b8b65f98b06eb70ec1f6ba3161e459edf2b584e +size 951 diff --git a/_vendor/requests/__pycache__/models.cpython-310.pyc b/_vendor/requests/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c91872af5018c29fc4695d7764f25dc13adaa2a9 --- /dev/null +++ b/_vendor/requests/__pycache__/models.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ea0546caf21a45334427dd792b75ec01aaa91b6aed4a957cc10acf36cee689 +size 24152 diff --git a/_vendor/requests/__pycache__/packages.cpython-310.pyc b/_vendor/requests/__pycache__/packages.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f93f721206d2708e8052239ddd2550229ed0ff45 --- /dev/null +++ b/_vendor/requests/__pycache__/packages.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb116b8c898957d292b07573282f66656e440ba759f1528cb594a003b9c9b6bb +size 678 diff --git a/_vendor/requests/__pycache__/sessions.cpython-310.pyc b/_vendor/requests/__pycache__/sessions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66567c9735235f2067e271378238f0525a8cc860 --- /dev/null +++ b/_vendor/requests/__pycache__/sessions.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c228a8663c4d7eaec864f8682468d25ae84d8358f609c07ac87e595e078fa3eb +size 19543 diff --git a/_vendor/requests/__pycache__/status_codes.cpython-310.pyc b/_vendor/requests/__pycache__/status_codes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20e56a1aaf16e3581a639e7a771225cefdf0078d --- /dev/null +++ b/_vendor/requests/__pycache__/status_codes.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e509ba1798f029980a2f92630b54a75ba34eee0e58e9a9f318fbf0c42409ec8 +size 4630 diff --git a/_vendor/requests/__pycache__/structures.cpython-310.pyc b/_vendor/requests/__pycache__/structures.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e12f8c87e6aba1aef0a3355fa5a3ca750a80d06 --- /dev/null +++ b/_vendor/requests/__pycache__/structures.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39e98e3b1267ed2da43805d65636891abf6af3b0c59576bc60acff0ed585183 +size 4395 diff --git a/_vendor/requests/__pycache__/utils.cpython-310.pyc b/_vendor/requests/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..378b37a477ed45d3de68f526f532969fa5b19f62 --- /dev/null +++ b/_vendor/requests/__pycache__/utils.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e76a38e40659273d4dbdf721a5d43cfe6f469cf0c674603ae6a22453ccdd732 +size 24281 diff --git a/_vendor/requests/__version__.py b/_vendor/requests/__version__.py new file mode 100644 index 0000000000000000000000000000000000000000..462228bf9b7cf7f3d89a3793f420927a32d59035 --- /dev/null +++ b/_vendor/requests/__version__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c955adde7f6c91c9e60c872ef21e74728e3a673530f2919b04e12a7d8ab042e +size 440 diff --git a/_vendor/requests/_internal_utils.py b/_vendor/requests/_internal_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..a9a2643cd2f7fbf4a122840870b6121956028b58 --- /dev/null +++ b/_vendor/requests/_internal_utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6923e5178b8386d7cac446b264927b2a4031b68ae67937e9c0a4814b0b66014c +size 1397 diff --git a/_vendor/requests/adapters.py b/_vendor/requests/adapters.py new file mode 100644 index 0000000000000000000000000000000000000000..ad543e385862228e3549e5a6bfd2dcb082e0d38e --- /dev/null +++ b/_vendor/requests/adapters.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b049c71a5e26273e101c14fc8c6e9b53968f8a752d7681f7048b802334fe5fbe +size 21287 diff --git a/_vendor/requests/api.py b/_vendor/requests/api.py new file mode 100644 index 0000000000000000000000000000000000000000..fad3b843662e69c674dca5dd5543bfc1998df01d --- /dev/null +++ b/_vendor/requests/api.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772be40dde62b42f73da0d301e5fd87c3d727fa630a4658b3bbffff1edb59e4b +size 6377 diff --git a/_vendor/requests/auth.py b/_vendor/requests/auth.py new file mode 100644 index 0000000000000000000000000000000000000000..f3db6e5f4fa8f72f5d22d1a58cfa91a1fc9cd368 --- /dev/null +++ b/_vendor/requests/auth.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e1cb955c7d8fcaca57985f480c9c3f60293928254f3efb474b73eea09b6c41 +size 10187 diff --git a/_vendor/requests/certs.py b/_vendor/requests/certs.py new file mode 100644 index 0000000000000000000000000000000000000000..657a41b995677f8c18dc3a3024164ceb68547a2c --- /dev/null +++ b/_vendor/requests/certs.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d49be35d009efea35054f2b2cd23145854eb1b2df1cb442ea7f2f04bf6de0c +size 429 diff --git a/_vendor/requests/compat.py b/_vendor/requests/compat.py new file mode 100644 index 0000000000000000000000000000000000000000..54794c0d0a7ccac9bad6e34367186d342ddc33f1 --- /dev/null +++ b/_vendor/requests/compat.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb19ed54e4841c632b9fb14daffdf61046a6d5934074f45d484d77ff2687cd39 +size 1451 diff --git a/_vendor/requests/cookies.py b/_vendor/requests/cookies.py new file mode 100644 index 0000000000000000000000000000000000000000..1c7e251ef2a1ccedce7269908a149490dcafeee1 --- /dev/null +++ b/_vendor/requests/cookies.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903de43447028fe9b16ed7f97c9b12693f3a786a046290f75f4092829ce5ec13 +size 18560 diff --git a/_vendor/requests/exceptions.py b/_vendor/requests/exceptions.py new file mode 100644 index 0000000000000000000000000000000000000000..9ff172afd6ad75b4bcb175c70a77aa7aef6ffae8 --- /dev/null +++ b/_vendor/requests/exceptions.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1bde1417255634d1c6145db95a4ef866cc60c203da09a374b7cd12a36923f5 +size 3811 diff --git a/_vendor/requests/help.py b/_vendor/requests/help.py new file mode 100644 index 0000000000000000000000000000000000000000..99cfcfd53a3708c781abadcf9aaf6ffd581d9217 --- /dev/null +++ b/_vendor/requests/help.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f5f977f1fb5ddf3c6830017a386a1a097d075545453b79066898bcbdcfcc84 +size 3875 diff --git a/_vendor/requests/hooks.py b/_vendor/requests/hooks.py new file mode 100644 index 0000000000000000000000000000000000000000..7da4d16378e817e6843a74ee111dd22b370755f8 --- /dev/null +++ b/_vendor/requests/hooks.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2bb2b221c0dfd57951f702057148c7cdc8ac3a6ec1f37d45c4d482fdbc7ed4 +size 733 diff --git a/_vendor/requests/models.py b/_vendor/requests/models.py new file mode 100644 index 0000000000000000000000000000000000000000..58094bd6be5a3fa89879592146a53e9ee8452f90 --- /dev/null +++ b/_vendor/requests/models.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a257188e765873a5b668c6eb763a12ada58941ed65b888741c7ea495993e07e +size 35222 diff --git a/_vendor/requests/packages.py b/_vendor/requests/packages.py new file mode 100644 index 0000000000000000000000000000000000000000..8eb839bbe8deb758c558205363da9bb83928a320 --- /dev/null +++ b/_vendor/requests/packages.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d782ff852487336484e6bf4bc40408568f85bee4218220dfe4b2f811d7b0efb +size 957 diff --git a/_vendor/requests/sessions.py b/_vendor/requests/sessions.py new file mode 100644 index 0000000000000000000000000000000000000000..893f34d49b682489eb6c2bfffdd7f0babde7dcbb --- /dev/null +++ b/_vendor/requests/sessions.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294a8971144ba2f35e7d4b3b49c39749454271f49ac93156b5b889ee03929532 +size 30180 diff --git a/_vendor/requests/status_codes.py b/_vendor/requests/status_codes.py new file mode 100644 index 0000000000000000000000000000000000000000..a0d3632a91dea5e679b79ca23d89a88c8e81b9ac --- /dev/null +++ b/_vendor/requests/status_codes.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f1e64f9b87fbfba29ad473e611fd5426eded557e35e8b627dba96de8fa8fc8 +size 4235 diff --git a/_vendor/requests/structures.py b/_vendor/requests/structures.py new file mode 100644 index 0000000000000000000000000000000000000000..2a6a47a0187fd67cdd8aec94b40487123a495aac --- /dev/null +++ b/_vendor/requests/structures.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f886e6855cf4e92fb968f499b94b6167afba0fd5ce8d1b935c739a6d8d38d573 +size 2912 diff --git a/_vendor/requests/utils.py b/_vendor/requests/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..268962301f0f3fd38537ccd9f6ac53a4afc0d172 --- /dev/null +++ b/_vendor/requests/utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fc2cf9bb0a23d10797b8f6ef28bee871733c12ae96d3e077b1df3eb513a162 +size 33228 diff --git a/_vendor/tqdm-4.64.1.dist-info/INSTALLER b/_vendor/tqdm-4.64.1.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/tqdm-4.64.1.dist-info/LICENCE b/_vendor/tqdm-4.64.1.dist-info/LICENCE new file mode 100644 index 0000000000000000000000000000000000000000..fe1fe526e94bcd90665322f4dbbc77813e61d447 --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/LICENCE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fc1785a8f2a200a3124d703d49550601b7741ccffc861713c2ddaa07a537dd +size 2006 diff --git a/_vendor/tqdm-4.64.1.dist-info/METADATA b/_vendor/tqdm-4.64.1.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..61d2ef264891d002ec4534d0b9b3761484b41e7d --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec4d1f32e54e815f5691d1fe7ac0821f4d10f75142c41768147e3aeaa6c0de9 +size 57320 diff --git a/_vendor/tqdm-4.64.1.dist-info/RECORD b/_vendor/tqdm-4.64.1.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..003442c8b20cac3e8fb6937bbef27390b82e9e2b --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206f4977c260c57f1a798a637b08cad19edf09ce93feb9eed9713d4b2c23a0fa +size 4736 diff --git a/_vendor/tqdm-4.64.1.dist-info/REQUESTED b/_vendor/tqdm-4.64.1.dist-info/REQUESTED new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/tqdm-4.64.1.dist-info/WHEEL b/_vendor/tqdm-4.64.1.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..380e76f5c49ac49ee155afb4cce8ee144734855c --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd8f4c406bf26650a3299b3ef62b464600b48cfe7fb04159866e5797c765478 +size 110 diff --git a/_vendor/tqdm-4.64.1.dist-info/entry_points.txt b/_vendor/tqdm-4.64.1.dist-info/entry_points.txt new file mode 100644 index 0000000000000000000000000000000000000000..51a068f1ca141043804164ee4f2094a5bcc7a2bd --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e2421fb522dd9ca1e8cd7a1383a1b19d6853b5ad31709f6eda3206118edbd6 +size 39 diff --git a/_vendor/tqdm-4.64.1.dist-info/top_level.txt b/_vendor/tqdm-4.64.1.dist-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..2412371f0080efdeefb527e28d21918a92d9b132 --- /dev/null +++ b/_vendor/tqdm-4.64.1.dist-info/top_level.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b89424d7e673d02dd79b3b254462c2fa8c123522f46e4f30646b98c6333523 +size 5 diff --git a/_vendor/tqdm/__init__.py b/_vendor/tqdm/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..3e26378cb5eeda85c7b3eed7e1b99648f1a3de84 --- /dev/null +++ b/_vendor/tqdm/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e27b31c8a804cadc53a28ffdfae5e31cbb5d543e68a398314aa2097bd9f1e9e +size 1639 diff --git a/_vendor/tqdm/__main__.py b/_vendor/tqdm/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..46a54a0afc2465ab7d8387db26efd6a556a3be2f --- /dev/null +++ b/_vendor/tqdm/__main__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8b7d7846a845059d7a3107143f11131f63c5511d669b44085b15ec5e3d2279 +size 30 diff --git a/_vendor/tqdm/__pycache__/__init__.cpython-310.pyc b/_vendor/tqdm/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2f4927bec2ac1ccbc08dcf27d20dca51d95be17 --- /dev/null +++ b/_vendor/tqdm/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c0d82934081861f2321357c638443d701302d01204f14087b78ec22aa598e0 +size 1529 diff --git a/_vendor/tqdm/__pycache__/__main__.cpython-310.pyc b/_vendor/tqdm/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da3567e39dac05eec9868a1bafcb4fd5da66118f --- /dev/null +++ b/_vendor/tqdm/__pycache__/__main__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c8a3f4b1ed3ae471d9b8a1f4ae5fea661e339d35361656515f9747bd792165 +size 185 diff --git a/_vendor/tqdm/__pycache__/_dist_ver.cpython-310.pyc b/_vendor/tqdm/__pycache__/_dist_ver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42e5dd6ecc8e98f291747d043ec9ae05b8f08d65 --- /dev/null +++ b/_vendor/tqdm/__pycache__/_dist_ver.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41ef7ec9ece8be1c342a8d85784f16d0dffc9c48c510c936bf96cb19983df0b +size 168 diff --git a/_vendor/tqdm/__pycache__/_main.cpython-310.pyc b/_vendor/tqdm/__pycache__/_main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..915659263bb190791d3b36adf56d8344f2d5aec4 --- /dev/null +++ b/_vendor/tqdm/__pycache__/_main.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5500924ad38f04a902d89970c77796593f3b809478070b6443469e9e7c0540 +size 419 diff --git a/_vendor/tqdm/__pycache__/_monitor.cpython-310.pyc b/_vendor/tqdm/__pycache__/_monitor.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e73620f155c05ad0cf43265892a0f310913e7b9 --- /dev/null +++ b/_vendor/tqdm/__pycache__/_monitor.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20eb211a7f588fbd42dc4fd080a65131445b6ac1a0d53e8918220d82851451b9 +size 2784 diff --git a/_vendor/tqdm/__pycache__/_tqdm.cpython-310.pyc b/_vendor/tqdm/__pycache__/_tqdm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc1bdfa772c2c0bc50c0c8aca0c6be4c98b90c30 --- /dev/null +++ b/_vendor/tqdm/__pycache__/_tqdm.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb3e509d713eb2fac51178c4239dea8b715dc0353db44d324469ec7d7291675 +size 414 diff --git a/_vendor/tqdm/__pycache__/_tqdm_gui.cpython-310.pyc b/_vendor/tqdm/__pycache__/_tqdm_gui.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d75a05fad0d7e90e53fca0913418387916efc86 --- /dev/null +++ b/_vendor/tqdm/__pycache__/_tqdm_gui.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471cd08652218b4c3b4564a96da00a7faffa32a0797d26876d9c6cab499ec09f +size 427 diff --git a/_vendor/tqdm/__pycache__/_tqdm_notebook.cpython-310.pyc b/_vendor/tqdm/__pycache__/_tqdm_notebook.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc413bd6f47d433bf1ff262f6d6b0d30c1b6238c --- /dev/null +++ b/_vendor/tqdm/__pycache__/_tqdm_notebook.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb8c83741ee3859f6fe818c77cd335e0eafa5049ea4fdd9c28b17414b84165f +size 447 diff --git a/_vendor/tqdm/__pycache__/_tqdm_pandas.cpython-310.pyc b/_vendor/tqdm/__pycache__/_tqdm_pandas.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0a27308ca3c23ccc0dde0d71148d8f9875bea9d --- /dev/null +++ b/_vendor/tqdm/__pycache__/_tqdm_pandas.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61f538eced84aaf67e5d7a221528d04bc1f0b08478a8a2209688f5ff478e7aa +size 935 diff --git a/_vendor/tqdm/__pycache__/_utils.cpython-310.pyc b/_vendor/tqdm/__pycache__/_utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09f0ae4ccb723559d87784640a9646e1afe1da3f --- /dev/null +++ b/_vendor/tqdm/__pycache__/_utils.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b8ad82e0e2d4d00bb711c766de386355df0ee09447b903f7c38c306867e445 +size 875 diff --git a/_vendor/tqdm/__pycache__/asyncio.cpython-310.pyc b/_vendor/tqdm/__pycache__/asyncio.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64699db426a4968bc89dcffccf9414875d4b8df9 --- /dev/null +++ b/_vendor/tqdm/__pycache__/asyncio.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c3280090ba4e0f5e234794ab90810ffe015f4302070c63a1bf5b72596352c6 +size 3362 diff --git a/_vendor/tqdm/__pycache__/auto.cpython-310.pyc b/_vendor/tqdm/__pycache__/auto.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69e5f678aeb7f10d8c309bea089df025272ef579 --- /dev/null +++ b/_vendor/tqdm/__pycache__/auto.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a5ec4ccb79b4c52b8d5bf508d999ac856730609f6a3551d0aac0197aad67d9 +size 1233 diff --git a/_vendor/tqdm/__pycache__/autonotebook.cpython-310.pyc b/_vendor/tqdm/__pycache__/autonotebook.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21535916f613bfc5f78b0c9b08c055551dee48f3 --- /dev/null +++ b/_vendor/tqdm/__pycache__/autonotebook.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016e3b77b1308d2f528cde66be8402b295fb85e9bb79c86148f1dad8ee3b37b4 +size 981 diff --git a/_vendor/tqdm/__pycache__/cli.cpython-310.pyc b/_vendor/tqdm/__pycache__/cli.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bcfe6ff840fc8e00644a16d07e5b7df92b0359cc --- /dev/null +++ b/_vendor/tqdm/__pycache__/cli.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ce877c2229e0ae9bfce6731f70d6e7ead2d7005c34d2d4efe4d0b1e1660e23 +size 9099 diff --git a/_vendor/tqdm/__pycache__/dask.cpython-310.pyc b/_vendor/tqdm/__pycache__/dask.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..892e019e36bd5de6a850090a7ebaf418ba3cb809 --- /dev/null +++ b/_vendor/tqdm/__pycache__/dask.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2d769527a7f170b663d9c26a0a959d95376e3fe6ed360e625ea2ff41a9ada7 +size 2095 diff --git a/_vendor/tqdm/__pycache__/gui.cpython-310.pyc b/_vendor/tqdm/__pycache__/gui.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b76c86e4fe7e84f86ade60e24946cf19a7113b4 --- /dev/null +++ b/_vendor/tqdm/__pycache__/gui.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2299d76641ba53d100ba9c793096bc08ec22383b33af1a548cee1a0fb9d1b3 +size 4684 diff --git a/_vendor/tqdm/__pycache__/keras.cpython-310.pyc b/_vendor/tqdm/__pycache__/keras.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf13000d7d5947fba48e92b73da36fe7705f3b9f --- /dev/null +++ b/_vendor/tqdm/__pycache__/keras.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140ac148d3b089ddfb022721941058b99e5b612ddcfdcec6935754b62ebde83c +size 4970 diff --git a/_vendor/tqdm/__pycache__/notebook.cpython-310.pyc b/_vendor/tqdm/__pycache__/notebook.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1aaeb2de021d2c05831cdb00e736206ddf10e39d --- /dev/null +++ b/_vendor/tqdm/__pycache__/notebook.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fc59ccd18e1c8a5ff227b81b641d3aaed0f49628779780a0db043aee3b1857 +size 7597 diff --git a/_vendor/tqdm/__pycache__/rich.cpython-310.pyc b/_vendor/tqdm/__pycache__/rich.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d1d10c3fd430e3e6dbe9c296cf5b38e454606f6 --- /dev/null +++ b/_vendor/tqdm/__pycache__/rich.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3370ed6b5abdaae0dc481216cbd2dddd78d3d84e5b051c54793831a748ddf04c +size 5195 diff --git a/_vendor/tqdm/__pycache__/std.cpython-310.pyc b/_vendor/tqdm/__pycache__/std.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c6f32c5154466f9eea363d261568c5d8fb04067 --- /dev/null +++ b/_vendor/tqdm/__pycache__/std.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fd090f94bfd63818b7beff20fcd0e4a32d8b41c285b15f67b7ea67e09102f5 +size 46340 diff --git a/_vendor/tqdm/__pycache__/tk.cpython-310.pyc b/_vendor/tqdm/__pycache__/tk.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73fe4e391daedc56fa7bdc0a6a60ddf3a6cbecac --- /dev/null +++ b/_vendor/tqdm/__pycache__/tk.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d3a79c0c4012d561a21538679cb31075f601084925ee72b7893b72ec89c1cc +size 6381 diff --git a/_vendor/tqdm/__pycache__/utils.cpython-310.pyc b/_vendor/tqdm/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..529e50cc898b5a9396045cad8cf79307157a6490 --- /dev/null +++ b/_vendor/tqdm/__pycache__/utils.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe2735f4538fa99c8202a9486181eb3ec206eecace17bd3faea16d8aed1c8ec +size 11792 diff --git a/_vendor/tqdm/__pycache__/version.cpython-310.pyc b/_vendor/tqdm/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71f10cd1db021abb432303ceca28ff0cd8e6de88 --- /dev/null +++ b/_vendor/tqdm/__pycache__/version.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0d79e29b7158147314f18d17dfa7fc735c56ea21228f1929f8d3f36b7aefec +size 485 diff --git a/_vendor/tqdm/_dist_ver.py b/_vendor/tqdm/_dist_ver.py new file mode 100644 index 0000000000000000000000000000000000000000..bff5b0162365710099a4ccf9469798e0c417d8be --- /dev/null +++ b/_vendor/tqdm/_dist_ver.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f4ba7b0b8a2f2206f3771013fe29dfef5fb95975e6f9dd3f5ff2d45a684723 +size 23 diff --git a/_vendor/tqdm/_main.py b/_vendor/tqdm/_main.py new file mode 100644 index 0000000000000000000000000000000000000000..172fe6ad472234c9f7cc958643ceb01b8c76a7a5 --- /dev/null +++ b/_vendor/tqdm/_main.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f724af8268bfd92c38080a395035b44367717d3af26e8116187a217c2273d2c0 +size 283 diff --git a/_vendor/tqdm/_monitor.py b/_vendor/tqdm/_monitor.py new file mode 100644 index 0000000000000000000000000000000000000000..5d00c38b120caa0d5c5e3975b34379eabaf54748 --- /dev/null +++ b/_vendor/tqdm/_monitor.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524bbe0cf5a0cc9edd3b908ad3cc4a24af84fc5eaa43e241de4b2e5dccd2611d +size 3699 diff --git a/_vendor/tqdm/_tqdm.py b/_vendor/tqdm/_tqdm.py new file mode 100644 index 0000000000000000000000000000000000000000..4ffff9594c2665ac91e33269b177c54abe830ec2 --- /dev/null +++ b/_vendor/tqdm/_tqdm.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df2c2b89e9ba6c568f718a59ad057c849b5bc69d4085ae5896f398f727e9c3e +size 283 diff --git a/_vendor/tqdm/_tqdm_gui.py b/_vendor/tqdm/_tqdm_gui.py new file mode 100644 index 0000000000000000000000000000000000000000..8cda2b52d5455ffa3620eabc8a4818cbd858b1df --- /dev/null +++ b/_vendor/tqdm/_tqdm_gui.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d371dcf0a6b2c49bde89e239fb4fb6346883a4bbf0f6365e9287c9515ec20b09 +size 287 diff --git a/_vendor/tqdm/_tqdm_notebook.py b/_vendor/tqdm/_tqdm_notebook.py new file mode 100644 index 0000000000000000000000000000000000000000..e3a7f04562fd5ed184f0770609e4618789c41376 --- /dev/null +++ b/_vendor/tqdm/_tqdm_notebook.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e1e22eec6eeae11f64568f256dd13e93dac5a55cb44400de47522520cbd61c +size 307 diff --git a/_vendor/tqdm/_tqdm_pandas.py b/_vendor/tqdm/_tqdm_pandas.py new file mode 100644 index 0000000000000000000000000000000000000000..32f9709f618f8a4765ff84fd391942aebc973daf --- /dev/null +++ b/_vendor/tqdm/_tqdm_pandas.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d8e9b5482280de9ac510e145de1189ff7c4e6c5ea297359c5345848a5b1541 +size 888 diff --git a/_vendor/tqdm/_utils.py b/_vendor/tqdm/_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..5196f7ffa58080e405ac57d04cda28ac16f9dd1c --- /dev/null +++ b/_vendor/tqdm/_utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608c23d19250a275e061ad87680dd4fe968fe3139726a8f465630f79949fe8fc +size 596 diff --git a/_vendor/tqdm/asyncio.py b/_vendor/tqdm/asyncio.py new file mode 100644 index 0000000000000000000000000000000000000000..82584934da35209c465768159f425032e8b37f27 --- /dev/null +++ b/_vendor/tqdm/asyncio.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2593db5e74b8cbf25d2303925f4fbc6f46fc7adf395637dab59b78fd9bc356 +size 2789 diff --git a/_vendor/tqdm/auto.py b/_vendor/tqdm/auto.py new file mode 100644 index 0000000000000000000000000000000000000000..47157686011783157d0509e83e6f16026cda5022 --- /dev/null +++ b/_vendor/tqdm/auto.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fffdd21f925546a9c45dcd5e2aebc48e05584b1def505a7ac2937209200f9f3 +size 1106 diff --git a/_vendor/tqdm/autonotebook.py b/_vendor/tqdm/autonotebook.py new file mode 100644 index 0000000000000000000000000000000000000000..315ee73530b4ab9be660bd7301a9a0055dc4b439 --- /dev/null +++ b/_vendor/tqdm/autonotebook.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61bf45e6e6a204f85f6c30c5a5bb681bc236614c37b9027cf6b5032db7d1eb0b +size 956 diff --git a/_vendor/tqdm/cli.py b/_vendor/tqdm/cli.py new file mode 100644 index 0000000000000000000000000000000000000000..8bc1c254b688cbb3c55c05d865075ad92cc1f3a5 --- /dev/null +++ b/_vendor/tqdm/cli.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8780ef643059d9994036d9518b69976e5afcca311ef6250694ea997395cf9637 +size 10871 diff --git a/_vendor/tqdm/completion.sh b/_vendor/tqdm/completion.sh new file mode 100755 index 0000000000000000000000000000000000000000..e70b939d23b25edb35b5a1255c7e0c1d5a889f9e --- /dev/null +++ b/_vendor/tqdm/completion.sh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbf4a6d29a9223fc4d758df4df057ac69d44f3297569435bc6550becc83465e +size 946 diff --git a/_vendor/tqdm/contrib/__init__.py b/_vendor/tqdm/contrib/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..60b98ac5e81a0f9afde8ec4f2ea7928b6307a28f --- /dev/null +++ b/_vendor/tqdm/contrib/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8298817ae581d4e69aa06170892f86fcda1dbfc7cb3d9ff15716c434bd0460be +size 2604 diff --git a/_vendor/tqdm/contrib/__pycache__/__init__.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0667e523959efef627a8efcfc166a9e905d0e0a5 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01a7b0bd31370b63e021debd909dde922c241eb39afb83560216390b320838e +size 3131 diff --git a/_vendor/tqdm/contrib/__pycache__/bells.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/bells.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c098bc551ed26d6459d200c032dfb8bf3cd74c1 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/bells.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55e26c53023d28054acac0d7b182d296c57a06d84114604606f5bdb2b39ef9f +size 1011 diff --git a/_vendor/tqdm/contrib/__pycache__/concurrent.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/concurrent.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f9c79682f1f666f4164a0154ed329fef4945281 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/concurrent.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d188207bed70838b01e70b62a5d31b4a869ca7e19846f7e33f064e12a9a11ecd +size 4313 diff --git a/_vendor/tqdm/contrib/__pycache__/discord.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/discord.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b791401ad7098d6eab33578895350d74c9a7b094 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/discord.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b5987840c88140101d7cb875984562afce7ccc82d48eeb742872967dea57f1 +size 4445 diff --git a/_vendor/tqdm/contrib/__pycache__/itertools.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/itertools.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b594347b003de447ad952511cdf8aedbe47c9682 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/itertools.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38a878c80e117f129f33800c848cc13313c8b2629ae4c1a68b4524de7f4e84a +size 985 diff --git a/_vendor/tqdm/contrib/__pycache__/logging.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad98d5724258a078d2dcdcaa409f07344aac0a7e --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/logging.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636ef257b1d74f645fddee2e2fb4c0dc9c55a1ebcd3fe3bfb665c56b980e73f2 +size 3933 diff --git a/_vendor/tqdm/contrib/__pycache__/slack.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/slack.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1cdbc5c9aa31c0ac8c76460277eca04d42e1bec --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/slack.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d663c0a646cf4c6f0f81210f3b02be3a12a087e0762d604c0c6e816cf8c382e2 +size 4479 diff --git a/_vendor/tqdm/contrib/__pycache__/telegram.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/telegram.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ea13fe99881b2afc2709bb3b0d6105270876ed1 --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/telegram.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97f8ca4542d8268de413d917c784f894bdf5eb0e8332a6646a35ee003681fdb +size 5442 diff --git a/_vendor/tqdm/contrib/__pycache__/utils_worker.cpython-310.pyc b/_vendor/tqdm/contrib/__pycache__/utils_worker.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..682d7de6ad34de85c2e7cd11ecdc86fdab13924c --- /dev/null +++ b/_vendor/tqdm/contrib/__pycache__/utils_worker.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca440d5efe4214981cdf40c106914819d8bb288b11bd82e49b7fbf032b9e053 +size 1509 diff --git a/_vendor/tqdm/contrib/bells.py b/_vendor/tqdm/contrib/bells.py new file mode 100644 index 0000000000000000000000000000000000000000..da3206f7d4030265762381fe49f8bf3e7466257e --- /dev/null +++ b/_vendor/tqdm/contrib/bells.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631d47a860a61eb1120803bbd348f9c04fff24295e34e0c9c5e761d628cf2c3d +size 837 diff --git a/_vendor/tqdm/contrib/concurrent.py b/_vendor/tqdm/contrib/concurrent.py new file mode 100644 index 0000000000000000000000000000000000000000..8007f6ddf68c4afbd97bffd055fcab9e47f86a0a --- /dev/null +++ b/_vendor/tqdm/contrib/concurrent.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6261c91bf8d4614b20d8d47578086cae5e97fbf05fce500db56df62213664530 +size 4644 diff --git a/_vendor/tqdm/contrib/discord.py b/_vendor/tqdm/contrib/discord.py new file mode 100644 index 0000000000000000000000000000000000000000..e2c5f38eb5778ce8b08cf2cb2337e0406029bff0 --- /dev/null +++ b/_vendor/tqdm/contrib/discord.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b9a25f9fa2a03d8baaad17b4ef6ac748714ad5a89156a247897f6bd428cf3c +size 4090 diff --git a/_vendor/tqdm/contrib/itertools.py b/_vendor/tqdm/contrib/itertools.py new file mode 100644 index 0000000000000000000000000000000000000000..ebbf406ca962537ec6726f88289a88fbbf8148b8 --- /dev/null +++ b/_vendor/tqdm/contrib/itertools.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6dd691d60a3fe6950ab95c39f1f9de2e0803947b1bcae3109769e8217920ef +size 814 diff --git a/_vendor/tqdm/contrib/logging.py b/_vendor/tqdm/contrib/logging.py new file mode 100644 index 0000000000000000000000000000000000000000..3c753b009c4b5807955c8ac6d82cce639eec4b0a --- /dev/null +++ b/_vendor/tqdm/contrib/logging.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178a4413699179c34aa19366ee3216af69cc79e96fa20bd9f1aa29a3f8ab2b8e +size 3844 diff --git a/_vendor/tqdm/contrib/slack.py b/_vendor/tqdm/contrib/slack.py new file mode 100644 index 0000000000000000000000000000000000000000..a0d21b16b6eae117a5f5aed3690b0b1f6ca83785 --- /dev/null +++ b/_vendor/tqdm/contrib/slack.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0906ae49464fe4fc8a3ab5ea5341cde5739033d135a54e8d815d4155a19d5742 +size 4196 diff --git a/_vendor/tqdm/contrib/telegram.py b/_vendor/tqdm/contrib/telegram.py new file mode 100644 index 0000000000000000000000000000000000000000..f341e86659051292db7231c403071c99710db4f4 --- /dev/null +++ b/_vendor/tqdm/contrib/telegram.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52e882193230e0eeb71dc4968619cbd3442dfb0e71dfd2bdfa6a18defc9cb24 +size 5228 diff --git a/_vendor/tqdm/contrib/utils_worker.py b/_vendor/tqdm/contrib/utils_worker.py new file mode 100644 index 0000000000000000000000000000000000000000..f6488a08a41bbca43e2ba860672e1727d0daee2f --- /dev/null +++ b/_vendor/tqdm/contrib/utils_worker.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc8fd4ef0dadea446a19beb994e5c4139e640b3ddf283fb01446e263555157a +size 1247 diff --git a/_vendor/tqdm/dask.py b/_vendor/tqdm/dask.py new file mode 100644 index 0000000000000000000000000000000000000000..fd47fc9fbccbecd4b815c1d48c44fa2a727644d7 --- /dev/null +++ b/_vendor/tqdm/dask.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a3d0d8efc1779f619d7942ec1e6b4bbcbd0b6c08e1c3e42070dd782586b737 +size 1377 diff --git a/_vendor/tqdm/gui.py b/_vendor/tqdm/gui.py new file mode 100644 index 0000000000000000000000000000000000000000..4f5b0f0f4f7e4d656b9fec48acc1921bf9b86d32 --- /dev/null +++ b/_vendor/tqdm/gui.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9103fe7b3c00512bc9e387f9d14a767c41b81eafa9e2c9eb1322b048dc1c8242 +size 5943 diff --git a/_vendor/tqdm/keras.py b/_vendor/tqdm/keras.py new file mode 100644 index 0000000000000000000000000000000000000000..a5d4535b6717b6aeea248afc0c9b774c63af9d9c --- /dev/null +++ b/_vendor/tqdm/keras.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae41026f01930782bd18de463aa4a4150fee8400930f83dd59389d9649337e0 +size 4409 diff --git a/_vendor/tqdm/notebook.py b/_vendor/tqdm/notebook.py new file mode 100644 index 0000000000000000000000000000000000000000..96374af5ecc99c5cedf388649ada5417e5cc55ca --- /dev/null +++ b/_vendor/tqdm/notebook.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54e63fc5722354a4b6aa77a9e62687119456b73c5702cef85368ab9dad66db0 +size 11317 diff --git a/_vendor/tqdm/rich.py b/_vendor/tqdm/rich.py new file mode 100644 index 0000000000000000000000000000000000000000..8b5d4890068ad7c5cb607e51d8492ebcb4c6de90 --- /dev/null +++ b/_vendor/tqdm/rich.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1cc61e6f16a3e1a55e3d83aaab0bd2647c1f512b5a4db87ef8ebcd4eb738392 +size 5152 diff --git a/_vendor/tqdm/std.py b/_vendor/tqdm/std.py new file mode 100644 index 0000000000000000000000000000000000000000..600e2b111c5ae55318371d080fcaeeaed39c5ca3 --- /dev/null +++ b/_vendor/tqdm/std.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3f2a7d1fc2751235d80774e459bd9dd99f1650f933a1efb4ada09fe2900c01 +size 58341 diff --git a/_vendor/tqdm/tk.py b/_vendor/tqdm/tk.py new file mode 100644 index 0000000000000000000000000000000000000000..298534864d333eecc496d1aac86ecf3b36e51964 --- /dev/null +++ b/_vendor/tqdm/tk.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b795b8f51ac3fb8f20e9410826e6886c166f58f7e69d7a49582213c7ebd3fcf +size 6948 diff --git a/_vendor/tqdm/tqdm.1 b/_vendor/tqdm/tqdm.1 new file mode 100644 index 0000000000000000000000000000000000000000..9ee1810abe186a47f7c32f426d9782e88f66dfa6 --- /dev/null +++ b/_vendor/tqdm/tqdm.1 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5830b645898d301805188239ab7ebf6f41397232a97a2d3df5a145af3b241d5 +size 7997 diff --git a/_vendor/tqdm/utils.py b/_vendor/tqdm/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..2b937416747db683b5ed8225e9b30056a378cf35 --- /dev/null +++ b/_vendor/tqdm/utils.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af1340ccdbc5fffcd1d82a01a5e6352b93a08ce4157ad06e0d7f9e484cf7892 +size 9803 diff --git a/_vendor/tqdm/version.py b/_vendor/tqdm/version.py new file mode 100644 index 0000000000000000000000000000000000000000..8571a8ce1f7227bde0fef1186e1f1a924e246e28 --- /dev/null +++ b/_vendor/tqdm/version.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5c968dfbb73f47a0855b32b071f4edf6f376200335177346d60fa8e6aa4760 +size 333 diff --git a/_vendor/urllib3-1.26.12.dist-info/INSTALLER b/_vendor/urllib3-1.26.12.dist-info/INSTALLER new file mode 100644 index 0000000000000000000000000000000000000000..a7e5a27566456041f87aa0e86314b962431c3057 --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/INSTALLER @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceebae7b8927a3227e5303cf5e0f1f7b34bb542ad7250ac03fbcde36ec2f1508 +size 4 diff --git a/_vendor/urllib3-1.26.12.dist-info/LICENSE.txt b/_vendor/urllib3-1.26.12.dist-info/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..22882b3e61e5f76beab003ee1da3e4bf40a7613d --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/LICENSE.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37bf186e27cf9dbe9619e55edfe3cea7b30091ceb3da63c7dacbe0e6d77907b +size 1115 diff --git a/_vendor/urllib3-1.26.12.dist-info/METADATA b/_vendor/urllib3-1.26.12.dist-info/METADATA new file mode 100644 index 0000000000000000000000000000000000000000..93c4343a48c68e3bc1f4886e6e52a646265521ba --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/METADATA @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc46d3696fdc7588309567ce9e53fc4383da6649fe105c175d45354f521e1b3 +size 47076 diff --git a/_vendor/urllib3-1.26.12.dist-info/RECORD b/_vendor/urllib3-1.26.12.dist-info/RECORD new file mode 100644 index 0000000000000000000000000000000000000000..8238995518cdea3c6b8d4bea3aa2088ebffca28b --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/RECORD @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ce43008e8b03238997a3149231a64aa77c41d8bded4a4bf5f9095cf306752e +size 5785 diff --git a/_vendor/urllib3-1.26.12.dist-info/WHEEL b/_vendor/urllib3-1.26.12.dist-info/WHEEL new file mode 100644 index 0000000000000000000000000000000000000000..380e76f5c49ac49ee155afb4cce8ee144734855c --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/WHEEL @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd8f4c406bf26650a3299b3ef62b464600b48cfe7fb04159866e5797c765478 +size 110 diff --git a/_vendor/urllib3-1.26.12.dist-info/top_level.txt b/_vendor/urllib3-1.26.12.dist-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..242ea2f3843f7057206bcda6b63e4727c3643b22 --- /dev/null +++ b/_vendor/urllib3-1.26.12.dist-info/top_level.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c8972f6b0aad3726accc481d3a9d737113e78a50236634ef62dec4511e9afa +size 8 diff --git a/_vendor/urllib3/__init__.py b/_vendor/urllib3/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2d5a35b483b214c4cdc7d3cf5de0fc0422abf96d --- /dev/null +++ b/_vendor/urllib3/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8972dc6222724a7d0635b58e3990c30298012f52603f8e0467c8b5efad12f0c7 +size 3333 diff --git a/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06322c4125a9acbb8f4a60cbe149f821c7b0b0f5 --- /dev/null +++ b/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd248f924a4c2c03bccd6779fc3de4153c7d3b8f3d9413835a69a48305098a3 +size 2466 diff --git a/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc b/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b778baef20a4144cfb9a53e049b354502745ab2a --- /dev/null +++ b/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08da059917d9c8873479bd69ca832378a21c1db3409e79a80c8c9d8bdbbf6475 +size 10820 diff --git a/_vendor/urllib3/__pycache__/_version.cpython-310.pyc b/_vendor/urllib3/__pycache__/_version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e177ee8a8a0b4ea3f427a4b3cab6dcc38162d0ec --- /dev/null +++ b/_vendor/urllib3/__pycache__/_version.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d3e7475a94669a7033166ca9dba40a44b8da974ae037002211bbf77a772449 +size 171 diff --git a/_vendor/urllib3/__pycache__/connection.cpython-310.pyc b/_vendor/urllib3/__pycache__/connection.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb1f5ead3764959c9f06741d8ffe270e50f13638 --- /dev/null +++ b/_vendor/urllib3/__pycache__/connection.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6eaee54545b5da948508dcc1629253a7d8ed0acc98900b5e6c7c7bd7af0440 +size 13600 diff --git a/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc b/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..426e0e2dbb1903f3101f75d584a954ffd3834e78 --- /dev/null +++ b/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f94b314410cd9ff1b3c2f822d55a5c591cae522c44105ad5d8415bf1a763da6 +size 25362 diff --git a/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc b/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba40aded89d2eebf6df30fd25139147b5d7fb995 --- /dev/null +++ b/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3608028e4f006c51790258e7a113a5e7d8303504f904b3abe67e2dcc3471b96a +size 10951 diff --git a/_vendor/urllib3/__pycache__/fields.cpython-310.pyc b/_vendor/urllib3/__pycache__/fields.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..104f85af11e8ff26b04aefd6fae74d9466e44ef5 --- /dev/null +++ b/_vendor/urllib3/__pycache__/fields.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010b482ff571f3892ec2693931b239816fd486eea5c5b4ada4db117daa1e61a1 +size 8142 diff --git a/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc b/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..186769a61bbc052ca613076192ad2865116bc21d --- /dev/null +++ b/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791db3317a68c985debc7f07e02e30c2b4573a8d7ab46b191f1b0133a1432770 +size 2707 diff --git a/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc b/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80d1ffbde177c65edeb11a4cdb2d8f776550345b --- /dev/null +++ b/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995858a7feee815c7c875a15edb76e45fa0a0bc65f92e669e1f450f91269626e +size 15176 diff --git a/_vendor/urllib3/__pycache__/request.cpython-310.pyc b/_vendor/urllib3/__pycache__/request.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..789d70436e63f288c88ca976bd866ba64b3b005c --- /dev/null +++ b/_vendor/urllib3/__pycache__/request.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15585e13f627a184c91b7de4d6197ba1b40ff7012652f881178905611aedd3b0 +size 5583 diff --git a/_vendor/urllib3/__pycache__/response.cpython-310.pyc b/_vendor/urllib3/__pycache__/response.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a002dc5ae4bf625c62c912a2d517c845ec6824a --- /dev/null +++ b/_vendor/urllib3/__pycache__/response.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6e9806fa840e6aeb7a7cb64480e3a3058acdbd18db08d7b19239b3162bc8f3 +size 22157 diff --git a/_vendor/urllib3/_collections.py b/_vendor/urllib3/_collections.py new file mode 100644 index 0000000000000000000000000000000000000000..334baecd9e7db9b6aacb8644c9c28f46258cbde1 --- /dev/null +++ b/_vendor/urllib3/_collections.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469d6657206073f52501ca7a3376add6c909057479278dcd6b0453bd6da0fd76 +size 10811 diff --git a/_vendor/urllib3/_version.py b/_vendor/urllib3/_version.py new file mode 100644 index 0000000000000000000000000000000000000000..9a60a12cc8743baf13ab10309c5c9e29574da97a --- /dev/null +++ b/_vendor/urllib3/_version.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1b860544ff32d4711c41c36fe2d8b39c8b3de616942c0504f8c66665496d58 +size 64 diff --git a/_vendor/urllib3/connection.py b/_vendor/urllib3/connection.py new file mode 100644 index 0000000000000000000000000000000000000000..bebe6f628e64f2f1ec12d6eb0849486193d4811b --- /dev/null +++ b/_vendor/urllib3/connection.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3defac0beac19e54c5b42675efc79983d34c97bbceee423c6d07dfd52fc771f +size 20070 diff --git a/_vendor/urllib3/connectionpool.py b/_vendor/urllib3/connectionpool.py new file mode 100644 index 0000000000000000000000000000000000000000..6d422503e1b20124a16626eca0949a20d9965c50 --- /dev/null +++ b/_vendor/urllib3/connectionpool.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4ce4d62244c35a91daf1c1a3b9b763df220df9daeab2a4533dc0c8ae6524a4 +size 39093 diff --git a/_vendor/urllib3/contrib/__init__.py b/_vendor/urllib3/contrib/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62da3d3770fb009e62c359ad5d15e703fe083045 --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acea3c8192e3361e42ac9d003e434743707b9a751878750f47298bcb5039028 +size 156 diff --git a/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f728fa48e53d1309ced26bd5aa649e162828128d --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e852a4d256263f96dfd9905277e0cae0c52ebe467795dc733fe568978f7633a1 +size 1336 diff --git a/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7feddc7d31d4c366c2e9972bfc8428d1e0b19b4 --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94756acea000ce8eb90eba951841f1c84081dd30c81c4f9712d017f9635efcac +size 8128 diff --git a/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e1c02a6ce1e5b8059e9608508f1b7c96c436380 --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e36d3ce7a6484c084e56b6f2c8df22cd3516f32ed119152e1b666fb7120be5 +size 3591 diff --git a/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..755c24fbe7368b38a36efdc2165dd65905f4880b --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56ab6bd3068f5dadf6efe3395e8d13fa52f932312f412b277de50cf47cf4d02 +size 15736 diff --git a/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5237823d4e9e85808eeb713f815f5403c098c662 --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3fd9adfc79ff00607c9fc954d68bc1d4851e28dab18167632a5be07c78933d +size 21859 diff --git a/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc b/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..654ca7b13a793be597a73b95c620da9af885c93a --- /dev/null +++ b/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898642b5110da449a6b8baf2013d5ce2788314bf6d74fab5aae8063bc71db168 +size 5558 diff --git a/_vendor/urllib3/contrib/_appengine_environ.py b/_vendor/urllib3/contrib/_appengine_environ.py new file mode 100644 index 0000000000000000000000000000000000000000..44fb116b4132b596a54ffe77128fc67d88b5ec3c --- /dev/null +++ b/_vendor/urllib3/contrib/_appengine_environ.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c36f2384856d8228b25c42a00a032ac41cdf9a925b321c52aaeaf17c645b269 +size 957 diff --git a/_vendor/urllib3/contrib/_securetransport/__init__.py b/_vendor/urllib3/contrib/_securetransport/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ecf99a469e2c2e2b041a5ca504a2a13e0ee45d74 --- /dev/null +++ b/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e331484f497b6f07b188f7aa0a772d3a7568f4663e392503206073651d756f12 +size 173 diff --git a/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc b/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf9e89a02fdc5cf45e1dc130bd862eee9322364c --- /dev/null +++ b/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e4796c778218ad07532a70fba459f7ebb3ce9cdeebe68e37a7761839ba8d38 +size 10669 diff --git a/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc b/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d2adeac7d4a264240caf96b57de00dc83963d84 --- /dev/null +++ b/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae27841eeb9062166d5a70877750ff3724e7758a1f9460286770c4c4c8f95082 +size 9056 diff --git a/_vendor/urllib3/contrib/_securetransport/bindings.py b/_vendor/urllib3/contrib/_securetransport/bindings.py new file mode 100644 index 0000000000000000000000000000000000000000..5c7108f45bd2c7dc39837d8a1b1e58a3c6388e31 --- /dev/null +++ b/_vendor/urllib3/contrib/_securetransport/bindings.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1793ae2a2243c1b74f40e6af9120552e0e135cf665e29556a99bb5a7627cd1c +size 17632 diff --git a/_vendor/urllib3/contrib/_securetransport/low_level.py b/_vendor/urllib3/contrib/_securetransport/low_level.py new file mode 100644 index 0000000000000000000000000000000000000000..d28abbdca6b6155a26a346aa86db0dec96199ad4 --- /dev/null +++ b/_vendor/urllib3/contrib/_securetransport/low_level.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076241076fcd44fd36c4ae8309ad4f6bd22ec6b3f0c730f365b8b14246fb53d3 +size 13922 diff --git a/_vendor/urllib3/contrib/appengine.py b/_vendor/urllib3/contrib/appengine.py new file mode 100644 index 0000000000000000000000000000000000000000..0f4fb7c9851db4bf2938c047795a429a77c7fbb5 --- /dev/null +++ b/_vendor/urllib3/contrib/appengine.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3e75e636580431539e1478cea7de682a3a25d0e0010a986eacc72bdb0391fc +size 11010 diff --git a/_vendor/urllib3/contrib/ntlmpool.py b/_vendor/urllib3/contrib/ntlmpool.py new file mode 100644 index 0000000000000000000000000000000000000000..f29a9857f44d8c3733851af5b19007851d5a49de --- /dev/null +++ b/_vendor/urllib3/contrib/ntlmpool.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3f601af7c06f61add3495a7c5a78e52228473f90c2b438582866ea04260253 +size 4538 diff --git a/_vendor/urllib3/contrib/pyopenssl.py b/_vendor/urllib3/contrib/pyopenssl.py new file mode 100644 index 0000000000000000000000000000000000000000..383ac55cc91be3d8519f3eae38a5af1d40660d4d --- /dev/null +++ b/_vendor/urllib3/contrib/pyopenssl.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e2bd080ec3e0c7dd6aaa2b01667ca061df2a7847cc04925176b61887edc6c2 +size 17156 diff --git a/_vendor/urllib3/contrib/securetransport.py b/_vendor/urllib3/contrib/securetransport.py new file mode 100644 index 0000000000000000000000000000000000000000..523ad422e9980876945fb3b8467d7fb125f439d9 --- /dev/null +++ b/_vendor/urllib3/contrib/securetransport.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e8556d6ac541329b995fafb721baf5a99e924295c5791d8e4f68ca668ed008 +size 34416 diff --git a/_vendor/urllib3/contrib/socks.py b/_vendor/urllib3/contrib/socks.py new file mode 100644 index 0000000000000000000000000000000000000000..a3f4e66e2849aeed8473d06c898c41ad3b5f4bf9 --- /dev/null +++ b/_vendor/urllib3/contrib/socks.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6918bd7965e8f5911bf795d4c5e7f8676d421659e78db122028f473ac7a832de +size 7097 diff --git a/_vendor/urllib3/exceptions.py b/_vendor/urllib3/exceptions.py new file mode 100644 index 0000000000000000000000000000000000000000..b12dd417c84e4a46309dffce1812eae881f01687 --- /dev/null +++ b/_vendor/urllib3/exceptions.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c9e7a372874cd7d745f63beb7f0db9f38f9146fa9973a6f8baa3fb8c76c3c0 +size 8217 diff --git a/_vendor/urllib3/fields.py b/_vendor/urllib3/fields.py new file mode 100644 index 0000000000000000000000000000000000000000..0ca81fca6b7db643dbaa9724f8ef4b529604987c --- /dev/null +++ b/_vendor/urllib3/fields.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f2c30a0fc9987d652e3514118fc52d2f14858ee106f0cfb951136d8f2676b3 +size 8579 diff --git a/_vendor/urllib3/filepost.py b/_vendor/urllib3/filepost.py new file mode 100644 index 0000000000000000000000000000000000000000..8a9be7bb831b8c9145f3c3406b28eda5a953c192 --- /dev/null +++ b/_vendor/urllib3/filepost.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bfeaaa04475652fbb8bb5d018073061f861e653901f255b7fd8dd174b73de6 +size 2440 diff --git a/_vendor/urllib3/packages/__init__.py b/_vendor/urllib3/packages/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7dad98c203a59d51d057cb6f21a91d4b2ffe2a03 --- /dev/null +++ b/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58a29ee45a6fb90f2b3e383c692d5ad3df1dae35831b9fe7720c9db9c440083 +size 157 diff --git a/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc b/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38632e9c0af622bd060533468696cf2aa74b2bc9 --- /dev/null +++ b/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785a5881636ff89918c4f31d8d5fc82d8133ff09828b2b6c37029154564138d0 +size 27617 diff --git a/_vendor/urllib3/packages/backports/__init__.py b/_vendor/urllib3/packages/backports/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4e4b7347a579ae3136e9e10c2064bce00a81fdd --- /dev/null +++ b/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3487d1258d2601a85a2010e2b46be5d1178bc9ecaabba532f8bbfa017f3b10a +size 167 diff --git a/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc b/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b15d2fdf34e1b1d9dfdd608e1b5b1887198a2df7 --- /dev/null +++ b/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2203948fb3c98e9ecd20e73e551ae8c1fc1af995c1aabd4720d72f0bea1adc2 +size 1267 diff --git a/_vendor/urllib3/packages/backports/makefile.py b/_vendor/urllib3/packages/backports/makefile.py new file mode 100644 index 0000000000000000000000000000000000000000..a640e6dff74540c23ea93db1e3edcdade67448f9 --- /dev/null +++ b/_vendor/urllib3/packages/backports/makefile.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbcedde2d1a80f54fd3b8eaaa08e16988cc9ae022fd6e44d04cb0662bd53bc1 +size 1417 diff --git a/_vendor/urllib3/packages/six.py b/_vendor/urllib3/packages/six.py new file mode 100644 index 0000000000000000000000000000000000000000..bf0a3295219dcaf121ccef5fbaad194a1284377d --- /dev/null +++ b/_vendor/urllib3/packages/six.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd2ccd30057bfb13b4ab6c28c09b8c3037e86b1fe88dc6fd7c2e058d30c28fa +size 34665 diff --git a/_vendor/urllib3/poolmanager.py b/_vendor/urllib3/poolmanager.py new file mode 100644 index 0000000000000000000000000000000000000000..69b033f2089913fbe6570277e2c37e4573625d49 --- /dev/null +++ b/_vendor/urllib3/poolmanager.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a38e2440a878b6158d41efbfed21e0eab7145410db26fe1678e46e3f2024ed +size 19786 diff --git a/_vendor/urllib3/request.py b/_vendor/urllib3/request.py new file mode 100644 index 0000000000000000000000000000000000000000..a97bee6b3a6791369ab1fdfeda91745c71e0a38e --- /dev/null +++ b/_vendor/urllib3/request.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645488a97d02e968b38b179c0a1677fe8932bbb044bf4959bb5553d2cea1e123 +size 5985 diff --git a/_vendor/urllib3/response.py b/_vendor/urllib3/response.py new file mode 100644 index 0000000000000000000000000000000000000000..37c975d17be5dfc5d9d4bd68c8f4d6f730c8e4a6 --- /dev/null +++ b/_vendor/urllib3/response.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07430cd28f29d62f0843b41286745927353ef261c29f6030de61210a8137f7de +size 30229 diff --git a/_vendor/urllib3/util/__init__.py b/_vendor/urllib3/util/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f7033d096dfa35a3df654b4764bdde4d54ae364f --- /dev/null +++ b/_vendor/urllib3/util/__init__.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2449929a6aaa2f26b0f0fe75814226661f06c20f62d7349ef83a2a022b67da77 +size 1155 diff --git a/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11fb0561639566d6313fcf445fd244d3516c6711 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e9c8471e057dbfebbf81fc37ab646557de549ea4b58b9faccc8fde400a138b +size 1066 diff --git a/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..56eb0311adb9c60a0bc762ab68696de8cae95c86 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a54fa8a8b0354a85174431dbb04fbcbc64d40b1d8cdd6fc078a9649376a0a75 +size 3394 diff --git a/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55c479679735ae52ae579b09fac535868b3beae4 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5fc7ddc0113fd0fc78af7dd938fc42e7f78b4fa268cf994c7516ad7946c9e3 +size 1301 diff --git a/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0caee9fe583b7230a02509211c4283474a875f5 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db56683cf0f440a6eb9cbdd29c20112715a2eff25e00abbb990a463000bf3d57 +size 1021 diff --git a/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8dcac0c3a17a01ef52149ac575e8f969609c2b9 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5838119778043265da018a6927ffa3266ef2c22e9064e80158ebdb71b7da89 +size 3483 diff --git a/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8b7c0b64a17a306efa00d8325c08f41899f6d2c --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb115d54912524a96f4bc2564bcc3f9b938d00c71b5881e867dc007e3d540b9 +size 2314 diff --git a/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..657fa6d9ec20fc35f210767faffee14fd58d4987 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde432ca53f3dbcc6993fe1e66bdca69fcd47aa59d52eb75915a93dcae26bd09 +size 16099 diff --git a/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d43c16c88517da6033b426d3bd24f2a3a8faa6fa --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00bdcfc30c0f23a9d17b714cc802ac6a42f7ba7fbc64d6f484874d601ee4641 +size 11256 diff --git a/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a6fac8d3ff783625355357534fed41513ffca7a --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b99212515c44d0b6d4013c6778f3d8ca5ebc37b7b48b2f8ce3cf9d527b61c0 +size 3218 diff --git a/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d1de954296e1b9b28be251b4842b1bbc2307aee --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ba71ee2f4629767b6a6e6e0406e85442be909ac10b10cb7156595b236f13212 +size 7356 diff --git a/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d311fe6b6b814a8e319c84535a03c2ec1e4e485 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4703982e1cf43eb69cd625f4344af9f2f9528a4d6b9d368d178ef32ff058f2 +size 8898 diff --git a/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76934a01c9a28f97d0c39753c6b9a1694b9ae991 --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40bc633f7406175f6e0d8fd1a4d21a73154407a8b993ce6725da904fc42f26f +size 10630 diff --git a/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc b/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be620a30b559b7598514ce27152f6f314e963b1d --- /dev/null +++ b/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caae4811d15e099efaf5a41fe4336f292743c20999eba9a13ce12d3f697624d7 +size 3050 diff --git a/_vendor/urllib3/util/connection.py b/_vendor/urllib3/util/connection.py new file mode 100644 index 0000000000000000000000000000000000000000..149ce895bfd0f17fcd68b65e1b97319111968fe9 --- /dev/null +++ b/_vendor/urllib3/util/connection.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bc760753d6dbd2b1067d93d3190dd420604416b780654904aa10a11a201159 +size 4901 diff --git a/_vendor/urllib3/util/proxy.py b/_vendor/urllib3/util/proxy.py new file mode 100644 index 0000000000000000000000000000000000000000..32a552d540bfd9d8aab4920c194b43bf5b519342 --- /dev/null +++ b/_vendor/urllib3/util/proxy.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4bcf3c226ba7a74e17437818055b39c97aa3ee2e5ca4ab1a24e492be6f512e +size 1605 diff --git a/_vendor/urllib3/util/queue.py b/_vendor/urllib3/util/queue.py new file mode 100644 index 0000000000000000000000000000000000000000..fa08ddd82d36a7a4b5e5798aa04ceb2327f51744 --- /dev/null +++ b/_vendor/urllib3/util/queue.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1817f3f797fbf564bf1a17d3de905a8cfc3ecd101d4004c482c263fecf9dc3 +size 498 diff --git a/_vendor/urllib3/util/request.py b/_vendor/urllib3/util/request.py new file mode 100644 index 0000000000000000000000000000000000000000..2cb85483948ec0ae087a1d142bb213a28cb7ac61 --- /dev/null +++ b/_vendor/urllib3/util/request.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d688069af29c1d2cb22aa132c1c420b67b879df349aecca5377b71d6593cc54 +size 4225 diff --git a/_vendor/urllib3/util/response.py b/_vendor/urllib3/util/response.py new file mode 100644 index 0000000000000000000000000000000000000000..068d1f92112ed4891b8618ac3a8fdbb8296e825d --- /dev/null +++ b/_vendor/urllib3/util/response.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189a60dc4822f6a6895d1c01879c2ff8c36e4566a7e4122ee34a117a8c563f6f +size 3510 diff --git a/_vendor/urllib3/util/retry.py b/_vendor/urllib3/util/retry.py new file mode 100644 index 0000000000000000000000000000000000000000..6fd6e13e0ee3d99517e8974d313a2ecd51efd665 --- /dev/null +++ b/_vendor/urllib3/util/retry.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8844a0d8fbd588d7570516383292f887492ac0e3a41e4c662e7d649211473d4f +size 22001 diff --git a/_vendor/urllib3/util/ssl_.py b/_vendor/urllib3/util/ssl_.py new file mode 100644 index 0000000000000000000000000000000000000000..512a6766814c5dd982ba2ad6aa426410825078a9 --- /dev/null +++ b/_vendor/urllib3/util/ssl_.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734b188920badbbdabeae3e4c50a68e6b60f3fd402d5e47aa08ef4d38818a99a +size 17165 diff --git a/_vendor/urllib3/util/ssl_match_hostname.py b/_vendor/urllib3/util/ssl_match_hostname.py new file mode 100644 index 0000000000000000000000000000000000000000..65a1a876a42248c4cc36a82104bcc7cdaef58f1f --- /dev/null +++ b/_vendor/urllib3/util/ssl_match_hostname.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22be1c65512398093c8140081d64a2ef0b4e3bcdd4098001636c450f5425fd60 +size 5758 diff --git a/_vendor/urllib3/util/ssltransport.py b/_vendor/urllib3/util/ssltransport.py new file mode 100644 index 0000000000000000000000000000000000000000..4900bc43f1826ec106e7b206748c4d0acaeb7c73 --- /dev/null +++ b/_vendor/urllib3/util/ssltransport.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340faee6b313ac3143142f10cd129410a306d39eb584e0f8a814ebdd9e29bfa1 +size 6895 diff --git a/_vendor/urllib3/util/timeout.py b/_vendor/urllib3/util/timeout.py new file mode 100644 index 0000000000000000000000000000000000000000..b478530ee88a4eaff15c1ef9633fdeb60236f0bb --- /dev/null +++ b/_vendor/urllib3/util/timeout.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4126c150d381f7287a0270e7eb54ab2d0d21839a33d08f7eb97106f75009b888 +size 10003 diff --git a/_vendor/urllib3/util/url.py b/_vendor/urllib3/util/url.py new file mode 100644 index 0000000000000000000000000000000000000000..a35e4e0459c9fb5f7a4e07ab107a04dbe5d516d9 --- /dev/null +++ b/_vendor/urllib3/util/url.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc72b58ac8d1a39f19aac34159e02a731d5223bfc0e8ae7c16db620920eabe8 +size 14270 diff --git a/_vendor/urllib3/util/wait.py b/_vendor/urllib3/util/wait.py new file mode 100644 index 0000000000000000000000000000000000000000..3129acb1341d190a471353d546ffe72665ca2b73 --- /dev/null +++ b/_vendor/urllib3/util/wait.py @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce5f4fdf6a8cc6d8fee25688d0a04d666f277078dc93726fa15c47c5ad3b4b2 +size 5403 diff --git a/www.photopea.com/code/dbs/DBS.js b/www.photopea.com/code/dbs/DBS.js new file mode 100644 index 0000000000000000000000000000000000000000..a7e0fec38070a1df021d67eedb5b9f61e52b07a6 --- /dev/null +++ b/www.photopea.com/code/dbs/DBS.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e021532a81565daf883591cc5ff924837ae9fc2bef48031b316696a54d5ca9 +size 876946 diff --git a/www.photopea.com/code/ext/ext.js b/www.photopea.com/code/ext/ext.js new file mode 100644 index 0000000000000000000000000000000000000000..2ab7843ad008f43bb8f4073d6bf40fa6b6b51157 --- /dev/null +++ b/www.photopea.com/code/ext/ext.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1298d652436fb80375dc67e49fb2964d0d3678dfe53702bfb7e9baedeab84f7c +size 704136 diff --git a/www.photopea.com/code/ext/fribidi.wasm b/www.photopea.com/code/ext/fribidi.wasm new file mode 100644 index 0000000000000000000000000000000000000000..af84224b848b711806e2ad31298593aed86db9ba --- /dev/null +++ b/www.photopea.com/code/ext/fribidi.wasm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7b7b51bd82c45e6dff9cd4afeab8826565a19cba7bb5bbf59965ea84976233 +size 33491 diff --git a/www.photopea.com/code/ext/hb.wasm b/www.photopea.com/code/ext/hb.wasm new file mode 100644 index 0000000000000000000000000000000000000000..872673df8e5fecd34a40ed20378713c94891f2ab --- /dev/null +++ b/www.photopea.com/code/ext/hb.wasm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a132694f9483b27418f737b4b9367e34142d82c8cfe3838bbe4ca963950c3577 +size 398079 diff --git a/www.photopea.com/code/lang/0.js b/www.photopea.com/code/lang/0.js new file mode 100644 index 0000000000000000000000000000000000000000..5c59760c884e89b1ff7f426a7ab1bdf1bbac3ae0 --- /dev/null +++ b/www.photopea.com/code/lang/0.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84d0519d4e5cd879c72d7ca35626da9540495ecdc3c936a68dee1e194f1793f +size 13897 diff --git a/www.photopea.com/code/lang/1.js b/www.photopea.com/code/lang/1.js new file mode 100644 index 0000000000000000000000000000000000000000..58272f717cf68da5a0ac7b4075e47624305512fe --- /dev/null +++ b/www.photopea.com/code/lang/1.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd89e771b68cc057f069fa02ca3638efc99c31ac5b36fcb6277b0c59481fc9d +size 10269 diff --git a/www.photopea.com/code/lang/10.js b/www.photopea.com/code/lang/10.js new file mode 100644 index 0000000000000000000000000000000000000000..9b551e3043509250c4688e56057287c5cabc0f0b --- /dev/null +++ b/www.photopea.com/code/lang/10.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33facafefd3ec89057d8dc062215cc082eb34cd8c52914728afacfd479e78f0 +size 11900 diff --git a/www.photopea.com/code/lang/11.js b/www.photopea.com/code/lang/11.js new file mode 100644 index 0000000000000000000000000000000000000000..ec6a5cb77a8a5ca5a3321439900986fd48c71a1b --- /dev/null +++ b/www.photopea.com/code/lang/11.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fedafafafe6acb2a7046a9f8a68f1cbd91e567666011b797a518717011f794b +size 9708 diff --git a/www.photopea.com/code/lang/12.js b/www.photopea.com/code/lang/12.js new file mode 100644 index 0000000000000000000000000000000000000000..11a25627c2e9d9b216690e20393149b46875d13b --- /dev/null +++ b/www.photopea.com/code/lang/12.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4dc9cd380ffb473ed6885956003871aa8314135655b77f860976d8894eefae +size 10600 diff --git a/www.photopea.com/code/lang/13.js b/www.photopea.com/code/lang/13.js new file mode 100644 index 0000000000000000000000000000000000000000..d950e23a14966f74db509a53be900db67b94d7f8 --- /dev/null +++ b/www.photopea.com/code/lang/13.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dcfdaec507a8da842e58dc07e22a65078e2c2c40ff9a0ad651dbaefa774973 +size 9735 diff --git a/www.photopea.com/code/lang/14.js b/www.photopea.com/code/lang/14.js new file mode 100644 index 0000000000000000000000000000000000000000..6c523b1cb5767b0ce00468064f45f11d7b9a803b --- /dev/null +++ b/www.photopea.com/code/lang/14.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bc21c53c60af61b340bd5c52d6a7f3f738fa4e2d4f1f741e76c94c2af42b92 +size 10188 diff --git a/www.photopea.com/code/lang/15.js b/www.photopea.com/code/lang/15.js new file mode 100644 index 0000000000000000000000000000000000000000..906d7030f5c3d31e1de3932b6b9d3bf66577235c --- /dev/null +++ b/www.photopea.com/code/lang/15.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb7433a60889d8e19ce12a386a5cf5aabbb3b488eae23106742ee24680fea766 +size 9729 diff --git a/www.photopea.com/code/lang/16.js b/www.photopea.com/code/lang/16.js new file mode 100644 index 0000000000000000000000000000000000000000..d1570e02000d957d2430c69b9accb7431696a833 --- /dev/null +++ b/www.photopea.com/code/lang/16.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879910c000b6c7127a0ca5de816b8e7186158e51bbaa24ca5193a13853013d4d +size 9545 diff --git a/www.photopea.com/code/lang/17.js b/www.photopea.com/code/lang/17.js new file mode 100644 index 0000000000000000000000000000000000000000..aacdfe03a189f4d37f402d1ada191bee6f7291ed --- /dev/null +++ b/www.photopea.com/code/lang/17.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e42f4d2a8ba911a1e70f9b7e0bf6f97d35eb78bc6ed7ee1e94a5589478b13f +size 10342 diff --git a/www.photopea.com/code/lang/18.js b/www.photopea.com/code/lang/18.js new file mode 100644 index 0000000000000000000000000000000000000000..2bee958e62f8da476abee131eafdc0a19055a619 --- /dev/null +++ b/www.photopea.com/code/lang/18.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef67eafb61215d5330071cc9476ff613850521ffdd511696d118a7e496fe197 +size 9317 diff --git a/www.photopea.com/code/lang/19.js b/www.photopea.com/code/lang/19.js new file mode 100644 index 0000000000000000000000000000000000000000..8f652810a24dbc1e543b8dd6f75f9c2d105d09d2 --- /dev/null +++ b/www.photopea.com/code/lang/19.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631ef884e335559a2551d2d67034e0d91feea5c95f4077bee98ec8f5a1b24a9a +size 10540 diff --git a/www.photopea.com/code/lang/2.js b/www.photopea.com/code/lang/2.js new file mode 100644 index 0000000000000000000000000000000000000000..4cbe91028ed93027c98e2755190bf8c1e30fe497 --- /dev/null +++ b/www.photopea.com/code/lang/2.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6c52f23bb567393e7a07f57ac08f47cc70f3f7476b3cc6b3644feb2d41595c +size 11035 diff --git a/www.photopea.com/code/lang/20.js b/www.photopea.com/code/lang/20.js new file mode 100644 index 0000000000000000000000000000000000000000..5f8ff818cd881b732e49f79793640cb1bbf0e11f --- /dev/null +++ b/www.photopea.com/code/lang/20.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c46ed0f981538502246cc73291a01134680726d3b5b414994c06096e767db9 +size 10776 diff --git a/www.photopea.com/code/lang/21.js b/www.photopea.com/code/lang/21.js new file mode 100644 index 0000000000000000000000000000000000000000..f17fc4c6b428684ecd55153f30be8a0d0d64dbbf --- /dev/null +++ b/www.photopea.com/code/lang/21.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdcd87e2a61ba06ac26c4dfd76fdd5509a5cd9500781eedf94822895a056fca +size 8423 diff --git a/www.photopea.com/code/lang/22.js b/www.photopea.com/code/lang/22.js new file mode 100644 index 0000000000000000000000000000000000000000..6c51fe6c7c81b004f013e50fda70dcfa4e24c550 --- /dev/null +++ b/www.photopea.com/code/lang/22.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ae7c392ed1088660e2b5327eae46186c92a8d1f39e2535f42099dc40f55959 +size 8590 diff --git a/www.photopea.com/code/lang/23.js b/www.photopea.com/code/lang/23.js new file mode 100644 index 0000000000000000000000000000000000000000..3ca37b93ba558451b994d85ec1dfdb0ca9f2d64c --- /dev/null +++ b/www.photopea.com/code/lang/23.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0358119d6a7c63b278ec98147d0eab5ca0eda86c82e8d56ec52462241e3b9fd9 +size 8379 diff --git a/www.photopea.com/code/lang/24.js b/www.photopea.com/code/lang/24.js new file mode 100644 index 0000000000000000000000000000000000000000..188e030dbef3d8d518bc820954e898df66670542 --- /dev/null +++ b/www.photopea.com/code/lang/24.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431c5d5eaaafc478a06ed7bd007a002963dcfa773551b22abaf80d81aa1966da +size 17496 diff --git a/www.photopea.com/code/lang/25.js b/www.photopea.com/code/lang/25.js new file mode 100644 index 0000000000000000000000000000000000000000..fc44bfa4c2d8e9e086bc75512d5bc5fab180ea8a --- /dev/null +++ b/www.photopea.com/code/lang/25.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cba65e2ede6d30a9b694c11675b556fc7922f294ce1244f0035185acb3b66d +size 13105 diff --git a/www.photopea.com/code/lang/26.js b/www.photopea.com/code/lang/26.js new file mode 100644 index 0000000000000000000000000000000000000000..a4fb5a60ef03f2e20f8fcda57f981a98cb3ea72d --- /dev/null +++ b/www.photopea.com/code/lang/26.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32aa2b208cfd008d048a315441501c5e229af55f06302eef15dd7d8a6f377ce +size 10714 diff --git a/www.photopea.com/code/lang/27.js b/www.photopea.com/code/lang/27.js new file mode 100644 index 0000000000000000000000000000000000000000..e7be5c0e07def0ac06819683eb4b19ec31d07ea0 --- /dev/null +++ b/www.photopea.com/code/lang/27.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d5c39a416d5fe7bd108c4fc98235b91cebb1607879a44378128c5c13c5c9af +size 10915 diff --git a/www.photopea.com/code/lang/28.js b/www.photopea.com/code/lang/28.js new file mode 100644 index 0000000000000000000000000000000000000000..681f1093a1b98d5f8827282e50d7d5c103725e9a --- /dev/null +++ b/www.photopea.com/code/lang/28.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee3fe3355fc0d937c8119a5d6d982cdf8513e17b5913659ed55926273ebb9a5 +size 11697 diff --git a/www.photopea.com/code/lang/29.js b/www.photopea.com/code/lang/29.js new file mode 100644 index 0000000000000000000000000000000000000000..9a6c8d23ac4c5a52c4355ef282ea7d81af880df2 --- /dev/null +++ b/www.photopea.com/code/lang/29.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81cca22029b3b5967202ebdbf11f7dd984039027c058d697c0c1f11b4720414 +size 10134 diff --git a/www.photopea.com/code/lang/3.js b/www.photopea.com/code/lang/3.js new file mode 100644 index 0000000000000000000000000000000000000000..a5a753c5b66ab6904c1868bb243e14322565d000 --- /dev/null +++ b/www.photopea.com/code/lang/3.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eadc8a2d0524ab8e4c7722bedd72a89dfb5172ae019ea1451bcf399909767a9 +size 10856 diff --git a/www.photopea.com/code/lang/30.js b/www.photopea.com/code/lang/30.js new file mode 100644 index 0000000000000000000000000000000000000000..a30cf89936dacf9852ec477fc38a8535cb2f404b --- /dev/null +++ b/www.photopea.com/code/lang/30.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f903c0377568b84c56f443ec6f07568b7e40afdbccf377674fe8c20cd4ceda5c +size 11627 diff --git a/www.photopea.com/code/lang/31.js b/www.photopea.com/code/lang/31.js new file mode 100644 index 0000000000000000000000000000000000000000..8d0baa413456dbf67c7cfb84ac48d849bda29bcd --- /dev/null +++ b/www.photopea.com/code/lang/31.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30d1faa9a3744c07dfa70dc936fe32f110510b3a4d2a35759c0542102221acd +size 16500 diff --git a/www.photopea.com/code/lang/32.js b/www.photopea.com/code/lang/32.js new file mode 100644 index 0000000000000000000000000000000000000000..92f32c97690bb1fe719b5477917c13fdc6f1f950 --- /dev/null +++ b/www.photopea.com/code/lang/32.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da345168b0def04ac76fc63260eb9ee9e5f51b028317d3469fd81998b4a76463 +size 17673 diff --git a/www.photopea.com/code/lang/33.js b/www.photopea.com/code/lang/33.js new file mode 100644 index 0000000000000000000000000000000000000000..ef18e0b3334a04cb526c2a544b1e39eeeeba37bd --- /dev/null +++ b/www.photopea.com/code/lang/33.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9b1ec8af82efacc9b346ce12f80f130fe9997c96d6df6961be18f995d9012d +size 8473 diff --git a/www.photopea.com/code/lang/34.js b/www.photopea.com/code/lang/34.js new file mode 100644 index 0000000000000000000000000000000000000000..d3e922a38ae7cc2fcf602c66b23124840ea075b6 --- /dev/null +++ b/www.photopea.com/code/lang/34.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eddf3fdb0972ba443d912a53d7c9077f435b9ee4ee2546681f34b5b1c6595f6 +size 27368 diff --git a/www.photopea.com/code/lang/35.js b/www.photopea.com/code/lang/35.js new file mode 100644 index 0000000000000000000000000000000000000000..d533a91c4acfe8e0ac05fd2b28f40f2cbd42fdd5 --- /dev/null +++ b/www.photopea.com/code/lang/35.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf02e2fe08ba9d7295594d5754c3662ba8fbfa0cca03ed0fb440853f67730d88 +size 26113 diff --git a/www.photopea.com/code/lang/36.js b/www.photopea.com/code/lang/36.js new file mode 100644 index 0000000000000000000000000000000000000000..2fb69162b389a5e42c02fda06926576b8c9316c0 --- /dev/null +++ b/www.photopea.com/code/lang/36.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cd5a3b31d0008c0015f9bc9a9f5c38aa9c1b08c99bf842143392b47f4b9238 +size 10549 diff --git a/www.photopea.com/code/lang/37.js b/www.photopea.com/code/lang/37.js new file mode 100644 index 0000000000000000000000000000000000000000..872ab6b45061cb14b6219b7333ff2dfb2721fbdc --- /dev/null +++ b/www.photopea.com/code/lang/37.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1540e219b35e6f06104019c6c3cf9877be9fc92f0fb7448c5a7dcc32a2de3ee0 +size 9631 diff --git a/www.photopea.com/code/lang/38.js b/www.photopea.com/code/lang/38.js new file mode 100644 index 0000000000000000000000000000000000000000..76682fc42b96997fb440f11f866cae007cf4a07b --- /dev/null +++ b/www.photopea.com/code/lang/38.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44c3d337e1872d3a5d33aef0a98a929a1931883ad49649a2b8cde42fd42c27c +size 8854 diff --git a/www.photopea.com/code/lang/39.js b/www.photopea.com/code/lang/39.js new file mode 100644 index 0000000000000000000000000000000000000000..0924cb85d3d86ed41576b2dabce600bdc6ccaa87 --- /dev/null +++ b/www.photopea.com/code/lang/39.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92488c33c8010bc1818d5f332dad89d7c5fdad5353eb0565f976cb69eba8aa0d +size 11738 diff --git a/www.photopea.com/code/lang/4.js b/www.photopea.com/code/lang/4.js new file mode 100644 index 0000000000000000000000000000000000000000..37202b63aae720489278ff25c6f4095c9aca98bb --- /dev/null +++ b/www.photopea.com/code/lang/4.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc66a39fb41c3ed40bac37343995a9742638cdca5aa6f571f1773e6acfc499ce +size 11300 diff --git a/www.photopea.com/code/lang/40.js b/www.photopea.com/code/lang/40.js new file mode 100644 index 0000000000000000000000000000000000000000..71f901bd293fd3dad40844e8afb365d99ec05b09 --- /dev/null +++ b/www.photopea.com/code/lang/40.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b6dd854b94750d89f6920580c7a0779182620d745fc0faae0cba7b4a6b9b800 +size 14995 diff --git a/www.photopea.com/code/lang/5.js b/www.photopea.com/code/lang/5.js new file mode 100644 index 0000000000000000000000000000000000000000..63a05816170e5d205a1871d59214798b80aa366b --- /dev/null +++ b/www.photopea.com/code/lang/5.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a5de80f4c991559a0524838dc183c510da5d26aca20eb72f46e7acc3d4180d +size 19336 diff --git a/www.photopea.com/code/lang/6.js b/www.photopea.com/code/lang/6.js new file mode 100644 index 0000000000000000000000000000000000000000..7b9a23f6280f581b704971d6a580a72460d82786 --- /dev/null +++ b/www.photopea.com/code/lang/6.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf25c8e11a6f0c5b3a23850b2521a7864bb1959a09d3daff44c9068380d9f6d +size 14107 diff --git a/www.photopea.com/code/lang/7.js b/www.photopea.com/code/lang/7.js new file mode 100644 index 0000000000000000000000000000000000000000..9187838ddddb38fde5db39090db0255864bbcb6a --- /dev/null +++ b/www.photopea.com/code/lang/7.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40828e3060f091f5dae21cca637da730cce337f45a91a7ef5135929eb10b489d +size 11062 diff --git a/www.photopea.com/code/lang/8.js b/www.photopea.com/code/lang/8.js new file mode 100644 index 0000000000000000000000000000000000000000..0d73b1eb08aad449d16ecf1f8537eda2d1bfd421 --- /dev/null +++ b/www.photopea.com/code/lang/8.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1f5699b2ed9874edadc98ad6b34d8e7bed7585fbd7a31e6553d7feaec446fd +size 18768 diff --git a/www.photopea.com/code/lang/9.js b/www.photopea.com/code/lang/9.js new file mode 100644 index 0000000000000000000000000000000000000000..7771154f0dcadef6c4712f00acc6ab32b74b9d17 --- /dev/null +++ b/www.photopea.com/code/lang/9.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278e2eef534c6d2b8ac39f0864753f955448657544325aea875ff127ef27557f +size 19041 diff --git a/www.photopea.com/code/pp/pp.js b/www.photopea.com/code/pp/pp.js new file mode 100644 index 0000000000000000000000000000000000000000..1039e04815732da8f9029e7ffeb21aa1988d0d89 --- /dev/null +++ b/www.photopea.com/code/pp/pp.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5f9b8c5dd3155031d794a3a7b6830082f3ec7f71e5a0dd2a015f38759185df +size 2201091 diff --git a/www.photopea.com/code/storages/deviceStorage.html b/www.photopea.com/code/storages/deviceStorage.html new file mode 100644 index 0000000000000000000000000000000000000000..d337e865525a0aa71a69964eee9b6683c4f69822 --- /dev/null +++ b/www.photopea.com/code/storages/deviceStorage.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a672071876b5ec6270443f996cadcc25ece003e026edeac47788b2e45b0dc5b +size 9279 diff --git a/www.photopea.com/code/storages/dropboxStorage.html b/www.photopea.com/code/storages/dropboxStorage.html new file mode 100644 index 0000000000000000000000000000000000000000..0776a54b8edd3eba4e0cfca6afad4000eee595f8 --- /dev/null +++ b/www.photopea.com/code/storages/dropboxStorage.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4254b6fda64a50cce40582faaeae5bd52247e9d0c9303c03445f2c22fbccd113 +size 10305 diff --git a/www.photopea.com/code/storages/googledriveStorage.html b/www.photopea.com/code/storages/googledriveStorage.html new file mode 100644 index 0000000000000000000000000000000000000000..3cd38c3f60872fae1929c5e497b1e571987cf511 --- /dev/null +++ b/www.photopea.com/code/storages/googledriveStorage.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092fee878f298f10668f39086ab2712ae8e96af636646c1eb4404c025b4cd71b +size 20292 diff --git a/www.photopea.com/images/milk.sketch b/www.photopea.com/images/milk.sketch new file mode 100644 index 0000000000000000000000000000000000000000..fd445251dab2cf15c430dd208ad3865dbe3b21e5 --- /dev/null +++ b/www.photopea.com/images/milk.sketch @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42e7e09a18b921e014d166079f6810d1c233d27af05a88c96de166cb328a2ee +size 229376 diff --git a/www.photopea.com/images/pea.psd b/www.photopea.com/images/pea.psd new file mode 100644 index 0000000000000000000000000000000000000000..b71ec398681d02e053cb50d12b0107cfcdf42730 --- /dev/null +++ b/www.photopea.com/images/pea.psd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c1e140637dda67f42a2568450b4d76eced176b05aca9b45f37853e8a5efb5c +size 302535 diff --git a/www.photopea.com/img/nft.png b/www.photopea.com/img/nft.png new file mode 100644 index 0000000000000000000000000000000000000000..2d7dd9df7322c097278273644b0e9bfbbf7ed3b5 --- /dev/null +++ b/www.photopea.com/img/nft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117607babb473052171d35023ed6d9b438c942a6ae1ed15d79125664e79a0f64 +size 8168 diff --git a/www.photopea.com/index.html b/www.photopea.com/index.html new file mode 100644 index 0000000000000000000000000000000000000000..d20ba96df9048dcc8ed4951f50007912207cfcea --- /dev/null +++ b/www.photopea.com/index.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa48f24d3756c8a05895481dc35d4bc57ca168184459c5b69aa13813ec3d701 +size 3827 diff --git a/www.photopea.com/papi/tpls.json b/www.photopea.com/papi/tpls.json new file mode 100644 index 0000000000000000000000000000000000000000..818ef50e9d1676c39e44183659c4ac815e9a1a3f --- /dev/null +++ b/www.photopea.com/papi/tpls.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5c523c8528b2f2ab54129e85a155f71f2c5873cd70dff7d4daeba5461a7e88 +size 348189 diff --git a/www.photopea.com/promo/thumb256.png b/www.photopea.com/promo/thumb256.png new file mode 100644 index 0000000000000000000000000000000000000000..a2b2a7bbd88b1081464c5efef12a0141f2fed87c --- /dev/null +++ b/www.photopea.com/promo/thumb256.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095a0358b9a874ba07472ce39e1fdc03ad119487a6ac3882b305ff862203e0b5 +size 2637 diff --git a/www.photopea.com/rsrc/basic/basic.zip b/www.photopea.com/rsrc/basic/basic.zip new file mode 100644 index 0000000000000000000000000000000000000000..580ed6fdf51d279fd268fc31dc4654d199a6ef27 --- /dev/null +++ b/www.photopea.com/rsrc/basic/basic.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475a6addc4c9bd1ddb54dd8332880fe8c342b65681cbf7d6f4a2cdfd098b789b +size 65056 diff --git a/www.photopea.com/rsrc/basic/fa_basic.csh b/www.photopea.com/rsrc/basic/fa_basic.csh new file mode 100644 index 0000000000000000000000000000000000000000..6cf61864c5c8835e87deb65172d828573eb6e735 --- /dev/null +++ b/www.photopea.com/rsrc/basic/fa_basic.csh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3179f47e3812be2feaba11c6135683d65edd4137e09f99cbfbed1d2c2c36013 +size 514060 diff --git a/www.photopea.com/rsrc/fonts/fonts.png b/www.photopea.com/rsrc/fonts/fonts.png new file mode 100644 index 0000000000000000000000000000000000000000..a82aaa0bacd7338c37fe2a18d78553c6018a39b4 --- /dev/null +++ b/www.photopea.com/rsrc/fonts/fonts.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88208a66b734090063a198ac216f360fa17bebb49f6fd47a837aff224cce730a +size 1410724 diff --git a/www.photopea.com/style/all.css b/www.photopea.com/style/all.css new file mode 100644 index 0000000000000000000000000000000000000000..4fe244a9759915326b3f432554410abef0aeb0bc --- /dev/null +++ b/www.photopea.com/style/all.css @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6033e6a9651805e511c029d441028b7a090549fbfad54bf0e2c05376924dc67b +size 33293 diff --git a/www.photopea.com/templates/index.html b/www.photopea.com/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..42f765710ccd3dfc34686f2545d344ab7d0ebf1d --- /dev/null +++ b/www.photopea.com/templates/index.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078ebc19b9311d8b37604344f9488b13b05a52c69f86710fdeb2bf5b9b937b48 +size 8413 diff --git a/www.photopea.com/templates/templates.css b/www.photopea.com/templates/templates.css new file mode 100644 index 0000000000000000000000000000000000000000..73cbddd78090fe7ce895420b56c4e10b209846be --- /dev/null +++ b/www.photopea.com/templates/templates.css @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8419f131b4b831a8008ee8add7d415b8503665eb5a49e17ef256c1f90b5ed2b7 +size 2187 diff --git a/www.photopea.com/templates/templates.js b/www.photopea.com/templates/templates.js new file mode 100644 index 0000000000000000000000000000000000000000..a2ac7422aed349a6e61bb7a410e6ecf5fd59ab79 --- /dev/null +++ b/www.photopea.com/templates/templates.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85720dfc58502c4052a7eb95e8c8057963bcb1bcc1ca7b62d558ae255fd70168 +size 11710