diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml new file mode 100644 index 00000000..98c79dd7 --- /dev/null +++ b/.github/workflows/check.yaml @@ -0,0 +1,80 @@ +name: Test iso-codes, build and publish to TestPypi +on: [pull_request] +jobs: + test: + name: Run tests + runs-on: ubuntu-20.04 + strategy: + matrix: + env: + - "3.13" + - "3.12" + - "3.11" + - "3.10" + - "3.9" + - type + - dev + - pkg_meta + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + cache-dependency-glob: "pyproject.toml" + - name: Install tox + run: uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv + - name: Install Python + if: startsWith(matrix.env, '3.') && matrix.env != '3.13' + run: uv python install --python-preference only-managed ${{ matrix.env }} + - name: Setup test suite + run: tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.env }} + - name: Run test suite + run: tox run --skip-pkg-install -e ${{ matrix.env }} + env: + PYTEST_ADDOPTS: "-vv --durations=20" + DIFF_AGAINST: HEAD + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + cache-dependency-glob: "pyproject.toml" + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Build package + run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist + - name: Store the distribution packages + uses: actions/upload-artifact@v4 + with: + name: ${{ env.dists-artifact-name }} + path: dist/* + + release: + needs: + - build + runs-on: ubuntu-latest + environment: + name: release + url: https://pypi.org/project/tox-uv/${{ github.ref_name }} + permissions: + id-token: write + steps: + - name: Download all the dists + uses: actions/download-artifact@v4 + with: + name: ${{ env.dists-artifact-name }} + path: dist/ + - name: Publish to Test PyPI + uses: pypa/gh-action-pypi-publish@v1.12.2 + with: + password: ${{ secrets.test_pypi_password }} + repository-url: https://test.pypi.org/legacy/ + skip-existing: true diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml deleted file mode 100644 index d9a5f7fe..00000000 --- a/.github/workflows/publish.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Publish Python 🐍 distributions 📦 to PyPI -on: - push: - tags: - - "*" -jobs: - build-n-publish: - name: Build and publish Python 🐍 distributions 📦 to PyPI - runs-on: ubuntu-20.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Python 3.9 - uses: actions/setup-python@v5 - with: - python-version: 3.9 - - name: Install dependencies - run: pip install -r requirements/build-requirements.txt - - name: Build package - run: hatch build - - name: Publish distribution 📦 to PyPI - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@v1.10.1 - with: - password: ${{ secrets.pypi_password }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..9de23c96 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,48 @@ +name: Release to PyPI +on: + push: + tags: ["*"] + +env: + dists-artifact-name: python-package-distributions + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + cache-dependency-glob: "pyproject.toml" + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Build package + run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist + - name: Store the distribution packages + uses: actions/upload-artifact@v4 + with: + name: ${{ env.dists-artifact-name }} + path: dist/* + + release: + needs: + - build + runs-on: ubuntu-latest + environment: + name: release + url: https://pypi.org/project/tox-uv/${{ github.ref_name }} + permissions: + id-token: write + steps: + - name: Download all the dists + uses: actions/download-artifact@v4 + with: + name: ${{ env.dists-artifact-name }} + path: dist/ + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@v1.12.2 + with: + password: ${{ secrets.pypi_password }} \ No newline at end of file diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml deleted file mode 100644 index 279dac97..00000000 --- a/.github/workflows/tests.yaml +++ /dev/null @@ -1,43 +0,0 @@ -name: Test iso-codes, build and publish to TestPypi -on: [pull_request] -jobs: - pytest: - name: Run tests - runs-on: ubuntu-20.04 - strategy: - matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12"] - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python }} - - name: Install test dependencies - run: pip install -r requirements/test-requirements.txt - - name: Run Tox - run: tox -e py - build-n-publish-testpypi: - name: Build and publish Python 🐍 distributions 📦 to TestPyPI - runs-on: ubuntu-20.04 - permissions: - contents: read - id-token: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Python 3.9 - uses: actions/setup-python@v5 - with: - python-version: 3.9 - - name: Install build dependencies - run: pip install -r requirements/build-requirements.txt - - name: Build package - run: hatch build - - name: Publish distribution 📦 to Test PyPI - uses: pypa/gh-action-pypi-publish@v1.10.1 - with: - password: ${{ secrets.test_pypi_password }} - repository-url: https://test.pypi.org/legacy/ - skip-existing: true diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3289dd09..9dff76e3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,25 +1,40 @@ -# See https://pre-commit.com for more information -# See https://pre-commit.com/hooks.html for more hooks -default_language_version: - python: python3.10 repos: -- repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 - hooks: - - id: check-added-large-files - - id: check-toml - - id: check-yaml - args: - - --unsafe - - id: end-of-file-fixer - - id: trailing-whitespace -- repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.2.0 - hooks: - - id: ruff - args: - - --fix - - id: ruff-format -ci: - autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks - autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: end-of-file-fixer + - id: trailing-whitespace + - repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.29.4 + hooks: + - id: check-github-workflows + args: ["--verbose"] + - repo: https://github.com/codespell-project/codespell + rev: v2.3.0 + hooks: + - id: codespell + additional_dependencies: ["tomli>=2.0.2"] + - repo: https://github.com/tox-dev/tox-ini-fmt + rev: "1.4.1" + hooks: + - id: tox-ini-fmt + args: ["-p", "fix"] + - repo: https://github.com/tox-dev/pyproject-fmt + rev: "v2.5.0" + hooks: + - id: pyproject-fmt + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.7.4" + hooks: + - id: ruff-format + - id: ruff + args: ["--fix", "--unsafe-fixes", "--exit-non-zero-on-fix"] + - repo: https://github.com/rbubley/mirrors-prettier + rev: "v3.3.3" + hooks: + - id: prettier + args: ["--print-width=120", "--prose-wrap=always"] + - repo: meta + hooks: + - id: check-hooks-apply + - id: check-useless-excludes \ No newline at end of file diff --git a/isocodes/share/locale/ab/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ab/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 09f6341a..00000000 Binary files a/isocodes/share/locale/ab/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ab/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ab/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 2193d1d3..00000000 Binary files a/isocodes/share/locale/ab/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ace/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ace/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 3294922f..00000000 Binary files a/isocodes/share/locale/ace/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ach/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ach/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 27643b8d..00000000 Binary files a/isocodes/share/locale/ach/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/af/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/af/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4044ce81..00000000 Binary files a/isocodes/share/locale/af/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/af/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/af/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ba97f187..00000000 Binary files a/isocodes/share/locale/af/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/af/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/af/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1488104a..00000000 Binary files a/isocodes/share/locale/af/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/af/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/af/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 667f28be..00000000 Binary files a/isocodes/share/locale/af/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ak/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ak/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 42776606..00000000 Binary files a/isocodes/share/locale/ak/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/am/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/am/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4c3f214f..00000000 Binary files a/isocodes/share/locale/am/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/am/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/am/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index b009b1d4..00000000 Binary files a/isocodes/share/locale/am/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/am/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/am/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index fbf15f49..00000000 Binary files a/isocodes/share/locale/am/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/am/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/am/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 8d03b467..00000000 Binary files a/isocodes/share/locale/am/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/an/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/an/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 42d85355..00000000 Binary files a/isocodes/share/locale/an/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index b09763ee..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index cd863f5c..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 507e7629..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 663726c4..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e3647b92..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ar/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ar/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 8749de69..00000000 Binary files a/isocodes/share/locale/ar/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/as/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/as/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e30b1354..00000000 Binary files a/isocodes/share/locale/as/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/as/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/as/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 3a85d867..00000000 Binary files a/isocodes/share/locale/as/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/as/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/as/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 5940dd52..00000000 Binary files a/isocodes/share/locale/as/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 1510c57a..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c42640f8..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index d3c3d7e1..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 6e1a1043..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 76e3883c..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d6f898ab..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 9c9d7a13..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ast/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 4708f329..00000000 Binary files a/isocodes/share/locale/ast/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ay/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ay/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 722bb6de..00000000 Binary files a/isocodes/share/locale/ay/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/az/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fd2cd1e3..00000000 Binary files a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/az/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index fb29b862..00000000 Binary files a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/az/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 8dc5cc70..00000000 Binary files a/isocodes/share/locale/az/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/az/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/az/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 2c9bc97d..00000000 Binary files a/isocodes/share/locale/az/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/az/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/az/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 4ff1517b..00000000 Binary files a/isocodes/share/locale/az/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ba/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ba/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fed8c412..00000000 Binary files a/isocodes/share/locale/ba/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bar/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bar/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 1f6607e5..00000000 Binary files a/isocodes/share/locale/bar/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 02e61371..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 1b002b54..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index ccd9fc0e..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index dcb98425..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 168318d5..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index f14a0c09..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index f69e8c20..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/be/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/be/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 503d8e95..00000000 Binary files a/isocodes/share/locale/be/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index dbfdb6ff..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e3be16e5..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 958264c1..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 0d3037ea..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index fa135b55..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bg/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/bg/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 0c92dc9c..00000000 Binary files a/isocodes/share/locale/bg/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 3ca1db7a..00000000 Binary files a/isocodes/share/locale/bi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fb134cc1..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index f5e17012..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d6c0f08f..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 40af2b99..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 17012ef7..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/bn/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 87024da6..00000000 Binary files a/isocodes/share/locale/bn/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index bee7a566..00000000 Binary files a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index e243d57d..00000000 Binary files a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 0fba2f6c..00000000 Binary files a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 4d13bb31..00000000 Binary files a/isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f6ac138f..00000000 Binary files a/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 83fa1aa6..00000000 Binary files a/isocodes/share/locale/bn_IN/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 46130822..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 1f793fb5..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 46fe2d87..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 4ba7f93a..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 05bc149b..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/br/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/br/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a194e2e8..00000000 Binary files a/isocodes/share/locale/br/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 9f95ff3d..00000000 Binary files a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index bce0d0c5..00000000 Binary files a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d4de4daa..00000000 Binary files a/isocodes/share/locale/bs/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/bs/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/bs/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 7bdfaf70..00000000 Binary files a/isocodes/share/locale/bs/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/bs/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/bs/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 393cd4a3..00000000 Binary files a/isocodes/share/locale/bs/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a31f539e..00000000 Binary files a/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 6aa6db6f..00000000 Binary files a/isocodes/share/locale/byn/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/byn/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/byn/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index fe4cbcc6..00000000 Binary files a/isocodes/share/locale/byn/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/byn/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/byn/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c456f773..00000000 Binary files a/isocodes/share/locale/byn/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index a06cc554..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 9b00915c..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 8416b0cb..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 13beeb80..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index f57c5f6d..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9fcac78b..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ca/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ca/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 4db8b6bf..00000000 Binary files a/isocodes/share/locale/ca/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ce/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ce/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c1646fc1..00000000 Binary files a/isocodes/share/locale/ce/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ch/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ch/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 079e2d72..00000000 Binary files a/isocodes/share/locale/ch/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/chr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/chr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a3778663..00000000 Binary files a/isocodes/share/locale/chr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ckb/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ckb/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 11b3a5e3..00000000 Binary files a/isocodes/share/locale/ckb/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ckb/LC_MESSAGES/iso_639_3.mo b/isocodes/share/locale/ckb/LC_MESSAGES/iso_639_3.mo new file mode 120000 index 00000000..a11b2a4a --- /dev/null +++ b/isocodes/share/locale/ckb/LC_MESSAGES/iso_639_3.mo @@ -0,0 +1 @@ +iso_639-3.mo \ No newline at end of file diff --git a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a427bf2f..00000000 Binary files a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index b2951254..00000000 Binary files a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ba969452..00000000 Binary files a/isocodes/share/locale/crh/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/crh/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/crh/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 00a9994a..00000000 Binary files a/isocodes/share/locale/crh/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/crh/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/crh/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index dac55fe8..00000000 Binary files a/isocodes/share/locale/crh/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 24943290..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 61ec42a3..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 7810c1f0..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index e263b738..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 0dfefee9..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d5981092..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 864f3d63..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/cs/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 134e17b4..00000000 Binary files a/isocodes/share/locale/cs/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/csb/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/csb/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 66ce3691..00000000 Binary files a/isocodes/share/locale/csb/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/cv/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/cv/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 733492fb..00000000 Binary files a/isocodes/share/locale/cv/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/cv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/cv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 31e566f4..00000000 Binary files a/isocodes/share/locale/cv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 871bd598..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 56de878d..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 7cd1e36f..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 80a8bf1d..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d3cee86d..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index a18e75a6..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 06f627d2..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/cy/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 563106c2..00000000 Binary files a/isocodes/share/locale/cy/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index f1d54555..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 64e89876..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 71471b21..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fa9c5048..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 49775aad..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1d759942..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index e8987d6b..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/da/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/da/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 1a0e9ac6..00000000 Binary files a/isocodes/share/locale/da/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index aa576921..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 41b1f7e8..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index a4fb7d8a..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 3121abff..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 02594130..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index c195e873..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c48f5d09..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/de/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/de/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 89d9b1c3..00000000 Binary files a/isocodes/share/locale/de/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/dv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/dv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 0a0f8de2..00000000 Binary files a/isocodes/share/locale/dv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 1680ba6f..00000000 Binary files a/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 0603b3ca..00000000 Binary files a/isocodes/share/locale/dz/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ee/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ee/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 5ffd2319..00000000 Binary files a/isocodes/share/locale/ee/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index b24d46cb..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7dd6d789..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index a4274f73..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index b0a65c7f..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index c08a168e..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index f2d776f0..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 591d3ff7..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/el/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/el/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 7eea0aa3..00000000 Binary files a/isocodes/share/locale/el/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/en/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/en/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index c8a4213b..00000000 Binary files a/isocodes/share/locale/en/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 04c35cd1..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 646542ad..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 2a3351dd..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 7a95bdc5..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index b2fdb373..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 975994fe..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 151d60f0..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/eo/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 566c6a26..00000000 Binary files a/isocodes/share/locale/eo/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 22f16492..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 6a8cbefa..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 02967c2d..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 38b5758d..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 94e820e5..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e4e5946f..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/es/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/es/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 58da5701..00000000 Binary files a/isocodes/share/locale/es/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index b91269c6..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 46b473d1..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index a91e2cf3..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d618e9d9..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d30ce668..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 46c5c9aa..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index ccf9c094..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/et/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/et/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 6b36fc1c..00000000 Binary files a/isocodes/share/locale/et/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index bbb7cca3..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d974098f..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 301a8bc1..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fee829ea..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 59a873c9..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d7850008..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/eu/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/eu/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index d3395e74..00000000 Binary files a/isocodes/share/locale/eu/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index e9752e26..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f542be84..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 095f5745..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 4cbe0619..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index c6d7977e..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fa/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/fa/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 223f2852..00000000 Binary files a/isocodes/share/locale/fa/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ff/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ff/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d02090d4..00000000 Binary files a/isocodes/share/locale/ff/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index c5df0cc9..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 37012727..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index c4444d1a..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 0d0164e2..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d77bb358..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9552a850..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fi/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/fi/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a097d20a..00000000 Binary files a/isocodes/share/locale/fi/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fil/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/fil/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index e8e857c3..00000000 Binary files a/isocodes/share/locale/fil/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d5602bc0..00000000 Binary files a/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 35b5fde0..00000000 Binary files a/isocodes/share/locale/fil/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 23327ae2..00000000 Binary files a/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 4e36f12c..00000000 Binary files a/isocodes/share/locale/fo/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 62b78b18..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 65516dd1..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index e55fc69c..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 3e76d0c1..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index a73aa850..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 0755a72b..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index d8057374..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/fr/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 3e6f04de..00000000 Binary files a/isocodes/share/locale/fr/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/frp/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/frp/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c261a3a4..00000000 Binary files a/isocodes/share/locale/frp/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index ca89847b..00000000 Binary files a/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 7e3ac265..00000000 Binary files a/isocodes/share/locale/fur/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/fur/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 679da2af..00000000 Binary files a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/fur/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 56d6c407..00000000 Binary files a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/fur/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 6323898b..00000000 Binary files a/isocodes/share/locale/fur/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/fy/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/fy/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fc326954..00000000 Binary files a/isocodes/share/locale/fy/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 529b111d..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index e4e50294..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 0a9dd28c..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index a8a49df9..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1080771c..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ga/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ga/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c5611168..00000000 Binary files a/isocodes/share/locale/ga/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7fcd8057..00000000 Binary files a/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index aff223a4..00000000 Binary files a/isocodes/share/locale/gez/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gez/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/gez/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index ce457246..00000000 Binary files a/isocodes/share/locale/gez/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/gez/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/gez/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 636b0124..00000000 Binary files a/isocodes/share/locale/gez/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 05e14408..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d123d395..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index c28f802b..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 56657f81..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index b4a29a52..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/gl/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/gl/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 4dcc913d..00000000 Binary files a/isocodes/share/locale/gl/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/gn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 895241bb..00000000 Binary files a/isocodes/share/locale/gn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c8e05c30..00000000 Binary files a/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 8563fa25..00000000 Binary files a/isocodes/share/locale/gu/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gu/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/gu/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9ed7b352..00000000 Binary files a/isocodes/share/locale/gu/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/gu/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/gu/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index ba1d2c07..00000000 Binary files a/isocodes/share/locale/gu/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/gv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/gv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 251f9ec4..00000000 Binary files a/isocodes/share/locale/gv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ha/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ha/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index eab94452..00000000 Binary files a/isocodes/share/locale/ha/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 2a78df8e..00000000 Binary files a/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 52511027..00000000 Binary files a/isocodes/share/locale/haw/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index f91a8207..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 5fd134ec..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index c16da198..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index cc25f2a4..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index fccc78a2..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/he/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/he/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 140986ab..00000000 Binary files a/isocodes/share/locale/he/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c1b73797..00000000 Binary files a/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 6b8879ab..00000000 Binary files a/isocodes/share/locale/hi/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_3166_2.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_3166_2.mo new file mode 120000 index 00000000..c1b12c00 --- /dev/null +++ b/isocodes/share/locale/hi/LC_MESSAGES/iso_3166_2.mo @@ -0,0 +1 @@ +iso_3166-2.mo \ No newline at end of file diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index a9889f36..00000000 Binary files a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 32fab94a..00000000 Binary files a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/hi/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index ddb95fcd..00000000 Binary files a/isocodes/share/locale/hi/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 46d46534..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 028574d9..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index ab220d1b..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 3c621207..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 9dbfae6b..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 5be5c75e..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 73b6468a..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/hr/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index ef6a83ff..00000000 Binary files a/isocodes/share/locale/hr/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ht/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ht/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8bb05ab1..00000000 Binary files a/isocodes/share/locale/ht/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 7de88e89..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 36a7cf92..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index b1b580d5..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 5c5c60ce..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 0da2c7d5..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 55b2b94f..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index f50f6256..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/hu/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 1d8ef446..00000000 Binary files a/isocodes/share/locale/hu/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7805d35f..00000000 Binary files a/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 8f52c3d3..00000000 Binary files a/isocodes/share/locale/hy/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/hy/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/hy/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 3c67e86a..00000000 Binary files a/isocodes/share/locale/hy/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ia/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ia/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 64396b50..00000000 Binary files a/isocodes/share/locale/ia/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 2c051683..00000000 Binary files a/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 85888c8b..00000000 Binary files a/isocodes/share/locale/ia/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index fa262dbd..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a43f00f2..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 81ff7c71..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index be135023..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 084bf15c..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index ee8cd67a..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 1b70ac79..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/id/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/id/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 1774f29a..00000000 Binary files a/isocodes/share/locale/id/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/io/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/io/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c59bd40d..00000000 Binary files a/isocodes/share/locale/io/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 49c4cecc..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 910933f6..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 0b4b2b28..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 26dff185..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index f8e25cd3..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9cf9d0f5..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c6b3dec5..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/is/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/is/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 29bc118b..00000000 Binary files a/isocodes/share/locale/is/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index f8c5f967..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c85f044b..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index ce730702..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index e8bbe155..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 0676d459..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9a32f7bd..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 41ea6637..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/it/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/it/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 90e46bcb..00000000 Binary files a/isocodes/share/locale/it/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/iu/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/iu/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8a998751..00000000 Binary files a/isocodes/share/locale/iu/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index c547a642..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e4501e1b..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 4d483138..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 6018191b..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index e69f69a4..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 2032adcf..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ja/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ja/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 2ac10ba1..00000000 Binary files a/isocodes/share/locale/ja/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/jam/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/jam/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 59023fef..00000000 Binary files a/isocodes/share/locale/jam/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 124d5a49..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 454b479f..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 76e9a5bc..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 45013e19..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 40d0e712..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index b03219e2..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 215739ee..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ka/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index d05170a1..00000000 Binary files a/isocodes/share/locale/ka/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 5ee7f7a3..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7a34ec43..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 3c7467b1..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 5bdf5f3b..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e0cb34e0..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 04d79b0c..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/kab/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 1d570453..00000000 Binary files a/isocodes/share/locale/kab/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ki/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ki/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index eda5b272..00000000 Binary files a/isocodes/share/locale/ki/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e038a158..00000000 Binary files a/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index e1ebf06a..00000000 Binary files a/isocodes/share/locale/kk/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a7c5b2c0..00000000 Binary files a/isocodes/share/locale/kl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/km/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 476ae017..00000000 Binary files a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/km/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 0bd63b41..00000000 Binary files a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/km/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index c5d88e51..00000000 Binary files a/isocodes/share/locale/km/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/km/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/km/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index e152336c..00000000 Binary files a/isocodes/share/locale/km/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index ab691df9..00000000 Binary files a/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 4ea4ca48..00000000 Binary files a/isocodes/share/locale/kmr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kmr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/kmr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 9fb6b667..00000000 Binary files a/isocodes/share/locale/kmr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 042784a5..00000000 Binary files a/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index afbace45..00000000 Binary files a/isocodes/share/locale/kn/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kn/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/kn/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d8faabcb..00000000 Binary files a/isocodes/share/locale/kn/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/kn/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/kn/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 89a8eeee..00000000 Binary files a/isocodes/share/locale/kn/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 7fb82448..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 175b0718..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index c9b613ab..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index e36ab74d..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 1080a48b..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 3dad4163..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ko/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ko/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index d91b1292..00000000 Binary files a/isocodes/share/locale/ko/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kok/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/kok/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d5713e7e..00000000 Binary files a/isocodes/share/locale/kok/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/kok/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/kok/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index e1d48927..00000000 Binary files a/isocodes/share/locale/kok/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/kv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4244c580..00000000 Binary files a/isocodes/share/locale/kv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/kw/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/kw/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 97008fa8..00000000 Binary files a/isocodes/share/locale/kw/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4167a65a..00000000 Binary files a/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 5d4ec7c1..00000000 Binary files a/isocodes/share/locale/ky/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/lo/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/lo/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 44563140..00000000 Binary files a/isocodes/share/locale/lo/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index b1faf837..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 694745b4..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 500b1ac0..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index dacbd390..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 1ac600b9..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index a14fc356..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 2a6a3456..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/lt/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 295c0936..00000000 Binary files a/isocodes/share/locale/lt/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 527603e4..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 3c45e02b..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 471a46ae..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ac5dd3d9..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index e8d3fd7f..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 0ed9b5ce..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/lv/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/lv/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a0f56160..00000000 Binary files a/isocodes/share/locale/lv/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mai/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mai/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fc6879af..00000000 Binary files a/isocodes/share/locale/mai/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mhr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mhr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f836ad39..00000000 Binary files a/isocodes/share/locale/mhr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 05a44545..00000000 Binary files a/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index a31d9f3a..00000000 Binary files a/isocodes/share/locale/mi/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mi/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/mi/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 8f47389f..00000000 Binary files a/isocodes/share/locale/mi/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mi/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/mi/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index eb0a4af4..00000000 Binary files a/isocodes/share/locale/mi/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 9406e1ce..00000000 Binary files a/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 64a9addb..00000000 Binary files a/isocodes/share/locale/mk/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mk/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/mk/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 97d6f041..00000000 Binary files a/isocodes/share/locale/mk/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mk/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/mk/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 1dc5ca3d..00000000 Binary files a/isocodes/share/locale/mk/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ml/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ml/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index d169c8f1..00000000 Binary files a/isocodes/share/locale/ml/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e0f57305..00000000 Binary files a/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 96458b77..00000000 Binary files a/isocodes/share/locale/ml/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ml/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ml/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index ee24ad83..00000000 Binary files a/isocodes/share/locale/ml/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7f7e9e94..00000000 Binary files a/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 837ada1b..00000000 Binary files a/isocodes/share/locale/mn/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mn/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/mn/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 05173c1d..00000000 Binary files a/isocodes/share/locale/mn/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/mn/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/mn/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d50dda26..00000000 Binary files a/isocodes/share/locale/mn/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mn/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/mn/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 624cd7f7..00000000 Binary files a/isocodes/share/locale/mn/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 280515b9..00000000 Binary files a/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 07692d71..00000000 Binary files a/isocodes/share/locale/mr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mr/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/mr/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 58c001e6..00000000 Binary files a/isocodes/share/locale/mr/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/mr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 40c0cec5..00000000 Binary files a/isocodes/share/locale/mr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d283cf9e..00000000 Binary files a/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index de59ce4a..00000000 Binary files a/isocodes/share/locale/ms/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ms/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ms/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d63a69bd..00000000 Binary files a/isocodes/share/locale/ms/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ms/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ms/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 5bf9e30e..00000000 Binary files a/isocodes/share/locale/ms/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index aff00c86..00000000 Binary files a/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 1f399179..00000000 Binary files a/isocodes/share/locale/mt/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/mt/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/mt/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index b3278390..00000000 Binary files a/isocodes/share/locale/mt/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/mt/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/mt/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 93027f34..00000000 Binary files a/isocodes/share/locale/mt/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/my/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/my/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index ae499dd6..00000000 Binary files a/isocodes/share/locale/my/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/na/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/na/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index dc8ae9e8..00000000 Binary files a/isocodes/share/locale/na/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nah/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nah/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index acc076ce..00000000 Binary files a/isocodes/share/locale/nah/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 85b2c590..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 6e66f986..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 016ffa9d..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 1346d45a..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index e121d6c2..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 5ed7f393..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 2b904972..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 7c592281..00000000 Binary files a/isocodes/share/locale/nb_NO/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 48d0cdaa..00000000 Binary files a/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 66360917..00000000 Binary files a/isocodes/share/locale/ne/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 1da79d79..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a2a8e846..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 474d5a38..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 1fab74f4..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 444308b5..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 21f4678b..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 3627a9b4..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/nl/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 7b15c671..00000000 Binary files a/isocodes/share/locale/nl/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index d9721924..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 03f11892..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d8483842..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d25f28bf..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1e16fbb8..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nn/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/nn/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 0c143114..00000000 Binary files a/isocodes/share/locale/nn/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 01ae2990..00000000 Binary files a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index e82a0408..00000000 Binary files a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ae8a2bc7..00000000 Binary files a/isocodes/share/locale/nso/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nso/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/nso/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index b2b2be68..00000000 Binary files a/isocodes/share/locale/nso/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/nso/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/nso/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 3e38f24b..00000000 Binary files a/isocodes/share/locale/nso/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/nv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/nv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 76fa0960..00000000 Binary files a/isocodes/share/locale/nv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 153d4f23..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 0f714223..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index e038825f..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index c710b36d..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 5031841e..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 62524048..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 804edfa4..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/oc/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index ceae3110..00000000 Binary files a/isocodes/share/locale/oc/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/or/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/or/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 248de4c2..00000000 Binary files a/isocodes/share/locale/or/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/or/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/or/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index dae51ec4..00000000 Binary files a/isocodes/share/locale/or/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/or/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/or/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index a0f4830c..00000000 Binary files a/isocodes/share/locale/or/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/or/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/or/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 8f41e1ff..00000000 Binary files a/isocodes/share/locale/or/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 7efeea06..00000000 Binary files a/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 6a5967fd..00000000 Binary files a/isocodes/share/locale/pa/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pa/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/pa/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 8fc7af58..00000000 Binary files a/isocodes/share/locale/pa/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pa/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/pa/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index b8536196..00000000 Binary files a/isocodes/share/locale/pa/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 395e4771..00000000 Binary files a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 8b32dbc9..00000000 Binary files a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 833a5ec8..00000000 Binary files a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index bff086fb..00000000 Binary files a/isocodes/share/locale/pa_PK/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pap/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pap/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 188a02cb..00000000 Binary files a/isocodes/share/locale/pap/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 725c7046..00000000 Binary files a/isocodes/share/locale/pi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index cfb37d7a..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e625675b..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index bf32f442..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 5bb1dc42..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 065ce24e..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 83d3ad42..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c462ad67..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/pl/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index a71e86da..00000000 Binary files a/isocodes/share/locale/pl/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 3c0d9eec..00000000 Binary files a/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index f94fd293..00000000 Binary files a/isocodes/share/locale/ps/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ps/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ps/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index fbc4d4ba..00000000 Binary files a/isocodes/share/locale/ps/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ps/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ps/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 99fb401b..00000000 Binary files a/isocodes/share/locale/ps/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 86b48402..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c243a4aa..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 65911077..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 1e4bf45d..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index a22fbd08..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pt/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/pt/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index e4b946f1..00000000 Binary files a/isocodes/share/locale/pt/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 8a9e4b36..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8fa300b6..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 86598e25..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index b2e3b7be..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 43991bb9..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e0545d9b..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 23af2d7d..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 644fb5a0..00000000 Binary files a/isocodes/share/locale/pt_BR/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 8402eea4..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 1392dc22..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index d6e45254..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index db1382d1..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d27a289c..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 74f81c1f..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a2fb7029..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ro/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index ba535226..00000000 Binary files a/isocodes/share/locale/ro/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 35d1af72..00000000 Binary files a/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d2d4fae4..00000000 Binary files a/isocodes/share/locale/ro_MD/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index d254a0a4..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 0826877a..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 63fa853e..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 9bf4d1aa..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index aefa88b6..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 6fefb6f7..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index b85ce6dc..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ru/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 4bcfd655..00000000 Binary files a/isocodes/share/locale/ru/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f805fad4..00000000 Binary files a/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 318872b7..00000000 Binary files a/isocodes/share/locale/rw/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/rw/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/rw/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index d74e5106..00000000 Binary files a/isocodes/share/locale/rw/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/rw/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/rw/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1ea41bfe..00000000 Binary files a/isocodes/share/locale/rw/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/rw/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/rw/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 627a6c41..00000000 Binary files a/isocodes/share/locale/rw/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 72e254f1..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fb225ddf..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 6f7eeeb9..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d1366338..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 63c4dbff..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 4e664dc4..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 019e17cc..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/sc/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 9026d343..00000000 Binary files a/isocodes/share/locale/sc/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/sd/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sd/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8ec898c8..00000000 Binary files a/isocodes/share/locale/sd/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/si/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/si/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 6ddb6654..00000000 Binary files a/isocodes/share/locale/si/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/si/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/si/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 5b1afaf5..00000000 Binary files a/isocodes/share/locale/si/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/si/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/si/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 7ab63cb4..00000000 Binary files a/isocodes/share/locale/si/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 2c8fa141..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 16f61cde..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 6ffeb35a..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index cc312a86..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index ffe0e99d..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 668fe4a9..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sk/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sk/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 11399ae6..00000000 Binary files a/isocodes/share/locale/sk/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 350c7539..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 132b59af..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 67e5bc37..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 40acae6a..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 4b6e8aeb..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 5ad5b533..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sl/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sl/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index aef4a572..00000000 Binary files a/isocodes/share/locale/sl/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 7a7bfa63..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index cef5d4d4..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 52262df1..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 708e7c35..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index dc44d0cc..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/so/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/so/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index cfe9bb0b..00000000 Binary files a/isocodes/share/locale/so/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/son/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/son/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 77335892..00000000 Binary files a/isocodes/share/locale/son/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 436250eb..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4ac70ed0..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 8c41c3e9..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d715df00..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index baade15f..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 2bf7ff43..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a0b9ef86..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/sq/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index be035d48..00000000 Binary files a/isocodes/share/locale/sq/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 533c89ea..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a1e016ae..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 0d8bf762..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 7487e6fd..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index acc25f03..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1bd50e00..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a20ae0c9..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/sr/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index a0d81f85..00000000 Binary files a/isocodes/share/locale/sr/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 7b613906..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 77b4e281..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 2531403a..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index f4d43263..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index f8ad1234..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 11f7a2d7..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index ddf4b599..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index d4869428..00000000 Binary files a/isocodes/share/locale/sr@latin/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index e1f8261a..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 362b3be2..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index f5e22870..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 974ba8c7..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index cb6f447f..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 6152918e..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 3514f05c..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/sv/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index d4a0407b..00000000 Binary files a/isocodes/share/locale/sv/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 62bb04e0..00000000 Binary files a/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fda2f665..00000000 Binary files a/isocodes/share/locale/sw/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index d7180050..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 0e98c7f3..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index c27fdce8..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 257950a8..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index a3a66cdb..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 9097d8b3..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index b12c0f0e..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/ta/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 39ae6fcb..00000000 Binary files a/isocodes/share/locale/ta/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/te/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/te/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8aa97b6b..00000000 Binary files a/isocodes/share/locale/te/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/te/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/te/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 7bd70f54..00000000 Binary files a/isocodes/share/locale/te/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/te/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/te/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 4e62cd4f..00000000 Binary files a/isocodes/share/locale/te/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tg/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tg/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index a410182b..00000000 Binary files a/isocodes/share/locale/tg/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tg/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tg/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index cbd4a443..00000000 Binary files a/isocodes/share/locale/tg/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 8e32df9a..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 68df2955..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index b556ec94..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 72f87038..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index c2f3b0b4..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e683c68f..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/th/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/th/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 2af06ce1..00000000 Binary files a/isocodes/share/locale/th/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 2074d1ad..00000000 Binary files a/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index c3ce62f1..00000000 Binary files a/isocodes/share/locale/ti/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ti/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ti/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 636aae5b..00000000 Binary files a/isocodes/share/locale/ti/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ti/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ti/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index a8830d48..00000000 Binary files a/isocodes/share/locale/ti/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index ae2791a1..00000000 Binary files a/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fb92fd70..00000000 Binary files a/isocodes/share/locale/tig/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tig/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tig/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 52328a57..00000000 Binary files a/isocodes/share/locale/tig/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tig/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/tig/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 493a893a..00000000 Binary files a/isocodes/share/locale/tig/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 6ace06e0..00000000 Binary files a/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fd0f3631..00000000 Binary files a/isocodes/share/locale/tk/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 005f440d..00000000 Binary files a/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 89bef01c..00000000 Binary files a/isocodes/share/locale/tl/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index a97e6cf6..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index fd9db79e..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 4cf52fb9..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 748fc81e..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index e29a5bc8..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index e0bc2542..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index f580761a..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/tr/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index bf0639b7..00000000 Binary files a/isocodes/share/locale/tr/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 78cd5739..00000000 Binary files a/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ca0ea7d5..00000000 Binary files a/isocodes/share/locale/tt/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tt/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tt/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 0e5e8205..00000000 Binary files a/isocodes/share/locale/tt/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tt/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/tt/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 20098623..00000000 Binary files a/isocodes/share/locale/tt/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 683c9e1c..00000000 Binary files a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 91231b93..00000000 Binary files a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 0d98a610..00000000 Binary files a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 4e5fe1fe..00000000 Binary files a/isocodes/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/tzm/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/tzm/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index e7bf3ddb..00000000 Binary files a/isocodes/share/locale/tzm/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/tzm/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/tzm/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 854b17ab..00000000 Binary files a/isocodes/share/locale/tzm/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/tzm/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/tzm/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index a690e2b3..00000000 Binary files a/isocodes/share/locale/tzm/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/tzm/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/tzm/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index cbc592a1..00000000 Binary files a/isocodes/share/locale/tzm/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 3f840cb1..00000000 Binary files a/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 289ac315..00000000 Binary files a/isocodes/share/locale/ug/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index d6d140da..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8055991f..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index b0a01825..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index fed97dad..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 830147c2..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 2d88de08..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index fc0664ed..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/uk/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 561addea..00000000 Binary files a/isocodes/share/locale/uk/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/ur/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ur/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d66e58af..00000000 Binary files a/isocodes/share/locale/ur/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/uz/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/uz/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index d4a1ed1a..00000000 Binary files a/isocodes/share/locale/uz/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 57c2cb56..00000000 Binary files a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 31883260..00000000 Binary files a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index ce6b77f7..00000000 Binary files a/isocodes/share/locale/ve/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/ve/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/ve/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 68475fce..00000000 Binary files a/isocodes/share/locale/ve/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/ve/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/ve/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 64e2747b..00000000 Binary files a/isocodes/share/locale/ve/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 948c4653..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 72be6efa..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 89ff1505..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index cdd22fd7..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index a3a95b99..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d99b2912..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/vi/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/vi/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 5efdd0af..00000000 Binary files a/isocodes/share/locale/vi/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f146763d..00000000 Binary files a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 5e0f893b..00000000 Binary files a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 27792c76..00000000 Binary files a/isocodes/share/locale/wa/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/wa/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/wa/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index ec26ecd5..00000000 Binary files a/isocodes/share/locale/wa/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/wa/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/wa/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 098797de..00000000 Binary files a/isocodes/share/locale/wa/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8e0f5ccf..00000000 Binary files a/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index faa48c98..00000000 Binary files a/isocodes/share/locale/wal/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4fffe93a..00000000 Binary files a/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index cd165471..00000000 Binary files a/isocodes/share/locale/wo/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index f5ead568..00000000 Binary files a/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index b8d832ed..00000000 Binary files a/isocodes/share/locale/xh/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/xh/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/xh/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 3f29e0ec..00000000 Binary files a/isocodes/share/locale/xh/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/xh/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/xh/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index c41ef44f..00000000 Binary files a/isocodes/share/locale/xh/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/yo/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/yo/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 8038e0c9..00000000 Binary files a/isocodes/share/locale/yo/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index c18be2a4..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 0e3ae2e7..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 0f8e8ebb..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index d8259f92..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 74c3b04e..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index d0d3cb8f..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index af8ec26f..00000000 Binary files a/isocodes/share/locale/zh_CN/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index a7bbc5e8..00000000 Binary files a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index 4c70d68d..00000000 Binary files a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 5fbab85d..00000000 Binary files a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 33372520..00000000 Binary files a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 1949e13c..00000000 Binary files a/isocodes/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_Hans/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/zh_Hans/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index 770b809f..00000000 Binary files a/isocodes/share/locale/zh_Hans/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_Hant/LC_MESSAGES/iso_639-5.mo b/isocodes/share/locale/zh_Hant/LC_MESSAGES/iso_639-5.mo deleted file mode 100644 index a9ed595c..00000000 Binary files a/isocodes/share/locale/zh_Hant/LC_MESSAGES/iso_639-5.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_15924.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_15924.mo deleted file mode 100644 index 1e577c42..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_15924.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index c2ff70ed..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-2.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-2.mo deleted file mode 100644 index 331d34cb..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 0aa9d65a..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_4217.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_4217.mo deleted file mode 100644 index 67454c22..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_4217.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 7df76992..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index cb224bce..00000000 Binary files a/isocodes/share/locale/zh_TW/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-1.mo b/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-1.mo deleted file mode 100644 index e85766cd..00000000 Binary files a/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-1.mo and /dev/null differ diff --git a/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-3.mo b/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-3.mo deleted file mode 100644 index 08120465..00000000 Binary files a/isocodes/share/locale/zu/LC_MESSAGES/iso_3166-3.mo and /dev/null differ diff --git a/isocodes/share/locale/zu/LC_MESSAGES/iso_639-2.mo b/isocodes/share/locale/zu/LC_MESSAGES/iso_639-2.mo deleted file mode 100644 index 33faef8d..00000000 Binary files a/isocodes/share/locale/zu/LC_MESSAGES/iso_639-2.mo and /dev/null differ diff --git a/isocodes/share/locale/zu/LC_MESSAGES/iso_639-3.mo b/isocodes/share/locale/zu/LC_MESSAGES/iso_639-3.mo deleted file mode 100644 index 0165ee36..00000000 Binary files a/isocodes/share/locale/zu/LC_MESSAGES/iso_639-3.mo and /dev/null differ diff --git a/isocodes/share/pkgconfig/iso-codes.pc b/isocodes/share/pkgconfig/iso-codes.pc index 0c0a9e46..f5926e0d 100644 --- a/isocodes/share/pkgconfig/iso-codes.pc +++ b/isocodes/share/pkgconfig/iso-codes.pc @@ -1,6 +1,6 @@ -prefix=/workspaces/isocodes/isocodes +prefix=/Users/kevinmesser/Developer/isocodes/isocodes domains=iso_639-2 iso_639-3 iso_639-5 iso_3166-1 iso_3166-2 iso_3166-3 iso_4217 iso_15924 Name: iso-codes Description: ISO country, language, script and currency codes and translations -Version: 4.16.0 +Version: 4.17.0 diff --git a/pyproject.toml b/pyproject.toml index 92ae9714..4c21a54a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "isocodes" -version = "2024.02.02" +version = "2024.11.20" description = "This project provides lists of various ISO standards (e.g. country, language, language scripts, and currency names) in one place" authors = [{ name = "Atem18", email = "contact@atemlire.com" }] license = { file = "LICENSE" } @@ -15,28 +15,35 @@ keywords = ["iso"] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] +requires-python = ">=3.9" dependencies = [] [project.optional-dependencies] - -dev = ["pre-commit == 3.7.1", "ruff == 0.6.3", "mypy == 1.10.1"] - -doc = ["mkdocs == 1.6.0", "mkdocs-material == 9.5.30", "mkdocstrings == 0.25.2"] - +dev = [ + "pre-commit==3.7.1", + "ruff==0.6.3", + "mypy==1.10.1", +] +doc = [ + "mkdocs==1.6.0", + "mkdocs-material==9.5.30", + "mkdocstrings==0.25.2", +] test = [ - "pytest == 8.2.2", - "tox == 4.18.0", - "pyinstaller[hook_testing] == 6.10.0", - "psutil == 6.0.0", + "pytest==8.2.2", + "tox==4.18.0", + "pyinstaller[hook-testing]==6.10.0", + "psutil==6.0.0", +] +build = [ + "hatch==1.12.0", ] - -build = ["hatch == 1.12.0"] [project.entry-points.pyinstaller40] hook-dirs = "isocodes.__pyinstaller:get_hook_dirs" diff --git a/requirements/build-requirements.txt b/requirements/build-requirements.txt deleted file mode 100644 index c106ed80..00000000 --- a/requirements/build-requirements.txt +++ /dev/null @@ -1,106 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile --extra=build --output-file=requirements/build-requirements.txt --resolver=backtracking pyproject.toml -# -anyio==4.4.0 - # via httpcore -certifi==2024.8.30 - # via - # httpcore - # httpx -cffi==1.16.0 - # via cryptography -click==8.1.7 - # via - # hatch - # userpath -cryptography==43.0.1 - # via secretstorage -distlib==0.3.8 - # via virtualenv -editables==0.5 - # via hatchling -filelock==3.13.4 - # via virtualenv -h11==0.14.0 - # via httpcore -hatch==1.12.0 - # via isocodes (pyproject.toml) -hatchling==1.25.0 - # via hatch -httpcore==1.0.5 - # via httpx -httpx==0.27.0 - # via hatch -hyperlink==21.0.0 - # via hatch -idna==3.7 - # via - # anyio - # httpx - # hyperlink -importlib-metadata==7.1.0 - # via keyring -jaraco-classes==3.4.0 - # via keyring -jeepney==0.8.0 - # via - # keyring - # secretstorage -keyring==25.2.1 - # via hatch -markdown-it-py==3.0.0 - # via rich -mdurl==0.1.2 - # via markdown-it-py -more-itertools==10.3.0 - # via jaraco-classes -packaging==24.1 - # via - # hatch - # hatchling -pathspec==0.12.1 - # via hatchling -pexpect==4.9.0 - # via hatch -platformdirs==4.2.2 - # via - # hatch - # virtualenv -pluggy==1.5.0 - # via hatchling -ptyprocess==0.7.0 - # via pexpect -pycparser==2.22 - # via cffi -pygments==2.18.0 - # via rich -pyperclip==1.9.0 - # via hatch -rich==13.7.1 - # via hatch -secretstorage==3.3.3 - # via keyring -shellingham==1.5.4 - # via hatch -sniffio==1.3.1 - # via - # anyio - # httpcore - # httpx -tomli==2.0.1 - # via hatchling -tomli-w==1.0.0 - # via hatch -tomlkit==0.13.2 - # via hatch -trove-classifiers==2024.7.2 - # via hatchling -userpath==1.9.2 - # via hatch -virtualenv==20.26.3 - # via hatch -zipp==3.19.2 - # via importlib-metadata diff --git a/requirements/dev-requirements.txt b/requirements/dev-requirements.txt deleted file mode 100644 index 3a67c390..00000000 --- a/requirements/dev-requirements.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile --extra=dev --output-file=requirements/dev-requirements.txt --resolver=backtracking pyproject.toml -# -cfgv==3.4.0 - # via pre-commit -distlib==0.3.8 - # via virtualenv -filelock==3.13.4 - # via virtualenv -identify==2.6.0 - # via pre-commit -mypy==1.10.1 - # via isocodes (pyproject.toml) -mypy-extensions==1.0.0 - # via mypy -nodeenv==1.9.1 - # via pre-commit -platformdirs==4.2.2 - # via virtualenv -pre-commit==3.7.1 - # via isocodes (pyproject.toml) -pyyaml==6.0.1 - # via pre-commit -ruff==0.6.3 - # via isocodes (pyproject.toml) -tomli==2.0.1 - # via mypy -typing-extensions==4.12.2 - # via mypy -virtualenv==20.26.3 - # via pre-commit - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/requirements/doc-requirements.txt b/requirements/doc-requirements.txt deleted file mode 100644 index dea684a7..00000000 --- a/requirements/doc-requirements.txt +++ /dev/null @@ -1,77 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile --extra=doc --output-file=requirements/doc-requirements.txt --resolver=backtracking pyproject.toml -# -certifi==2024.8.30 - # via requests -charset-normalizer==3.3.2 - # via requests -click==8.1.7 - # via mkdocs -colorama==0.4.6 - # via mkdocs-material -ghp-import==2.1.0 - # via mkdocs -idna==3.7 - # via requests -jinja2==3.1.4 - # via - # mkdocs - # mkdocs-material - # mkdocstrings -markdown==3.6 - # via - # mkdocs - # mkdocs-autorefs - # mkdocs-material - # mkdocstrings - # pymdown-extensions -markupsafe==2.1.5 - # via - # jinja2 - # mkdocstrings -mergedeep==1.3.4 - # via mkdocs -mkdocs==1.6.0 - # via - # isocodes (pyproject.toml) - # mkdocs-autorefs - # mkdocs-material - # mkdocstrings -mkdocs-autorefs==1.0.1 - # via mkdocstrings -mkdocs-material==9.5.30 - # via isocodes (pyproject.toml) -mkdocs-material-extensions==1.3.1 - # via mkdocs-material -mkdocstrings==0.25.2 - # via isocodes (pyproject.toml) -packaging==24.1 - # via mkdocs -pygments==2.18.0 - # via mkdocs-material -pymdown-extensions==10.9 - # via - # mkdocs-material - # mkdocstrings -python-dateutil==2.9.0.post0 - # via ghp-import -pyyaml==6.0.1 - # via - # mkdocs - # pymdown-extensions - # pyyaml-env-tag -pyyaml-env-tag==0.1 - # via mkdocs -regex==2024.4.16 - # via mkdocs-material -requests==2.32.3 - # via mkdocs-material -six==1.16.0 - # via python-dateutil -urllib3==2.2.2 - # via requests -watchdog==4.0.1 - # via mkdocs diff --git a/requirements/test-requirements.txt b/requirements/test-requirements.txt deleted file mode 100644 index 68b4cfbd..00000000 --- a/requirements/test-requirements.txt +++ /dev/null @@ -1,63 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile --extra=test --output-file=requirements/test-requirements.txt pyproject.toml -# -altgraph==0.17.4 - # via - # macholib - # pyinstaller -cachetools==5.3.3 - # via tox -chardet==5.2.0 - # via tox -colorama==0.4.6 - # via tox -distlib==0.3.8 - # via virtualenv -exceptiongroup==1.2.2 - # via pytest -filelock==3.13.4 - # via - # tox - # virtualenv -iniconfig==2.0.0 - # via pytest -macholib==1.16.3 - # via pyinstaller -packaging==24.1 - # via - # pyinstaller - # pyproject-api - # pytest - # tox -platformdirs==4.2.2 - # via - # tox - # virtualenv -pluggy==1.5.0 - # via - # pytest - # tox -psutil==6.0.0 - # via isocodes (pyproject.toml) -pyinstaller[hook-testing]==6.10.0 - # via - # isocodes (pyproject.toml) - # pyinstaller -pyinstaller-hooks-contrib==2024.7 - # via pyinstaller -pyproject-api==1.7.1 - # via tox -pytest==8.2.2 - # via isocodes (pyproject.toml) -tomli==2.0.1 - # via - # pyproject-api - # pytest - # tox -tox==4.18.0 - # via isocodes (pyproject.toml) -virtualenv==20.26.3 - # via tox diff --git a/tests/test_general.py b/tests/test_general.py index 6be33c82..27a8cf15 100644 --- a/tests/test_general.py +++ b/tests/test_general.py @@ -1,5 +1,99 @@ -from isocodes import languages +import pytest +from isocodes import ( + Countries, + Languages, + Currencies, + SubdivisionsCountries, + FormerCountries, + ExtendedLanguages, + LanguageFamilies, + ScriptNames, +) -def test_languages(): - assert languages.get(name="Spanish") +@pytest.fixture +def countries(): + return Countries("3166-1") + + +@pytest.fixture +def languages(): + return Languages("639-2") + + +@pytest.fixture +def currencies(): + return Currencies("4217") + + +@pytest.fixture +def subdivisions_countries(): + return SubdivisionsCountries("3166-2") + + +@pytest.fixture +def former_countries(): + return FormerCountries("3166-3") + + +@pytest.fixture +def extended_languages(): + return ExtendedLanguages("639-3") + + +@pytest.fixture +def language_families(): + return LanguageFamilies("639-5") + + +@pytest.fixture +def script_names(): + return ScriptNames("15924") + + +def test_countries_by_alpha_2(countries): + result = countries.by_alpha_2 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_languages_by_alpha_3(languages): + result = languages.by_alpha_3 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_currencies_by_alpha_3(currencies): + result = currencies.by_alpha_3 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_subdivisions_countries_by_code(subdivisions_countries): + result = subdivisions_countries.by_code + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_former_countries_by_alpha_2(former_countries): + result = former_countries.by_alpha_2 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_extended_languages_by_alpha_3(extended_languages): + result = extended_languages.by_alpha_3 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_language_families_by_alpha_3(language_families): + result = language_families.by_alpha_3 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) + + +def test_script_names_by_alpha_4(script_names): + result = script_names.by_alpha_4 + assert isinstance(result, list) + assert all(isinstance(item, tuple) for item in result) diff --git a/tox.ini b/tox.ini index 9eb34c8b..89d5d1ba 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,5 @@ [tox] -envlist = py38, py39, py310, py311, py312 +envlist = py39, py310, py311, py312, py313 [testenv] -commands = - pip install -r requirements/test-requirements.txt - pytest +commands = pytest diff --git a/update.sh b/update.sh index 412fc194..5ecb4b17 100644 --- a/update.sh +++ b/update.sh @@ -14,7 +14,7 @@ git clone https://salsa.debian.org/iso-codes-team/iso-codes.git cd "$UPSTREAM_DIR" || exit -git checkout v4.16.0 +git checkout v4.17.0 ./configure --prefix "$BASE_DIR" diff --git a/uv.lock b/uv.lock new file mode 100644 index 00000000..57ed1b4d --- /dev/null +++ b/uv.lock @@ -0,0 +1,1620 @@ +version = 1 +requires-python = ">=3.9" + +[[package]] +name = "altgraph" +version = "0.17.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/de/a8/7145824cf0b9e3c28046520480f207df47e927df83aa9555fb47f8505922/altgraph-0.17.4.tar.gz", hash = "sha256:1b5afbb98f6c4dcadb2e2ae6ab9fa994bbb8c1d75f4fa96d340f9437ae454406", size = 48418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/3f/3bc3f1d83f6e4a7fcb834d3720544ca597590425be5ba9db032b2bf322a2/altgraph-0.17.4-py2.py3-none-any.whl", hash = "sha256:642743b4750de17e655e6711601b077bc6598dbfa3ba5fa2b2a35ce12b508dff", size = 21212 }, +] + +[[package]] +name = "anyio" +version = "4.6.2.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "idna" }, + { name = "sniffio" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/09/45b9b7a6d4e45c6bcb5bf61d19e3ab87df68e0601fa8c5293de3542546cc/anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c", size = 173422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/f5/f2b75d2fc6f1a260f340f0e7c6a060f4dd2961cc16884ed851b0d18da06a/anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d", size = 90377 }, +] + +[[package]] +name = "babel" +version = "2.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/74/f1bc80f23eeba13393b7222b11d95ca3af2c1e28edca18af487137eefed9/babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316", size = 9348104 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/20/bc79bc575ba2e2a7f70e8a1155618bb1301eaa5132a8271373a6903f73f8/babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b", size = 9587599 }, +] + +[[package]] +name = "backports-tarfile" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/86/72/cd9b395f25e290e633655a100af28cb253e4393396264a98bd5f5951d50f/backports_tarfile-1.2.0.tar.gz", hash = "sha256:d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991", size = 86406 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl", hash = "sha256:77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34", size = 30181 }, +] + +[[package]] +name = "cachetools" +version = "5.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/38/a0f315319737ecf45b4319a8cd1f3a908e29d9277b46942263292115eee7/cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a", size = 27661 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/07/14f8ad37f2d12a5ce41206c21820d8cb6561b728e51fad4530dff0552a67/cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292", size = 9524 }, +] + +[[package]] +name = "certifi" +version = "2024.8.30" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1/certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9", size = 168507 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", size = 167321 }, +] + +[[package]] +name = "cffi" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/07/f44ca684db4e4f08a3fdc6eeb9a0d15dc6883efc7b8c90357fdbf74e186c/cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14", size = 182191 }, + { url = "https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67", size = 178592 }, + { url = "https://files.pythonhosted.org/packages/de/cc/4635c320081c78d6ffc2cab0a76025b691a91204f4aa317d568ff9280a2d/cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382", size = 426024 }, + { url = "https://files.pythonhosted.org/packages/b6/7b/3b2b250f3aab91abe5f8a51ada1b717935fdaec53f790ad4100fe2ec64d1/cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702", size = 448188 }, + { url = "https://files.pythonhosted.org/packages/d3/48/1b9283ebbf0ec065148d8de05d647a986c5f22586b18120020452fff8f5d/cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3", size = 455571 }, + { url = "https://files.pythonhosted.org/packages/40/87/3b8452525437b40f39ca7ff70276679772ee7e8b394934ff60e63b7b090c/cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6", size = 436687 }, + { url = "https://files.pythonhosted.org/packages/8d/fb/4da72871d177d63649ac449aec2e8a29efe0274035880c7af59101ca2232/cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17", size = 446211 }, + { url = "https://files.pythonhosted.org/packages/ab/a0/62f00bcb411332106c02b663b26f3545a9ef136f80d5df746c05878f8c4b/cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8", size = 461325 }, + { url = "https://files.pythonhosted.org/packages/36/83/76127035ed2e7e27b0787604d99da630ac3123bfb02d8e80c633f218a11d/cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e", size = 438784 }, + { url = "https://files.pythonhosted.org/packages/21/81/a6cd025db2f08ac88b901b745c163d884641909641f9b826e8cb87645942/cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be", size = 461564 }, + { url = "https://files.pythonhosted.org/packages/f8/fe/4d41c2f200c4a457933dbd98d3cf4e911870877bd94d9656cc0fcb390681/cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c", size = 171804 }, + { url = "https://files.pythonhosted.org/packages/d1/b6/0b0f5ab93b0df4acc49cae758c81fe4e5ef26c3ae2e10cc69249dfd8b3ab/cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15", size = 181299 }, + { url = "https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401", size = 182264 }, + { url = "https://files.pythonhosted.org/packages/6c/f5/6c3a8efe5f503175aaddcbea6ad0d2c96dad6f5abb205750d1b3df44ef29/cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf", size = 178651 }, + { url = "https://files.pythonhosted.org/packages/94/dd/a3f0118e688d1b1a57553da23b16bdade96d2f9bcda4d32e7d2838047ff7/cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4", size = 445259 }, + { url = "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", size = 469200 }, + { url = "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", size = 477235 }, + { url = "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", size = 459721 }, + { url = "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", size = 467242 }, + { url = "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", size = 477999 }, + { url = "https://files.pythonhosted.org/packages/44/74/f2a2460684a1a2d00ca799ad880d54652841a780c4c97b87754f660c7603/cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f", size = 454242 }, + { url = "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", size = 478604 }, + { url = "https://files.pythonhosted.org/packages/34/33/e1b8a1ba29025adbdcda5fb3a36f94c03d771c1b7b12f726ff7fef2ebe36/cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655", size = 171727 }, + { url = "https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0", size = 181400 }, + { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178 }, + { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803 }, + { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850 }, + { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729 }, + { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256 }, + { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424 }, + { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568 }, + { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736 }, + { url = "https://files.pythonhosted.org/packages/86/c5/28b2d6f799ec0bdecf44dced2ec5ed43e0eb63097b0f58c293583b406582/cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65", size = 172448 }, + { url = "https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903", size = 181976 }, + { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989 }, + { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802 }, + { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792 }, + { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893 }, + { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810 }, + { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200 }, + { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447 }, + { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358 }, + { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469 }, + { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475 }, + { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009 }, + { url = "https://files.pythonhosted.org/packages/b9/ea/8bb50596b8ffbc49ddd7a1ad305035daa770202a6b782fc164647c2673ad/cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16", size = 182220 }, + { url = "https://files.pythonhosted.org/packages/ae/11/e77c8cd24f58285a82c23af484cf5b124a376b32644e445960d1a4654c3a/cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36", size = 178605 }, + { url = "https://files.pythonhosted.org/packages/ed/65/25a8dc32c53bf5b7b6c2686b42ae2ad58743f7ff644844af7cdb29b49361/cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8", size = 424910 }, + { url = "https://files.pythonhosted.org/packages/42/7a/9d086fab7c66bd7c4d0f27c57a1b6b068ced810afc498cc8c49e0088661c/cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576", size = 447200 }, + { url = "https://files.pythonhosted.org/packages/da/63/1785ced118ce92a993b0ec9e0d0ac8dc3e5dbfbcaa81135be56c69cabbb6/cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87", size = 454565 }, + { url = "https://files.pythonhosted.org/packages/74/06/90b8a44abf3556599cdec107f7290277ae8901a58f75e6fe8f970cd72418/cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0", size = 435635 }, + { url = "https://files.pythonhosted.org/packages/bd/62/a1f468e5708a70b1d86ead5bab5520861d9c7eacce4a885ded9faa7729c3/cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3", size = 445218 }, + { url = "https://files.pythonhosted.org/packages/5b/95/b34462f3ccb09c2594aa782d90a90b045de4ff1f70148ee79c69d37a0a5a/cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595", size = 460486 }, + { url = "https://files.pythonhosted.org/packages/fc/fc/a1e4bebd8d680febd29cf6c8a40067182b64f00c7d105f8f26b5bc54317b/cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a", size = 437911 }, + { url = "https://files.pythonhosted.org/packages/e6/c3/21cab7a6154b6a5ea330ae80de386e7665254835b9e98ecc1340b3a7de9a/cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e", size = 460632 }, + { url = "https://files.pythonhosted.org/packages/cb/b5/fd9f8b5a84010ca169ee49f4e4ad6f8c05f4e3545b72ee041dbbcb159882/cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7", size = 171820 }, + { url = "https://files.pythonhosted.org/packages/8c/52/b08750ce0bce45c143e1b5d7357ee8c55341b52bdef4b0f081af1eb248c2/cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662", size = 181290 }, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249 }, +] + +[[package]] +name = "chardet" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/f7b6ab21ec75897ed80c17d79b15951a719226b9fababf1e40ea74d69079/chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7", size = 2069618 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970", size = 199385 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e", size = 106620 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/8b/825cc84cf13a28bfbcba7c416ec22bf85a9584971be15b21dd8300c65b7f/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6", size = 196363 }, + { url = "https://files.pythonhosted.org/packages/23/81/d7eef6a99e42c77f444fdd7bc894b0ceca6c3a95c51239e74a722039521c/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b", size = 125639 }, + { url = "https://files.pythonhosted.org/packages/21/67/b4564d81f48042f520c948abac7079356e94b30cb8ffb22e747532cf469d/charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99", size = 120451 }, + { url = "https://files.pythonhosted.org/packages/c2/72/12a7f0943dd71fb5b4e7b55c41327ac0a1663046a868ee4d0d8e9c369b85/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca", size = 140041 }, + { url = "https://files.pythonhosted.org/packages/67/56/fa28c2c3e31217c4c52158537a2cf5d98a6c1e89d31faf476c89391cd16b/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d", size = 150333 }, + { url = "https://files.pythonhosted.org/packages/f9/d2/466a9be1f32d89eb1554cf84073a5ed9262047acee1ab39cbaefc19635d2/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7", size = 142921 }, + { url = "https://files.pythonhosted.org/packages/f8/01/344ec40cf5d85c1da3c1f57566c59e0c9b56bcc5566c08804a95a6cc8257/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3", size = 144785 }, + { url = "https://files.pythonhosted.org/packages/73/8b/2102692cb6d7e9f03b9a33a710e0164cadfce312872e3efc7cfe22ed26b4/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907", size = 146631 }, + { url = "https://files.pythonhosted.org/packages/d8/96/cc2c1b5d994119ce9f088a9a0c3ebd489d360a2eb058e2c8049f27092847/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b", size = 140867 }, + { url = "https://files.pythonhosted.org/packages/c9/27/cde291783715b8ec30a61c810d0120411844bc4c23b50189b81188b273db/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912", size = 149273 }, + { url = "https://files.pythonhosted.org/packages/3a/a4/8633b0fc1a2d1834d5393dafecce4a1cc56727bfd82b4dc18fc92f0d3cc3/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95", size = 152437 }, + { url = "https://files.pythonhosted.org/packages/64/ea/69af161062166b5975ccbb0961fd2384853190c70786f288684490913bf5/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e", size = 150087 }, + { url = "https://files.pythonhosted.org/packages/3b/fd/e60a9d9fd967f4ad5a92810138192f825d77b4fa2a557990fd575a47695b/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe", size = 145142 }, + { url = "https://files.pythonhosted.org/packages/6d/02/8cb0988a1e49ac9ce2eed1e07b77ff118f2923e9ebd0ede41ba85f2dcb04/charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc", size = 94701 }, + { url = "https://files.pythonhosted.org/packages/d6/20/f1d4670a8a723c46be695dff449d86d6092916f9e99c53051954ee33a1bc/charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749", size = 102191 }, + { url = "https://files.pythonhosted.org/packages/9c/61/73589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c", size = 193339 }, + { url = "https://files.pythonhosted.org/packages/77/d5/8c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944", size = 124366 }, + { url = "https://files.pythonhosted.org/packages/bf/19/411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d/charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee", size = 118874 }, + { url = "https://files.pythonhosted.org/packages/4c/92/97509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c", size = 138243 }, + { url = "https://files.pythonhosted.org/packages/e2/29/d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6", size = 148676 }, + { url = "https://files.pythonhosted.org/packages/13/bc/87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea", size = 141289 }, + { url = "https://files.pythonhosted.org/packages/eb/5b/6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc", size = 142585 }, + { url = "https://files.pythonhosted.org/packages/3b/a0/a68980ab8a1f45a36d9745d35049c1af57d27255eff8c907e3add84cf68f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5", size = 144408 }, + { url = "https://files.pythonhosted.org/packages/d7/a1/493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594", size = 139076 }, + { url = "https://files.pythonhosted.org/packages/fb/9d/9c13753a5a6e0db4a0a6edb1cef7aee39859177b64e1a1e748a6e3ba62c2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c", size = 146874 }, + { url = "https://files.pythonhosted.org/packages/75/d2/0ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365", size = 150871 }, + { url = "https://files.pythonhosted.org/packages/8d/c9/27e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129", size = 148546 }, + { url = "https://files.pythonhosted.org/packages/ee/44/4f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236", size = 143048 }, + { url = "https://files.pythonhosted.org/packages/01/f8/38842422988b795220eb8038745d27a675ce066e2ada79516c118f291f07/charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99", size = 94389 }, + { url = "https://files.pythonhosted.org/packages/0b/6e/b13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4/charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27", size = 101752 }, + { url = "https://files.pythonhosted.org/packages/d3/0b/4b7a70987abf9b8196845806198975b6aab4ce016632f817ad758a5aa056/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6", size = 194445 }, + { url = "https://files.pythonhosted.org/packages/50/89/354cc56cf4dd2449715bc9a0f54f3aef3dc700d2d62d1fa5bbea53b13426/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf", size = 125275 }, + { url = "https://files.pythonhosted.org/packages/fa/44/b730e2a2580110ced837ac083d8ad222343c96bb6b66e9e4e706e4d0b6df/charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db", size = 119020 }, + { url = "https://files.pythonhosted.org/packages/9d/e4/9263b8240ed9472a2ae7ddc3e516e71ef46617fe40eaa51221ccd4ad9a27/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1", size = 139128 }, + { url = "https://files.pythonhosted.org/packages/6b/e3/9f73e779315a54334240353eaea75854a9a690f3f580e4bd85d977cb2204/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03", size = 149277 }, + { url = "https://files.pythonhosted.org/packages/1a/cf/f1f50c2f295312edb8a548d3fa56a5c923b146cd3f24114d5adb7e7be558/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284", size = 142174 }, + { url = "https://files.pythonhosted.org/packages/16/92/92a76dc2ff3a12e69ba94e7e05168d37d0345fa08c87e1fe24d0c2a42223/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15", size = 143838 }, + { url = "https://files.pythonhosted.org/packages/a4/01/2117ff2b1dfc61695daf2babe4a874bca328489afa85952440b59819e9d7/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8", size = 146149 }, + { url = "https://files.pythonhosted.org/packages/f6/9b/93a332b8d25b347f6839ca0a61b7f0287b0930216994e8bf67a75d050255/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2", size = 140043 }, + { url = "https://files.pythonhosted.org/packages/ab/f6/7ac4a01adcdecbc7a7587767c776d53d369b8b971382b91211489535acf0/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719", size = 148229 }, + { url = "https://files.pythonhosted.org/packages/9d/be/5708ad18161dee7dc6a0f7e6cf3a88ea6279c3e8484844c0590e50e803ef/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631", size = 151556 }, + { url = "https://files.pythonhosted.org/packages/5a/bb/3d8bc22bacb9eb89785e83e6723f9888265f3a0de3b9ce724d66bd49884e/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b", size = 149772 }, + { url = "https://files.pythonhosted.org/packages/f7/fa/d3fc622de05a86f30beea5fc4e9ac46aead4731e73fd9055496732bcc0a4/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565", size = 144800 }, + { url = "https://files.pythonhosted.org/packages/9a/65/bdb9bc496d7d190d725e96816e20e2ae3a6fa42a5cac99c3c3d6ff884118/charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7", size = 94836 }, + { url = "https://files.pythonhosted.org/packages/3e/67/7b72b69d25b89c0b3cea583ee372c43aa24df15f0e0f8d3982c57804984b/charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9", size = 102187 }, + { url = "https://files.pythonhosted.org/packages/f3/89/68a4c86f1a0002810a27f12e9a7b22feb198c59b2f05231349fbce5c06f4/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114", size = 194617 }, + { url = "https://files.pythonhosted.org/packages/4f/cd/8947fe425e2ab0aa57aceb7807af13a0e4162cd21eee42ef5b053447edf5/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed", size = 125310 }, + { url = "https://files.pythonhosted.org/packages/5b/f0/b5263e8668a4ee9becc2b451ed909e9c27058337fda5b8c49588183c267a/charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250", size = 119126 }, + { url = "https://files.pythonhosted.org/packages/ff/6e/e445afe4f7fda27a533f3234b627b3e515a1b9429bc981c9a5e2aa5d97b6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920", size = 139342 }, + { url = "https://files.pythonhosted.org/packages/a1/b2/4af9993b532d93270538ad4926c8e37dc29f2111c36f9c629840c57cd9b3/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64", size = 149383 }, + { url = "https://files.pythonhosted.org/packages/fb/6f/4e78c3b97686b871db9be6f31d64e9264e889f8c9d7ab33c771f847f79b7/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23", size = 142214 }, + { url = "https://files.pythonhosted.org/packages/2b/c9/1c8fe3ce05d30c87eff498592c89015b19fade13df42850aafae09e94f35/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc", size = 144104 }, + { url = "https://files.pythonhosted.org/packages/ee/68/efad5dcb306bf37db7db338338e7bb8ebd8cf38ee5bbd5ceaaaa46f257e6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d", size = 146255 }, + { url = "https://files.pythonhosted.org/packages/0c/75/1ed813c3ffd200b1f3e71121c95da3f79e6d2a96120163443b3ad1057505/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88", size = 140251 }, + { url = "https://files.pythonhosted.org/packages/7d/0d/6f32255c1979653b448d3c709583557a4d24ff97ac4f3a5be156b2e6a210/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90", size = 148474 }, + { url = "https://files.pythonhosted.org/packages/ac/a0/c1b5298de4670d997101fef95b97ac440e8c8d8b4efa5a4d1ef44af82f0d/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b", size = 151849 }, + { url = "https://files.pythonhosted.org/packages/04/4f/b3961ba0c664989ba63e30595a3ed0875d6790ff26671e2aae2fdc28a399/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d", size = 149781 }, + { url = "https://files.pythonhosted.org/packages/d8/90/6af4cd042066a4adad58ae25648a12c09c879efa4849c705719ba1b23d8c/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482", size = 144970 }, + { url = "https://files.pythonhosted.org/packages/cc/67/e5e7e0cbfefc4ca79025238b43cdf8a2037854195b37d6417f3d0895c4c2/charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67", size = 94973 }, + { url = "https://files.pythonhosted.org/packages/65/97/fc9bbc54ee13d33dc54a7fcf17b26368b18505500fc01e228c27b5222d80/charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b", size = 102308 }, + { url = "https://files.pythonhosted.org/packages/54/2f/28659eee7f5d003e0f5a3b572765bf76d6e0fe6601ab1f1b1dd4cba7e4f1/charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa", size = 196326 }, + { url = "https://files.pythonhosted.org/packages/d1/18/92869d5c0057baa973a3ee2af71573be7b084b3c3d428fe6463ce71167f8/charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a", size = 125614 }, + { url = "https://files.pythonhosted.org/packages/d6/27/327904c5a54a7796bb9f36810ec4173d2df5d88b401d2b95ef53111d214e/charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0", size = 120450 }, + { url = "https://files.pythonhosted.org/packages/a4/23/65af317914a0308495133b2d654cf67b11bbd6ca16637c4e8a38f80a5a69/charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a", size = 140135 }, + { url = "https://files.pythonhosted.org/packages/f2/41/6190102ad521a8aa888519bb014a74251ac4586cde9b38e790901684f9ab/charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242", size = 150413 }, + { url = "https://files.pythonhosted.org/packages/7b/ab/f47b0159a69eab9bd915591106859f49670c75f9a19082505ff16f50efc0/charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b", size = 142992 }, + { url = "https://files.pythonhosted.org/packages/28/89/60f51ad71f63aaaa7e51a2a2ad37919985a341a1d267070f212cdf6c2d22/charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62", size = 144871 }, + { url = "https://files.pythonhosted.org/packages/0c/48/0050550275fea585a6e24460b42465020b53375017d8596c96be57bfabca/charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0", size = 146756 }, + { url = "https://files.pythonhosted.org/packages/dc/b5/47f8ee91455946f745e6c9ddbb0f8f50314d2416dd922b213e7d5551ad09/charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd", size = 141034 }, + { url = "https://files.pythonhosted.org/packages/84/79/5c731059ebab43e80bf61fa51666b9b18167974b82004f18c76378ed31a3/charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be", size = 149434 }, + { url = "https://files.pythonhosted.org/packages/ca/f3/0719cd09fc4dc42066f239cb3c48ced17fc3316afca3e2a30a4756fe49ab/charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d", size = 152443 }, + { url = "https://files.pythonhosted.org/packages/f7/0e/c6357297f1157c8e8227ff337e93fd0a90e498e3d6ab96b2782204ecae48/charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3", size = 150294 }, + { url = "https://files.pythonhosted.org/packages/54/9a/acfa96dc4ea8c928040b15822b59d0863d6e1757fba8bd7de3dc4f761c13/charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742", size = 145314 }, + { url = "https://files.pythonhosted.org/packages/73/1c/b10a63032eaebb8d7bcb8544f12f063f41f5f463778ac61da15d9985e8b6/charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2", size = 94724 }, + { url = "https://files.pythonhosted.org/packages/c5/77/3a78bf28bfaa0863f9cfef278dbeadf55efe064eafff8c7c424ae3c4c1bf/charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca", size = 102159 }, + { url = "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", size = 49446 }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "cryptography" +version = "43.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0d/05/07b55d1fa21ac18c3a8c79f764e2514e6f6a9698f1be44994f5adf0d29db/cryptography-43.0.3.tar.gz", hash = "sha256:315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805", size = 686989 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/01/4896f3d1b392025d4fcbecf40fdea92d3df8662123f6835d0af828d148fd/cryptography-43.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63efa177ff54aec6e1c0aefaa1a241232dcd37413835a9b674b6e3f0ae2bfd3e", size = 3760905 }, + { url = "https://files.pythonhosted.org/packages/0a/be/f9a1f673f0ed4b7f6c643164e513dbad28dd4f2dcdf5715004f172ef24b6/cryptography-43.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e1ce50266f4f70bf41a2c6dc4358afadae90e2a1e5342d3c08883df1675374f", size = 3977271 }, + { url = "https://files.pythonhosted.org/packages/4e/49/80c3a7b5514d1b416d7350830e8c422a4d667b6d9b16a9392ebfd4a5388a/cryptography-43.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:443c4a81bb10daed9a8f334365fe52542771f25aedaf889fd323a853ce7377d6", size = 3746606 }, + { url = "https://files.pythonhosted.org/packages/0e/16/a28ddf78ac6e7e3f25ebcef69ab15c2c6be5ff9743dd0709a69a4f968472/cryptography-43.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:74f57f24754fe349223792466a709f8e0c093205ff0dca557af51072ff47ab18", size = 3986484 }, + { url = "https://files.pythonhosted.org/packages/01/f5/69ae8da70c19864a32b0315049866c4d411cce423ec169993d0434218762/cryptography-43.0.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9762ea51a8fc2a88b70cf2995e5675b38d93bf36bd67d91721c309df184f49bd", size = 3852131 }, + { url = "https://files.pythonhosted.org/packages/fd/db/e74911d95c040f9afd3612b1f732e52b3e517cb80de8bf183be0b7d413c6/cryptography-43.0.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:81ef806b1fef6b06dcebad789f988d3b37ccaee225695cf3e07648eee0fc6b73", size = 4075647 }, + { url = "https://files.pythonhosted.org/packages/2f/78/55356eb9075d0be6e81b59f45c7b48df87f76a20e73893872170471f3ee8/cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5", size = 3762968 }, + { url = "https://files.pythonhosted.org/packages/2a/2c/488776a3dc843f95f86d2f957ca0fc3407d0242b50bede7fad1e339be03f/cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4", size = 3977754 }, + { url = "https://files.pythonhosted.org/packages/7c/04/2345ca92f7a22f601a9c62961741ef7dd0127c39f7310dffa0041c80f16f/cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7", size = 3749458 }, + { url = "https://files.pythonhosted.org/packages/ac/25/e715fa0bc24ac2114ed69da33adf451a38abb6f3f24ec207908112e9ba53/cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405", size = 3988220 }, + { url = "https://files.pythonhosted.org/packages/21/ce/b9c9ff56c7164d8e2edfb6c9305045fbc0df4508ccfdb13ee66eb8c95b0e/cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16", size = 3853898 }, + { url = "https://files.pythonhosted.org/packages/2a/33/b3682992ab2e9476b9c81fff22f02c8b0a1e6e1d49ee1750a67d85fd7ed2/cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73", size = 4076592 }, + { url = "https://files.pythonhosted.org/packages/93/90/116edd5f8ec23b2dc879f7a42443e073cdad22950d3c8ee834e3b8124543/cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a2a431ee15799d6db9fe80c82b055bae5a752bef645bba795e8e52687c69efe3", size = 3679828 }, + { url = "https://files.pythonhosted.org/packages/d8/32/1e1d78b316aa22c0ba6493cc271c1c309969e5aa5c22c830a1d7ce3471e6/cryptography-43.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:281c945d0e28c92ca5e5930664c1cefd85efe80e5c0d2bc58dd63383fda29f83", size = 3908132 }, + { url = "https://files.pythonhosted.org/packages/d7/29/a233efb3e98b13d9175dcb3c3146988ec990896c8fa07e8467cce27d5a80/cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:53a583b6637ab4c4e3591a15bc9db855b8d9dee9a669b550f311480acab6eb08", size = 3681997 }, + { url = "https://files.pythonhosted.org/packages/c0/cf/c9eea7791b961f279fb6db86c3355cfad29a73141f46427af71852b23b95/cryptography-43.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1ec0bcf7e17c0c5669d881b1cd38c4972fade441b27bda1051665faaa89bdcaa", size = 3905208 }, +] + +[[package]] +name = "distlib" +version = "0.3.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973 }, +] + +[[package]] +name = "exceptiongroup" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, +] + +[[package]] +name = "execnet" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3", size = 166524 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612 }, +] + +[[package]] +name = "filelock" +version = "3.16.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/db/3ef5bb276dae18d6ec2124224403d1d67bccdbefc17af4cc8f553e341ab1/filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435", size = 18037 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/f8/feced7779d755758a52d1f6635d990b8d98dc0a29fa568bbe0625f18fdf3/filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0", size = 16163 }, +] + +[[package]] +name = "ghp-import" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343", size = 10943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", size = 11034 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "hatch" +version = "1.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "hatchling" }, + { name = "httpx" }, + { name = "hyperlink" }, + { name = "keyring" }, + { name = "packaging" }, + { name = "pexpect" }, + { name = "platformdirs" }, + { name = "rich" }, + { name = "shellingham" }, + { name = "tomli-w" }, + { name = "tomlkit" }, + { name = "userpath" }, + { name = "uv" }, + { name = "virtualenv" }, + { name = "zstandard" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fd/40/dbf99436f18bd8b820d5690dff5a534092e1456ba74a87699118b0221417/hatch-1.12.0.tar.gz", hash = "sha256:ae80478d10312df2b44d659c93bc2ed4d33aecddce4b76378231bdf81c8bf6ad", size = 5187517 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ad/63c1df39881b13ff1aad632809a680dabdcd40bf65a05c5194b41698b8b3/hatch-1.12.0-py3-none-any.whl", hash = "sha256:7df02b2df8b2364c33f1cadab4966ae24d8dd235edd61b21ed9c2975506e4174", size = 125353 }, +] + +[[package]] +name = "hatchling" +version = "1.26.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "pathspec" }, + { name = "pluggy" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, + { name = "trove-classifiers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e1/47/7ec270a9567262ae3cb32dd420d2b53bf7aee769aca1f240eae0426b5bbc/hatchling-1.26.3.tar.gz", hash = "sha256:b672a9c36a601a06c4e88a1abb1330639ee8e721e0535a37536e546a667efc7a", size = 54968 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/41/b3e29dc4fe623794070e5dfbb9915acb649ce05d6472f005470cbed9de83/hatchling-1.26.3-py3-none-any.whl", hash = "sha256:c407e1c6c17b574584a66ae60e8e9a01235ecb6dc61d01559bb936577aaf5846", size = 75773 }, +] + +[[package]] +name = "httpcore" +version = "1.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c", size = 85196 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 }, +] + +[[package]] +name = "httpx" +version = "0.27.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/82/08f8c936781f67d9e6b9eeb8a0c8b4e406136ea4c3d1f89a5db71d42e0e6/httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2", size = 144189 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/95/9377bcb415797e44274b51d46e3249eba641711cf3348050f76ee7b15ffc/httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0", size = 76395 }, +] + +[[package]] +name = "hyperlink" +version = "21.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3a/51/1947bd81d75af87e3bb9e34593a4cf118115a8feb451ce7a69044ef1412e/hyperlink-21.0.0.tar.gz", hash = "sha256:427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b", size = 140743 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/aa/8caf6a0a3e62863cbb9dab27135660acba46903b703e224f14f447e57934/hyperlink-21.0.0-py2.py3-none-any.whl", hash = "sha256:e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4", size = 74638 }, +] + +[[package]] +name = "identify" +version = "2.6.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/79/7a520fc5011e02ca3f3285b5f6820eaf80443eb73e3733f73c02fb42ba0b/identify-2.6.2.tar.gz", hash = "sha256:fab5c716c24d7a789775228823797296a2994b075fb6080ac83a102772a98cbd", size = 99113 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/86/c4395700f3c5475424fb5c41e20c16be28d10c904aee4d005ba3217fc8e7/identify-2.6.2-py2.py3-none-any.whl", hash = "sha256:c097384259f49e372f4ea00a19719d95ae27dd5ff0fd77ad630aa891306b82f3", size = 98982 }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, +] + +[[package]] +name = "importlib-metadata" +version = "8.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", size = 55304 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/d9/a1e041c5e7caa9a05c925f4bdbdfb7f006d1f74996af53467bc394c97be7/importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b", size = 26514 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "isocodes" +version = "2024.11.20" +source = { editable = "." } + +[package.optional-dependencies] +build = [ + { name = "hatch" }, +] +dev = [ + { name = "mypy" }, + { name = "pre-commit" }, + { name = "ruff" }, +] +doc = [ + { name = "mkdocs" }, + { name = "mkdocs-material" }, + { name = "mkdocstrings" }, +] +test = [ + { name = "psutil" }, + { name = "pyinstaller", extra = ["hook-testing"] }, + { name = "pytest" }, + { name = "tox" }, +] + +[package.metadata] +requires-dist = [ + { name = "hatch", marker = "extra == 'build'", specifier = "==1.12.0" }, + { name = "mkdocs", marker = "extra == 'doc'", specifier = "==1.6.0" }, + { name = "mkdocs-material", marker = "extra == 'doc'", specifier = "==9.5.30" }, + { name = "mkdocstrings", marker = "extra == 'doc'", specifier = "==0.25.2" }, + { name = "mypy", marker = "extra == 'dev'", specifier = "==1.10.1" }, + { name = "pre-commit", marker = "extra == 'dev'", specifier = "==3.7.1" }, + { name = "psutil", marker = "extra == 'test'", specifier = "==6.0.0" }, + { name = "pyinstaller", extras = ["hook-testing"], marker = "extra == 'test'", specifier = "==6.10.0" }, + { name = "pytest", marker = "extra == 'test'", specifier = "==8.2.2" }, + { name = "ruff", marker = "extra == 'dev'", specifier = "==0.6.3" }, + { name = "tox", marker = "extra == 'test'", specifier = "==4.18.0" }, +] + +[[package]] +name = "jaraco-classes" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "more-itertools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/c0/ed4a27bc5571b99e3cff68f8a9fa5b56ff7df1c2251cc715a652ddd26402/jaraco.classes-3.4.0.tar.gz", hash = "sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd", size = 11780 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", size = 6777 }, +] + +[[package]] +name = "jaraco-context" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "backports-tarfile", marker = "python_full_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/ad/f3777b81bf0b6e7bc7514a1656d3e637b2e8e15fab2ce3235730b3e7a4e6/jaraco_context-6.0.1.tar.gz", hash = "sha256:9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3", size = 13912 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl", hash = "sha256:f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4", size = 6825 }, +] + +[[package]] +name = "jaraco-functools" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "more-itertools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/23/9894b3df5d0a6eb44611c36aec777823fc2e07740dabbd0b810e19594013/jaraco_functools-4.1.0.tar.gz", hash = "sha256:70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d", size = 19159 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl", hash = "sha256:ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649", size = 10187 }, +] + +[[package]] +name = "jeepney" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/f4/154cf374c2daf2020e05c3c6a03c91348d59b23c5366e968feb198306fdf/jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", size = 106005 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755", size = 48435 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "keyring" +version = "25.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_full_version < '3.12'" }, + { name = "jaraco-classes" }, + { name = "jaraco-context" }, + { name = "jaraco-functools" }, + { name = "jeepney", marker = "sys_platform == 'linux'" }, + { name = "pywin32-ctypes", marker = "sys_platform == 'win32'" }, + { name = "secretstorage", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f6/24/64447b13df6a0e2797b586dad715766d756c932ce8ace7f67bd384d76ae0/keyring-25.5.0.tar.gz", hash = "sha256:4c753b3ec91717fe713c4edd522d625889d8973a349b0e582622f49766de58e6", size = 62675 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/c9/353c156fa2f057e669106e5d6bcdecf85ef8d3536ce68ca96f18dc7b6d6f/keyring-25.5.0-py3-none-any.whl", hash = "sha256:e67f8ac32b04be4714b42fe84ce7dad9c40985b9ca827c592cc303e7c26d9741", size = 39096 }, +] + +[[package]] +name = "macholib" +version = "1.16.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "altgraph" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/95/ee/af1a3842bdd5902ce133bd246eb7ffd4375c38642aeb5dc0ae3a0329dfa2/macholib-1.16.3.tar.gz", hash = "sha256:07ae9e15e8e4cd9a788013d81f5908b3609aa76f9b1421bae9c4d7606ec86a30", size = 59309 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/5d/c059c180c84f7962db0aeae7c3b9303ed1d73d76f2bfbc32bc231c8be314/macholib-1.16.3-py2.py3-none-any.whl", hash = "sha256:0e315d7583d38b8c77e815b1ecbdbf504a8258d8b3e17b61165c6feb60d18f2c", size = 38094 }, +] + +[[package]] +name = "markdown" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/28/3af612670f82f4c056911fbbbb42760255801b3068c48de792d354ff4472/markdown-3.7.tar.gz", hash = "sha256:2ae2471477cfd02dbbf038d5d9bc226d40def84b4fe2986e49b59b6b472bbed2", size = 357086 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/08/83871f3c50fc983b88547c196d11cf8c3340e37c32d2e9d6152abe2c61f7/Markdown-3.7-py3-none-any.whl", hash = "sha256:7eb6df5690b81a1d7942992c97fad2938e956e79df20cbc6186e9c3a77b1c803", size = 106349 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357 }, + { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393 }, + { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732 }, + { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866 }, + { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964 }, + { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977 }, + { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366 }, + { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091 }, + { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065 }, + { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514 }, + { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 }, + { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 }, + { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 }, + { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 }, + { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 }, + { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 }, + { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 }, + { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 }, + { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 }, + { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 }, + { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 }, + { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 }, + { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 }, + { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 }, + { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 }, + { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 }, + { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 }, + { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 }, + { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 }, + { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 }, + { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 }, + { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 }, + { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 }, + { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 }, + { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 }, + { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 }, + { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 }, + { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 }, + { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 }, + { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 }, + { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 }, + { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 }, + { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 }, + { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 }, + { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 }, + { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 }, + { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 }, + { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 }, + { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 }, + { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 }, + { url = "https://files.pythonhosted.org/packages/a7/ea/9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062/MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", size = 14344 }, + { url = "https://files.pythonhosted.org/packages/4b/c2/fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de/MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", size = 12389 }, + { url = "https://files.pythonhosted.org/packages/f0/25/7a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", size = 21607 }, + { url = "https://files.pythonhosted.org/packages/53/8f/f339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", size = 20728 }, + { url = "https://files.pythonhosted.org/packages/1a/03/8496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", size = 20826 }, + { url = "https://files.pythonhosted.org/packages/e6/cf/0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", size = 21843 }, + { url = "https://files.pythonhosted.org/packages/19/a3/34187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", size = 21219 }, + { url = "https://files.pythonhosted.org/packages/17/d8/5811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", size = 20946 }, + { url = "https://files.pythonhosted.org/packages/7c/31/bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2/MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", size = 15063 }, + { url = "https://files.pythonhosted.org/packages/b3/73/085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3/MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", size = 15506 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "mergedeep" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/41/580bb4006e3ed0361b8151a01d324fb03f420815446c7def45d02f74c270/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", size = 4661 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354 }, +] + +[[package]] +name = "mkdocs" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "colorama", marker = "platform_system == 'Windows'" }, + { name = "ghp-import" }, + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mergedeep" }, + { name = "mkdocs-get-deps" }, + { name = "packaging" }, + { name = "pathspec" }, + { name = "pyyaml" }, + { name = "pyyaml-env-tag" }, + { name = "watchdog" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/6b/26b33cc8ad54e8bc0345cddc061c2c5c23e364de0ecd97969df23f95a673/mkdocs-1.6.0.tar.gz", hash = "sha256:a73f735824ef83a4f3bcb7a231dcab23f5a838f88b7efc54a0eef5fbdbc3c512", size = 3888392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/c0/930dcf5a3e96b9c8e7ad15502603fc61d495479699e2d2c381e3d37294d1/mkdocs-1.6.0-py3-none-any.whl", hash = "sha256:1eb5cb7676b7d89323e62b56235010216319217d4af5ddc543a91beb8d125ea7", size = 3862264 }, +] + +[[package]] +name = "mkdocs-autorefs" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mkdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/ae/0f1154c614d6a8b8a36fff084e5b82af3a15f7d2060cf0dcdb1c53297a71/mkdocs_autorefs-1.2.0.tar.gz", hash = "sha256:a86b93abff653521bda71cf3fc5596342b7a23982093915cb74273f67522190f", size = 40262 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/26/4d39d52ea2219604053a4d05b98e90d6a335511cc01806436ec4886b1028/mkdocs_autorefs-1.2.0-py3-none-any.whl", hash = "sha256:d588754ae89bd0ced0c70c06f58566a4ee43471eeeee5202427da7de9ef85a2f", size = 16522 }, +] + +[[package]] +name = "mkdocs-get-deps" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "mergedeep" }, + { name = "platformdirs" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/f5/ed29cd50067784976f25ed0ed6fcd3c2ce9eb90650aa3b2796ddf7b6870b/mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c", size = 10239 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134", size = 9521 }, +] + +[[package]] +name = "mkdocs-material" +version = "9.5.30" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "colorama" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "mkdocs" }, + { name = "mkdocs-material-extensions" }, + { name = "paginate" }, + { name = "pygments" }, + { name = "pymdown-extensions" }, + { name = "regex" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/bd/00ada20787910d8ca0def5aeec7449849dbf6294c529c1e596df4a6457eb/mkdocs_material-9.5.30.tar.gz", hash = "sha256:3fd417dd42d679e3ba08b9e2d72cd8b8af142cc4a3969676ad6b00993dd182ec", size = 4103479 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/b4/fe7fd093d6560ee756f8ab41d5cc50b362ac85f7f0c0e00ee82fadbc4f6d/mkdocs_material-9.5.30-py3-none-any.whl", hash = "sha256:fc070689c5250a180e9b9d79d8491ef9a3a7acb240db0728728d6c31eeb131d4", size = 8817826 }, +] + +[[package]] +name = "mkdocs-material-extensions" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/9b/9b4c96d6593b2a541e1cb8b34899a6d021d208bb357042823d4d2cabdbe7/mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443", size = 11847 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31", size = 8728 }, +] + +[[package]] +name = "mkdocstrings" +version = "0.25.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mkdocs" }, + { name = "mkdocs-autorefs" }, + { name = "platformdirs" }, + { name = "pymdown-extensions" }, + { name = "typing-extensions", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/24/a6/d544fae9749b19e23fb590f6344f9eae3a312323065070b4874236bb0e04/mkdocstrings-0.25.2.tar.gz", hash = "sha256:5cf57ad7f61e8be3111a2458b4e49c2029c9cb35525393b179f9c916ca8042dc", size = 91796 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/86/ee2aef075cc9a62a4f087c3c3f4e3e8a8318afe05a92f8f8415f1bf1af64/mkdocstrings-0.25.2-py3-none-any.whl", hash = "sha256:9e2cda5e2e12db8bb98d21e3410f3f27f8faab685a24b03b06ba7daa5b92abfc", size = 29289 }, +] + +[[package]] +name = "more-itertools" +version = "10.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/78/65922308c4248e0eb08ebcbe67c95d48615cc6f27854b6f2e57143e9178f/more-itertools-10.5.0.tar.gz", hash = "sha256:5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6", size = 121020 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/7e/3a64597054a70f7c86eb0a7d4fc315b8c1ab932f64883a297bdffeb5f967/more_itertools-10.5.0-py3-none-any.whl", hash = "sha256:037b0d3203ce90cca8ab1defbbdac29d5f993fc20131f3664dc8d6acfa872aef", size = 60952 }, +] + +[[package]] +name = "mypy" +version = "1.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mypy-extensions" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/b9/81e4c6dbb1ec1e72503de3ff2c5fe4b7f224e04613b670f8b9004cd8a4dd/mypy-1.10.1.tar.gz", hash = "sha256:1f8f492d7db9e3593ef42d4f115f04e556130f2819ad33ab84551403e97dd4c0", size = 3022304 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/24/8a179de3ed98e1882f640d431db25a17fc5813258fded79674e475501f87/mypy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e36f229acfe250dc660790840916eb49726c928e8ce10fbdf90715090fe4ae02", size = 10817694 }, + { url = "https://files.pythonhosted.org/packages/f3/80/1675d07cfb4cc12bedcb5bb426f256d8c8da3668cbf300121e39333f0c96/mypy-1.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:51a46974340baaa4145363b9e051812a2446cf583dfaeba124af966fa44593f7", size = 9975362 }, + { url = "https://files.pythonhosted.org/packages/d5/a0/684ebd636f258bdd263b12be46dd4e1ed33ac73a76d590b209c026e3c65f/mypy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:901c89c2d67bba57aaaca91ccdb659aa3a312de67f23b9dfb059727cce2e2e0a", size = 12728032 }, + { url = "https://files.pythonhosted.org/packages/f3/c8/1f881f08e93ea8165113ab0fad490262b0466d0c2616c13c1bb85741ff87/mypy-1.10.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0cd62192a4a32b77ceb31272d9e74d23cd88c8060c34d1d3622db3267679a5d9", size = 12797751 }, + { url = "https://files.pythonhosted.org/packages/4a/d3/46c81d90576e2e766144c0e436fa397a7387092fe29c6ef964f91d92778d/mypy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:a2cbc68cb9e943ac0814c13e2452d2046c2f2b23ff0278e26599224cf164e78d", size = 9398835 }, + { url = "https://files.pythonhosted.org/packages/38/cf/0645128c6edf70eb9b9687ad42fcb61ea344a7927ed2b78ce2275282fe87/mypy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bd6f629b67bb43dc0d9211ee98b96d8dabc97b1ad38b9b25f5e4c4d7569a0c6a", size = 10740526 }, + { url = "https://files.pythonhosted.org/packages/19/c9/10842953066265e6063c41a85bbee3b877501947c970ea84a1db5f11d32e/mypy-1.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a1bbb3a6f5ff319d2b9d40b4080d46cd639abe3516d5a62c070cf0114a457d84", size = 9898375 }, + { url = "https://files.pythonhosted.org/packages/e4/9e/551e897f67c5d67aa1976bc3b4951f297d1daf07250c421bb045b2613350/mypy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8edd4e9bbbc9d7b79502eb9592cab808585516ae1bcc1446eb9122656c6066f", size = 12602338 }, + { url = "https://files.pythonhosted.org/packages/2b/a4/55e3635253e5fa7051674dd5a67582f08b0ba8823e1fdbf7241ed5b32d4e/mypy-1.10.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6166a88b15f1759f94a46fa474c7b1b05d134b1b61fca627dd7335454cc9aa6b", size = 12680741 }, + { url = "https://files.pythonhosted.org/packages/7a/cc/aa881ad051f99915887db0b5de8facc0e224295be22f92178c8f77fd8359/mypy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:5bb9cd11c01c8606a9d0b83ffa91d0b236a0e91bc4126d9ba9ce62906ada868e", size = 9393661 }, + { url = "https://files.pythonhosted.org/packages/5d/86/3c3bdaccc3cbd1372acb15667a2c2cb773523a710a22e2748cbda9a7c1e2/mypy-1.10.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d8681909f7b44d0b7b86e653ca152d6dff0eb5eb41694e163c6092124f8246d7", size = 10864022 }, + { url = "https://files.pythonhosted.org/packages/ec/05/7c87b26b6a769b70f6c0b8a6daef01fc6f3ae566df89a2fa9d04f690b0d3/mypy-1.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:378c03f53f10bbdd55ca94e46ec3ba255279706a6aacaecac52ad248f98205d3", size = 9857795 }, + { url = "https://files.pythonhosted.org/packages/ff/b5/cbccba4dca9703c4c467171e7f61ea6a1a75eae991208aa5bc7d49807f91/mypy-1.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bacf8f3a3d7d849f40ca6caea5c055122efe70e81480c8328ad29c55c69e93e", size = 12647633 }, + { url = "https://files.pythonhosted.org/packages/02/3c/1f5e57c8cfab4299f7189821ae8bb4896e8e623a04d293fd32e32eb0e617/mypy-1.10.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:701b5f71413f1e9855566a34d6e9d12624e9e0a8818a5704d74d6b0402e66c04", size = 12730251 }, + { url = "https://files.pythonhosted.org/packages/f9/20/d33608e8dc3bc0f5966fc1f6c2d16671f0725dcca279beec47c3e19afd9d/mypy-1.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:3c4c2992f6ea46ff7fce0072642cfb62af7a2484efe69017ed8b095f7b39ef31", size = 9491734 }, + { url = "https://files.pythonhosted.org/packages/50/00/86bb2f6c5b58fc6f360dd4cb5c0666dc67c05007c2cddcc694528a59a604/mypy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fe85ed6836165d52ae8b88f99527d3d1b2362e0cb90b005409b8bed90e9059b3", size = 10813338 }, + { url = "https://files.pythonhosted.org/packages/33/b0/20c9f6dcbfb312d1804a81f4a39e0b401fe614dc0de580249b6deb07d053/mypy-1.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c2ae450d60d7d020d67ab440c6e3fae375809988119817214440033f26ddf7bf", size = 9968141 }, + { url = "https://files.pythonhosted.org/packages/aa/87/ec65c45b2e5160203a680b0f79e459fbe9c192f9eff501c3fec82bef3be5/mypy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6be84c06e6abd72f960ba9a71561c14137a583093ffcf9bbfaf5e613d63fa531", size = 12724186 }, + { url = "https://files.pythonhosted.org/packages/c5/5c/f61c876647036d572a1434f0251257a04f2a7bd038c718b28fa5ca699515/mypy-1.10.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2189ff1e39db399f08205e22a797383613ce1cb0cb3b13d8bcf0170e45b96cc3", size = 12796640 }, + { url = "https://files.pythonhosted.org/packages/69/09/5cd3609d18cf27ec84f380a92b3da695f84781de119d68db69d274c3d1ee/mypy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:97a131ee36ac37ce9581f4220311247ab6cba896b4395b9c87af0675a13a755f", size = 9396105 }, + { url = "https://files.pythonhosted.org/packages/2b/ee/d53a3d4792a09b6cd757978951d6dcf8b10825a8b8522b68e9b5eb53b9a1/mypy-1.10.1-py3-none-any.whl", hash = "sha256:71d8ac0b906354ebda8ef1673e5fde785936ac1f29ff6987c7483cfbd5a4235a", size = 2580108 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314 }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, +] + +[[package]] +name = "paginate" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/46/68dde5b6bc00c1296ec6466ab27dddede6aec9af1b99090e1107091b3b84/paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945", size = 19252 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591", size = 13746 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "pefile" +version = "2024.8.26" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/4f/2750f7f6f025a1507cd3b7218691671eecfd0bbebebe8b39aa0fe1d360b8/pefile-2024.8.26.tar.gz", hash = "sha256:3ff6c5d8b43e8c37bb6e6dd5085658d658a7a0bdcd20b6a07b1fcfc1c4e9d632", size = 76008 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/16/12b82f791c7f50ddec566873d5bdd245baa1491bac11d15ffb98aecc8f8b/pefile-2024.8.26-py3-none-any.whl", hash = "sha256:76f8b485dcd3b1bb8166f1128d395fa3d87af26360c2358fb75b80019b957c6f", size = 74766 }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 }, +] + +[[package]] +name = "platformdirs" +version = "4.3.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/fc/128cc9cb8f03208bdbf93d3aa862e16d376844a14f9a0ce5cf4507372de4/platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907", size = 21302 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb", size = 18439 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pre-commit" +version = "3.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv" }, + { name = "identify" }, + { name = "nodeenv" }, + { name = "pyyaml" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/46/cc214ef6514270328910083d0119d0a80a6d2c4ec8c6608c0219db0b74cf/pre_commit-3.7.1.tar.gz", hash = "sha256:8ca3ad567bc78a4972a3f1a477e94a79d4597e8140a6e0b651c5e33899c3654a", size = 177317 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/0f/d6d0b4e2f5b2933a557087fc0560371aa545a18232d4d3427eb3bb3af12e/pre_commit-3.7.1-py2.py3-none-any.whl", hash = "sha256:fae36fd1d7ad7d6a5a1c0b0d5adb2ed1a3bda5a21bf6c3e5372073d7a11cd4c5", size = 204268 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pyinstaller" +version = "6.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "altgraph" }, + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "macholib", marker = "sys_platform == 'darwin'" }, + { name = "packaging" }, + { name = "pefile", marker = "sys_platform == 'win32'" }, + { name = "pyinstaller-hooks-contrib" }, + { name = "pywin32-ctypes", marker = "sys_platform == 'win32'" }, + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/df/30b1f66d35defa37e676556acca4eb775b49637bb73054b0c31af134cd8a/pyinstaller-6.10.0.tar.gz", hash = "sha256:143840f8056ff7b910bf8f16f6cd92cc10a6c2680bb76d0a25d558d543d21270", size = 2464746 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/fd/9b3c208c9cc822555b88c6af051da5f7291f367e4337ea44b138008ba2fb/pyinstaller-6.10.0-py3-none-macosx_10_13_universal2.whl", hash = "sha256:d60fb22859e11483af735aec115fdde09467cdbb29edd9844839f2c920b748c0", size = 984872 }, + { url = "https://files.pythonhosted.org/packages/b7/1c/1071c69e21b27ca5b1ea185fb897a0e724e85b8c4456b0b142b0cac3c33b/pyinstaller-6.10.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:46d75359668993ddd98630a3669dc5249f3c446e35239b43bc7f4155bc574748", size = 705041 }, + { url = "https://files.pythonhosted.org/packages/c4/44/4e20bf97d464cb27fd9b25321c94beb8d1f5ed7176af38fe6a22d8766d2e/pyinstaller-6.10.0-py3-none-manylinux2014_i686.whl", hash = "sha256:3398a98fa17d47ccb31f8779ecbdacec025f7adb2f22757a54b706ac8b4fe906", size = 707309 }, + { url = "https://files.pythonhosted.org/packages/65/e7/452dc579bd38b50142a0886a3a0fd67aa14fb84ea0376f339a568931319c/pyinstaller-6.10.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e9989f354ae4ed8a3bec7bdb37ae0d170751d6520e500f049c7cd0632d31d5c3", size = 712476 }, + { url = "https://files.pythonhosted.org/packages/6e/56/5ce76d7dd53f8ed13d91d0ac9688b5624c849ad2dfcee18ff5709955d150/pyinstaller-6.10.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:b7c90c91921b3749083115b28f30f40abf2bb481ceff196d2b2ce0eaa2b3d429", size = 702859 }, + { url = "https://files.pythonhosted.org/packages/19/78/604bec9cd73cd02ed29f7bd72ec25dff6eccc57554ec3ab096959fae65de/pyinstaller-6.10.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6cf876d7d93b8b4f28d1ad57fa24645cf43119c79e985dd5e5f7a801245e6f53", size = 703343 }, + { url = "https://files.pythonhosted.org/packages/ba/8f/f21b92a90bb48a0e59f448ff6f92a823457922207cede7ae3abedcbfb974/pyinstaller-6.10.0-py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:db05e3f2f10f9f78c56f1fb163d9cb453433429fe4281218ebaf1ebfd39ba942", size = 707763 }, + { url = "https://files.pythonhosted.org/packages/fa/77/eeac52914f24d952524493d3190f6a383582d4abb117076f50264eba0f9e/pyinstaller-6.10.0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:28eca3817f176fdc19747e1afcf434f13bb9f17a644f611be2c5a61b1f498ed7", size = 703742 }, + { url = "https://files.pythonhosted.org/packages/a2/fd/dcbeb93783b983c8bf5d9cab929361761b0c3bc560de5377041eb2aec2b0/pyinstaller-6.10.0-py3-none-win32.whl", hash = "sha256:703e041718987e46ba0568a2c71ecf2459fddef57cf9edf3efeed4a53e3dae3f", size = 1272503 }, + { url = "https://files.pythonhosted.org/packages/c2/13/fe1ea2fb379a4ea86fa38c224b853b94227246840484feccbb4f2fded615/pyinstaller-6.10.0-py3-none-win_amd64.whl", hash = "sha256:95b55966e563e8b8f31a43882aea10169e9a11fdf38e626d86a2907b640c0701", size = 1332831 }, + { url = "https://files.pythonhosted.org/packages/4e/4f/d46f182cae5b43d97b18fa5b167a233ec04fd616d60514aece08d5c45ab8/pyinstaller-6.10.0-py3-none-win_arm64.whl", hash = "sha256:308e0a8670c9c9ac0cebbf1bbb492e71b6675606f2ec78bc4adfc830d209e087", size = 1259686 }, +] + +[package.optional-dependencies] +hook-testing = [ + { name = "execnet" }, + { name = "psutil" }, + { name = "pytest" }, +] + +[[package]] +name = "pyinstaller-hooks-contrib" +version = "2024.10" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "packaging" }, + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/6a/9d0057e312b85fbd17a79e1c1955d115fd9bbc78b85bab757777c8ef2307/pyinstaller_hooks_contrib-2024.10.tar.gz", hash = "sha256:8a46655e5c5b0186b5e527399118a9b342f10513eb1425c483fa4f6d02e8800c", size = 140592 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/64/445861ee7a5fd32874c0f6cfe8222aacc8feda22539332e0d8ff50dadec6/pyinstaller_hooks_contrib-2024.10-py3-none-any.whl", hash = "sha256:ad47db0e153683b4151e10d231cb91f2d93c85079e78d76d9e0f57ac6c8a5e10", size = 338417 }, +] + +[[package]] +name = "pymdown-extensions" +version = "10.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/0b/32f05854cfd432e9286bb41a870e0d1a926b72df5f5cdb6dec962b2e369e/pymdown_extensions-10.12.tar.gz", hash = "sha256:b0ee1e0b2bef1071a47891ab17003bfe5bf824a398e13f49f8ed653b699369a7", size = 840790 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/32/95a164ddf533bd676cbbe878e36e89b4ade3efde8dd61d0148c90cbbe57e/pymdown_extensions-10.12-py3-none-any.whl", hash = "sha256:49f81412242d3527b8b4967b990df395c89563043bc51a3d2d7d500e52123b77", size = 263448 }, +] + +[[package]] +name = "pyproject-api" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bb/19/441e0624a8afedd15bbcce96df1b80479dd0ff0d965f5ce8fde4f2f6ffad/pyproject_api-1.8.0.tar.gz", hash = "sha256:77b8049f2feb5d33eefcc21b57f1e279636277a8ac8ad6b5871037b243778496", size = 22340 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/f4/3c4ddfcc0c19c217c6de513842d286de8021af2f2ab79bbb86c00342d778/pyproject_api-1.8.0-py3-none-any.whl", hash = "sha256:3d7d347a047afe796fd5d1885b1e391ba29be7169bd2f102fcd378f04273d228", size = 13100 }, +] + +[[package]] +name = "pytest" +version = "8.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/58/e993ca5357553c966b9e73cb3475d9c935fe9488746e13ebdf9b80fae508/pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977", size = 1427980 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/e7/81ebdd666d3bff6670d27349b5053605d83d55548e6bd5711f3b0ae7dd23/pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343", size = 339873 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "pywin32-ctypes" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/9f/01a1a99704853cb63f253eea009390c88e7131c67e66a0a02099a8c917cb/pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755", size = 29471 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/3d/8161f7711c017e01ac9f008dfddd9410dff3674334c233bde66e7ba65bbf/pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8", size = 30756 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, + { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, + { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, + { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, + { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, + { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, + { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, + { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, + { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, +] + +[[package]] +name = "pyyaml-env-tag" +version = "0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/8e/da1c6c58f751b70f8ceb1eb25bc25d524e8f14fe16edcce3f4e3ba08629c/pyyaml_env_tag-0.1.tar.gz", hash = "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb", size = 5631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/66/bbb1dd374f5c870f59c5bb1db0e18cbe7fa739415a24cbd95b2d1f5ae0c4/pyyaml_env_tag-0.1-py3-none-any.whl", hash = "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069", size = 3911 }, +] + +[[package]] +name = "regex" +version = "2024.11.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/5f/bd69653fbfb76cf8604468d3b4ec4c403197144c7bfe0e6a5fc9e02a07cb/regex-2024.11.6.tar.gz", hash = "sha256:7ab159b063c52a0333c884e4679f8d7a85112ee3078fe3d9004b2dd875585519", size = 399494 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/3c/4651f6b130c6842a8f3df82461a8950f923925db8b6961063e82744bddcc/regex-2024.11.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff590880083d60acc0433f9c3f713c51f7ac6ebb9adf889c79a261ecf541aa91", size = 482674 }, + { url = "https://files.pythonhosted.org/packages/15/51/9f35d12da8434b489c7b7bffc205c474a0a9432a889457026e9bc06a297a/regex-2024.11.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:658f90550f38270639e83ce492f27d2c8d2cd63805c65a13a14d36ca126753f0", size = 287684 }, + { url = "https://files.pythonhosted.org/packages/bd/18/b731f5510d1b8fb63c6b6d3484bfa9a59b84cc578ac8b5172970e05ae07c/regex-2024.11.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:164d8b7b3b4bcb2068b97428060b2a53be050085ef94eca7f240e7947f1b080e", size = 284589 }, + { url = "https://files.pythonhosted.org/packages/78/a2/6dd36e16341ab95e4c6073426561b9bfdeb1a9c9b63ab1b579c2e96cb105/regex-2024.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3660c82f209655a06b587d55e723f0b813d3a7db2e32e5e7dc64ac2a9e86fde", size = 782511 }, + { url = "https://files.pythonhosted.org/packages/1b/2b/323e72d5d2fd8de0d9baa443e1ed70363ed7e7b2fb526f5950c5cb99c364/regex-2024.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d22326fcdef5e08c154280b71163ced384b428343ae16a5ab2b3354aed12436e", size = 821149 }, + { url = "https://files.pythonhosted.org/packages/90/30/63373b9ea468fbef8a907fd273e5c329b8c9535fee36fc8dba5fecac475d/regex-2024.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac758ef6aebfc8943560194e9fd0fa18bcb34d89fd8bd2af18183afd8da3a2", size = 809707 }, + { url = "https://files.pythonhosted.org/packages/f2/98/26d3830875b53071f1f0ae6d547f1d98e964dd29ad35cbf94439120bb67a/regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:997d6a487ff00807ba810e0f8332c18b4eb8d29463cfb7c820dc4b6e7562d0cf", size = 781702 }, + { url = "https://files.pythonhosted.org/packages/87/55/eb2a068334274db86208ab9d5599ffa63631b9f0f67ed70ea7c82a69bbc8/regex-2024.11.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:02a02d2bb04fec86ad61f3ea7f49c015a0681bf76abb9857f945d26159d2968c", size = 771976 }, + { url = "https://files.pythonhosted.org/packages/74/c0/be707bcfe98254d8f9d2cff55d216e946f4ea48ad2fd8cf1428f8c5332ba/regex-2024.11.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f02f93b92358ee3f78660e43b4b0091229260c5d5c408d17d60bf26b6c900e86", size = 697397 }, + { url = "https://files.pythonhosted.org/packages/49/dc/bb45572ceb49e0f6509f7596e4ba7031f6819ecb26bc7610979af5a77f45/regex-2024.11.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:06eb1be98df10e81ebaded73fcd51989dcf534e3c753466e4b60c4697a003b67", size = 768726 }, + { url = "https://files.pythonhosted.org/packages/5a/db/f43fd75dc4c0c2d96d0881967897926942e935d700863666f3c844a72ce6/regex-2024.11.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:040df6fe1a5504eb0f04f048e6d09cd7c7110fef851d7c567a6b6e09942feb7d", size = 775098 }, + { url = "https://files.pythonhosted.org/packages/99/d7/f94154db29ab5a89d69ff893159b19ada89e76b915c1293e98603d39838c/regex-2024.11.6-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabbfc59f2c6edba2a6622c647b716e34e8e3867e0ab975412c5c2f79b82da2", size = 839325 }, + { url = "https://files.pythonhosted.org/packages/f7/17/3cbfab1f23356fbbf07708220ab438a7efa1e0f34195bf857433f79f1788/regex-2024.11.6-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8447d2d39b5abe381419319f942de20b7ecd60ce86f16a23b0698f22e1b70008", size = 843277 }, + { url = "https://files.pythonhosted.org/packages/7e/f2/48b393b51900456155de3ad001900f94298965e1cad1c772b87f9cfea011/regex-2024.11.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da8f5fc57d1933de22a9e23eec290a0d8a5927a5370d24bda9a6abe50683fe62", size = 773197 }, + { url = "https://files.pythonhosted.org/packages/45/3f/ef9589aba93e084cd3f8471fded352826dcae8489b650d0b9b27bc5bba8a/regex-2024.11.6-cp310-cp310-win32.whl", hash = "sha256:b489578720afb782f6ccf2840920f3a32e31ba28a4b162e13900c3e6bd3f930e", size = 261714 }, + { url = "https://files.pythonhosted.org/packages/42/7e/5f1b92c8468290c465fd50c5318da64319133231415a8aa6ea5ab995a815/regex-2024.11.6-cp310-cp310-win_amd64.whl", hash = "sha256:5071b2093e793357c9d8b2929dfc13ac5f0a6c650559503bb81189d0a3814519", size = 274042 }, + { url = "https://files.pythonhosted.org/packages/58/58/7e4d9493a66c88a7da6d205768119f51af0f684fe7be7bac8328e217a52c/regex-2024.11.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5478c6962ad548b54a591778e93cd7c456a7a29f8eca9c49e4f9a806dcc5d638", size = 482669 }, + { url = "https://files.pythonhosted.org/packages/34/4c/8f8e631fcdc2ff978609eaeef1d6994bf2f028b59d9ac67640ed051f1218/regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2c89a8cc122b25ce6945f0423dc1352cb9593c68abd19223eebbd4e56612c5b7", size = 287684 }, + { url = "https://files.pythonhosted.org/packages/c5/1b/f0e4d13e6adf866ce9b069e191f303a30ab1277e037037a365c3aad5cc9c/regex-2024.11.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:94d87b689cdd831934fa3ce16cc15cd65748e6d689f5d2b8f4f4df2065c9fa20", size = 284589 }, + { url = "https://files.pythonhosted.org/packages/25/4d/ab21047f446693887f25510887e6820b93f791992994f6498b0318904d4a/regex-2024.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1062b39a0a2b75a9c694f7a08e7183a80c63c0d62b301418ffd9c35f55aaa114", size = 792121 }, + { url = "https://files.pythonhosted.org/packages/45/ee/c867e15cd894985cb32b731d89576c41a4642a57850c162490ea34b78c3b/regex-2024.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:167ed4852351d8a750da48712c3930b031f6efdaa0f22fa1933716bfcd6bf4a3", size = 831275 }, + { url = "https://files.pythonhosted.org/packages/b3/12/b0f480726cf1c60f6536fa5e1c95275a77624f3ac8fdccf79e6727499e28/regex-2024.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d548dafee61f06ebdb584080621f3e0c23fff312f0de1afc776e2a2ba99a74f", size = 818257 }, + { url = "https://files.pythonhosted.org/packages/bf/ce/0d0e61429f603bac433910d99ef1a02ce45a8967ffbe3cbee48599e62d88/regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a19f302cd1ce5dd01a9099aaa19cae6173306d1302a43b627f62e21cf18ac0", size = 792727 }, + { url = "https://files.pythonhosted.org/packages/e4/c1/243c83c53d4a419c1556f43777ccb552bccdf79d08fda3980e4e77dd9137/regex-2024.11.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bec9931dfb61ddd8ef2ebc05646293812cb6b16b60cf7c9511a832b6f1854b55", size = 780667 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/75eb0dd4ce4b37f04928987f1d22547ddaf6c4bae697623c1b05da67a8aa/regex-2024.11.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9714398225f299aa85267fd222f7142fcb5c769e73d7733344efc46f2ef5cf89", size = 776963 }, + { url = "https://files.pythonhosted.org/packages/16/5d/95c568574e630e141a69ff8a254c2f188b4398e813c40d49228c9bbd9875/regex-2024.11.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:202eb32e89f60fc147a41e55cb086db2a3f8cb82f9a9a88440dcfc5d37faae8d", size = 784700 }, + { url = "https://files.pythonhosted.org/packages/8e/b5/f8495c7917f15cc6fee1e7f395e324ec3e00ab3c665a7dc9d27562fd5290/regex-2024.11.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4181b814e56078e9b00427ca358ec44333765f5ca1b45597ec7446d3a1ef6e34", size = 848592 }, + { url = "https://files.pythonhosted.org/packages/1c/80/6dd7118e8cb212c3c60b191b932dc57db93fb2e36fb9e0e92f72a5909af9/regex-2024.11.6-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:068376da5a7e4da51968ce4c122a7cd31afaaec4fccc7856c92f63876e57b51d", size = 852929 }, + { url = "https://files.pythonhosted.org/packages/11/9b/5a05d2040297d2d254baf95eeeb6df83554e5e1df03bc1a6687fc4ba1f66/regex-2024.11.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f2c4184420d881a3475fb2c6f4d95d53a8d50209a2500723d831036f7c45", size = 781213 }, + { url = "https://files.pythonhosted.org/packages/26/b7/b14e2440156ab39e0177506c08c18accaf2b8932e39fb092074de733d868/regex-2024.11.6-cp311-cp311-win32.whl", hash = "sha256:c36f9b6f5f8649bb251a5f3f66564438977b7ef8386a52460ae77e6070d309d9", size = 261734 }, + { url = "https://files.pythonhosted.org/packages/80/32/763a6cc01d21fb3819227a1cc3f60fd251c13c37c27a73b8ff4315433a8e/regex-2024.11.6-cp311-cp311-win_amd64.whl", hash = "sha256:02e28184be537f0e75c1f9b2f8847dc51e08e6e171c6bde130b2687e0c33cf60", size = 274052 }, + { url = "https://files.pythonhosted.org/packages/ba/30/9a87ce8336b172cc232a0db89a3af97929d06c11ceaa19d97d84fa90a8f8/regex-2024.11.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:52fb28f528778f184f870b7cf8f225f5eef0a8f6e3778529bdd40c7b3920796a", size = 483781 }, + { url = "https://files.pythonhosted.org/packages/01/e8/00008ad4ff4be8b1844786ba6636035f7ef926db5686e4c0f98093612add/regex-2024.11.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdd6028445d2460f33136c55eeb1f601ab06d74cb3347132e1c24250187500d9", size = 288455 }, + { url = "https://files.pythonhosted.org/packages/60/85/cebcc0aff603ea0a201667b203f13ba75d9fc8668fab917ac5b2de3967bc/regex-2024.11.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805e6b60c54bf766b251e94526ebad60b7de0c70f70a4e6210ee2891acb70bf2", size = 284759 }, + { url = "https://files.pythonhosted.org/packages/94/2b/701a4b0585cb05472a4da28ee28fdfe155f3638f5e1ec92306d924e5faf0/regex-2024.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b85c2530be953a890eaffde05485238f07029600e8f098cdf1848d414a8b45e4", size = 794976 }, + { url = "https://files.pythonhosted.org/packages/4b/bf/fa87e563bf5fee75db8915f7352e1887b1249126a1be4813837f5dbec965/regex-2024.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb26437975da7dc36b7efad18aa9dd4ea569d2357ae6b783bf1118dabd9ea577", size = 833077 }, + { url = "https://files.pythonhosted.org/packages/a1/56/7295e6bad94b047f4d0834e4779491b81216583c00c288252ef625c01d23/regex-2024.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abfa5080c374a76a251ba60683242bc17eeb2c9818d0d30117b4486be10c59d3", size = 823160 }, + { url = "https://files.pythonhosted.org/packages/fb/13/e3b075031a738c9598c51cfbc4c7879e26729c53aa9cca59211c44235314/regex-2024.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b7fa6606c2881c1db9479b0eaa11ed5dfa11c8d60a474ff0e095099f39d98e", size = 796896 }, + { url = "https://files.pythonhosted.org/packages/24/56/0b3f1b66d592be6efec23a795b37732682520b47c53da5a32c33ed7d84e3/regex-2024.11.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c32f75920cf99fe6b6c539c399a4a128452eaf1af27f39bce8909c9a3fd8cbe", size = 783997 }, + { url = "https://files.pythonhosted.org/packages/f9/a1/eb378dada8b91c0e4c5f08ffb56f25fcae47bf52ad18f9b2f33b83e6d498/regex-2024.11.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:982e6d21414e78e1f51cf595d7f321dcd14de1f2881c5dc6a6e23bbbbd68435e", size = 781725 }, + { url = "https://files.pythonhosted.org/packages/83/f2/033e7dec0cfd6dda93390089864732a3409246ffe8b042e9554afa9bff4e/regex-2024.11.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a7c2155f790e2fb448faed6dd241386719802296ec588a8b9051c1f5c481bc29", size = 789481 }, + { url = "https://files.pythonhosted.org/packages/83/23/15d4552ea28990a74e7696780c438aadd73a20318c47e527b47a4a5a596d/regex-2024.11.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:149f5008d286636e48cd0b1dd65018548944e495b0265b45e1bffecce1ef7f39", size = 852896 }, + { url = "https://files.pythonhosted.org/packages/e3/39/ed4416bc90deedbfdada2568b2cb0bc1fdb98efe11f5378d9892b2a88f8f/regex-2024.11.6-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e5364a4502efca094731680e80009632ad6624084aff9a23ce8c8c6820de3e51", size = 860138 }, + { url = "https://files.pythonhosted.org/packages/93/2d/dd56bb76bd8e95bbce684326302f287455b56242a4f9c61f1bc76e28360e/regex-2024.11.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0a86e7eeca091c09e021db8eb72d54751e527fa47b8d5787caf96d9831bd02ad", size = 787692 }, + { url = "https://files.pythonhosted.org/packages/0b/55/31877a249ab7a5156758246b9c59539abbeba22461b7d8adc9e8475ff73e/regex-2024.11.6-cp312-cp312-win32.whl", hash = "sha256:32f9a4c643baad4efa81d549c2aadefaeba12249b2adc5af541759237eee1c54", size = 262135 }, + { url = "https://files.pythonhosted.org/packages/38/ec/ad2d7de49a600cdb8dd78434a1aeffe28b9d6fc42eb36afab4a27ad23384/regex-2024.11.6-cp312-cp312-win_amd64.whl", hash = "sha256:a93c194e2df18f7d264092dc8539b8ffb86b45b899ab976aa15d48214138e81b", size = 273567 }, + { url = "https://files.pythonhosted.org/packages/90/73/bcb0e36614601016552fa9344544a3a2ae1809dc1401b100eab02e772e1f/regex-2024.11.6-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a6ba92c0bcdf96cbf43a12c717eae4bc98325ca3730f6b130ffa2e3c3c723d84", size = 483525 }, + { url = "https://files.pythonhosted.org/packages/0f/3f/f1a082a46b31e25291d830b369b6b0c5576a6f7fb89d3053a354c24b8a83/regex-2024.11.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:525eab0b789891ac3be914d36893bdf972d483fe66551f79d3e27146191a37d4", size = 288324 }, + { url = "https://files.pythonhosted.org/packages/09/c9/4e68181a4a652fb3ef5099e077faf4fd2a694ea6e0f806a7737aff9e758a/regex-2024.11.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:086a27a0b4ca227941700e0b31425e7a28ef1ae8e5e05a33826e17e47fbfdba0", size = 284617 }, + { url = "https://files.pythonhosted.org/packages/fc/fd/37868b75eaf63843165f1d2122ca6cb94bfc0271e4428cf58c0616786dce/regex-2024.11.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bde01f35767c4a7899b7eb6e823b125a64de314a8ee9791367c9a34d56af18d0", size = 795023 }, + { url = "https://files.pythonhosted.org/packages/c4/7c/d4cd9c528502a3dedb5c13c146e7a7a539a3853dc20209c8e75d9ba9d1b2/regex-2024.11.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b583904576650166b3d920d2bcce13971f6f9e9a396c673187f49811b2769dc7", size = 833072 }, + { url = "https://files.pythonhosted.org/packages/4f/db/46f563a08f969159c5a0f0e722260568425363bea43bb7ae370becb66a67/regex-2024.11.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c4de13f06a0d54fa0d5ab1b7138bfa0d883220965a29616e3ea61b35d5f5fc7", size = 823130 }, + { url = "https://files.pythonhosted.org/packages/db/60/1eeca2074f5b87df394fccaa432ae3fc06c9c9bfa97c5051aed70e6e00c2/regex-2024.11.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cde6e9f2580eb1665965ce9bf17ff4952f34f5b126beb509fee8f4e994f143c", size = 796857 }, + { url = "https://files.pythonhosted.org/packages/10/db/ac718a08fcee981554d2f7bb8402f1faa7e868c1345c16ab1ebec54b0d7b/regex-2024.11.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0d7f453dca13f40a02b79636a339c5b62b670141e63efd511d3f8f73fba162b3", size = 784006 }, + { url = "https://files.pythonhosted.org/packages/c2/41/7da3fe70216cea93144bf12da2b87367590bcf07db97604edeea55dac9ad/regex-2024.11.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:59dfe1ed21aea057a65c6b586afd2a945de04fc7db3de0a6e3ed5397ad491b07", size = 781650 }, + { url = "https://files.pythonhosted.org/packages/a7/d5/880921ee4eec393a4752e6ab9f0fe28009435417c3102fc413f3fe81c4e5/regex-2024.11.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b97c1e0bd37c5cd7902e65f410779d39eeda155800b65fc4d04cc432efa9bc6e", size = 789545 }, + { url = "https://files.pythonhosted.org/packages/dc/96/53770115e507081122beca8899ab7f5ae28ae790bfcc82b5e38976df6a77/regex-2024.11.6-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f9d1e379028e0fc2ae3654bac3cbbef81bf3fd571272a42d56c24007979bafb6", size = 853045 }, + { url = "https://files.pythonhosted.org/packages/31/d3/1372add5251cc2d44b451bd94f43b2ec78e15a6e82bff6a290ef9fd8f00a/regex-2024.11.6-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:13291b39131e2d002a7940fb176e120bec5145f3aeb7621be6534e46251912c4", size = 860182 }, + { url = "https://files.pythonhosted.org/packages/ed/e3/c446a64984ea9f69982ba1a69d4658d5014bc7a0ea468a07e1a1265db6e2/regex-2024.11.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f51f88c126370dcec4908576c5a627220da6c09d0bff31cfa89f2523843316d", size = 787733 }, + { url = "https://files.pythonhosted.org/packages/2b/f1/e40c8373e3480e4f29f2692bd21b3e05f296d3afebc7e5dcf21b9756ca1c/regex-2024.11.6-cp313-cp313-win32.whl", hash = "sha256:63b13cfd72e9601125027202cad74995ab26921d8cd935c25f09c630436348ff", size = 262122 }, + { url = "https://files.pythonhosted.org/packages/45/94/bc295babb3062a731f52621cdc992d123111282e291abaf23faa413443ea/regex-2024.11.6-cp313-cp313-win_amd64.whl", hash = "sha256:2b3361af3198667e99927da8b84c1b010752fa4b1115ee30beaa332cabc3ef1a", size = 273545 }, + { url = "https://files.pythonhosted.org/packages/89/23/c4a86df398e57e26f93b13ae63acce58771e04bdde86092502496fa57f9c/regex-2024.11.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5704e174f8ccab2026bd2f1ab6c510345ae8eac818b613d7d73e785f1310f839", size = 482682 }, + { url = "https://files.pythonhosted.org/packages/3c/8b/45c24ab7a51a1658441b961b86209c43e6bb9d39caf1e63f46ce6ea03bc7/regex-2024.11.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:220902c3c5cc6af55d4fe19ead504de80eb91f786dc102fbd74894b1551f095e", size = 287679 }, + { url = "https://files.pythonhosted.org/packages/7a/d1/598de10b17fdafc452d11f7dada11c3be4e379a8671393e4e3da3c4070df/regex-2024.11.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e7e351589da0850c125f1600a4c4ba3c722efefe16b297de54300f08d734fbf", size = 284578 }, + { url = "https://files.pythonhosted.org/packages/49/70/c7eaa219efa67a215846766fde18d92d54cb590b6a04ffe43cef30057622/regex-2024.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5056b185ca113c88e18223183aa1a50e66507769c9640a6ff75859619d73957b", size = 782012 }, + { url = "https://files.pythonhosted.org/packages/89/e5/ef52c7eb117dd20ff1697968219971d052138965a4d3d9b95e92e549f505/regex-2024.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e34b51b650b23ed3354b5a07aab37034d9f923db2a40519139af34f485f77d0", size = 820580 }, + { url = "https://files.pythonhosted.org/packages/5f/3f/9f5da81aff1d4167ac52711acf789df13e789fe6ac9545552e49138e3282/regex-2024.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5670bce7b200273eee1840ef307bfa07cda90b38ae56e9a6ebcc9f50da9c469b", size = 809110 }, + { url = "https://files.pythonhosted.org/packages/86/44/2101cc0890c3621b90365c9ee8d7291a597c0722ad66eccd6ffa7f1bcc09/regex-2024.11.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08986dce1339bc932923e7d1232ce9881499a0e02925f7402fb7c982515419ef", size = 780919 }, + { url = "https://files.pythonhosted.org/packages/ce/2e/3e0668d8d1c7c3c0d397bf54d92fc182575b3a26939aed5000d3cc78760f/regex-2024.11.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:93c0b12d3d3bc25af4ebbf38f9ee780a487e8bf6954c115b9f015822d3bb8e48", size = 771515 }, + { url = "https://files.pythonhosted.org/packages/a6/49/1bc4584254355e3dba930a3a2fd7ad26ccba3ebbab7d9100db0aff2eedb0/regex-2024.11.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:764e71f22ab3b305e7f4c21f1a97e1526a25ebdd22513e251cf376760213da13", size = 696957 }, + { url = "https://files.pythonhosted.org/packages/c8/dd/42879c1fc8a37a887cd08e358af3d3ba9e23038cd77c7fe044a86d9450ba/regex-2024.11.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f056bf21105c2515c32372bbc057f43eb02aae2fda61052e2f7622c801f0b4e2", size = 768088 }, + { url = "https://files.pythonhosted.org/packages/89/96/c05a0fe173cd2acd29d5e13c1adad8b706bcaa71b169e1ee57dcf2e74584/regex-2024.11.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:69ab78f848845569401469da20df3e081e6b5a11cb086de3eed1d48f5ed57c95", size = 774752 }, + { url = "https://files.pythonhosted.org/packages/b5/f3/a757748066255f97f14506483436c5f6aded7af9e37bca04ec30c90ca683/regex-2024.11.6-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:86fddba590aad9208e2fa8b43b4c098bb0ec74f15718bb6a704e3c63e2cef3e9", size = 838862 }, + { url = "https://files.pythonhosted.org/packages/5c/93/c6d2092fd479dcaeea40fc8fa673822829181ded77d294a7f950f1dda6e2/regex-2024.11.6-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:684d7a212682996d21ca12ef3c17353c021fe9de6049e19ac8481ec35574a70f", size = 842622 }, + { url = "https://files.pythonhosted.org/packages/ff/9c/daa99532c72f25051a90ef90e1413a8d54413a9e64614d9095b0c1c154d0/regex-2024.11.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a03e02f48cd1abbd9f3b7e3586d97c8f7a9721c436f51a5245b3b9483044480b", size = 772713 }, + { url = "https://files.pythonhosted.org/packages/13/5d/61a533ccb8c231b474ac8e3a7d70155b00dfc61af6cafdccd1947df6d735/regex-2024.11.6-cp39-cp39-win32.whl", hash = "sha256:41758407fc32d5c3c5de163888068cfee69cb4c2be844e7ac517a52770f9af57", size = 261756 }, + { url = "https://files.pythonhosted.org/packages/dc/7b/e59b7f7c91ae110d154370c24133f947262525b5d6406df65f23422acc17/regex-2024.11.6-cp39-cp39-win_amd64.whl", hash = "sha256:b2837718570f95dd41675328e111345f9b7095d821bac435aac173ac80b19983", size = 274110 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "rich" +version = "13.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098", size = 223149 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90", size = 242424 }, +] + +[[package]] +name = "ruff" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5d/f9/0b32e5d1c6f957df49398cd882a011e9488fcbca0d6acfeeea50ccd37a4d/ruff-0.6.3.tar.gz", hash = "sha256:183b99e9edd1ef63be34a3b51fee0a9f4ab95add123dbf89a71f7b1f0c991983", size = 2463514 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/68/1da6a1e39a03a229ea57c511691d6225072759cc7764206c3f0989521194/ruff-0.6.3-py3-none-linux_armv6l.whl", hash = "sha256:97f58fda4e309382ad30ede7f30e2791d70dd29ea17f41970119f55bdb7a45c3", size = 9696928 }, + { url = "https://files.pythonhosted.org/packages/6e/59/3b8b1d3a4271c6eb6ceecd3cef19a6d881639a0f18ad651563d6f619aaae/ruff-0.6.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3b061e49b5cf3a297b4d1c27ac5587954ccb4ff601160d3d6b2f70b1622194dc", size = 9448462 }, + { url = "https://files.pythonhosted.org/packages/35/4f/b942ecb8bbebe53aa9b33e9b96df88acd50b70adaaed3070f1d92131a1cb/ruff-0.6.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:34e2824a13bb8c668c71c1760a6ac7d795ccbd8d38ff4a0d8471fdb15de910b1", size = 9176190 }, + { url = "https://files.pythonhosted.org/packages/a0/20/b0bcb29d4ee437f3567b73b6905c034e2e94d29b9b826c66daecc1cf6388/ruff-0.6.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bddfbb8d63c460f4b4128b6a506e7052bad4d6f3ff607ebbb41b0aa19c2770d1", size = 10108892 }, + { url = "https://files.pythonhosted.org/packages/9c/e3/211bc759f424e8823a9937e0f678695ca02113c621dfde1fa756f9f26f6d/ruff-0.6.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ced3eeb44df75353e08ab3b6a9e113b5f3f996bea48d4f7c027bc528ba87b672", size = 9476471 }, + { url = "https://files.pythonhosted.org/packages/b2/a3/2ec35a2d7a554364864206f0e46812b92a074ad8a014b923d821ead532aa/ruff-0.6.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47021dff5445d549be954eb275156dfd7c37222acc1e8014311badcb9b4ec8c1", size = 10294802 }, + { url = "https://files.pythonhosted.org/packages/03/8b/56ef687b3489c88886dea48c78fb4969b6b65f18007d0ac450070edd1f58/ruff-0.6.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:7d7bd20dc07cebd68cc8bc7b3f5ada6d637f42d947c85264f94b0d1cd9d87384", size = 11022372 }, + { url = "https://files.pythonhosted.org/packages/a5/21/327d147feb442adb88975e81e2263102789eba9ad2afa102c661912a482f/ruff-0.6.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:500f166d03fc6d0e61c8e40a3ff853fa8a43d938f5d14c183c612df1b0d6c58a", size = 10596596 }, + { url = "https://files.pythonhosted.org/packages/6c/86/ff386de63729da3e08c8099c57f577a00ec9f3eea711b23ac07cf3588dc5/ruff-0.6.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42844ff678f9b976366b262fa2d1d1a3fe76f6e145bd92c84e27d172e3c34500", size = 11572830 }, + { url = "https://files.pythonhosted.org/packages/38/5d/b33284c108e3f315ddd09b70296fd76bd28ecf8965a520bc93f3bbd8ac40/ruff-0.6.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70452a10eb2d66549de8e75f89ae82462159855e983ddff91bc0bce6511d0470", size = 10262577 }, + { url = "https://files.pythonhosted.org/packages/29/99/9cdfad0d7f460e66567236eddc691473791afd9aff93a0dfcdef0462a6c7/ruff-0.6.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:65a533235ed55f767d1fc62193a21cbf9e3329cf26d427b800fdeacfb77d296f", size = 10098751 }, + { url = "https://files.pythonhosted.org/packages/a8/9f/f801a1619f5549e552f1f722f1db57eb39e7e1d83d482133142781d450de/ruff-0.6.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d2e2c23cef30dc3cbe9cc5d04f2899e7f5e478c40d2e0a633513ad081f7361b5", size = 9563859 }, + { url = "https://files.pythonhosted.org/packages/0b/4d/fb2424faf04ffdb960ae2b3a1d991c5183dd981003de727d2d5cc38abc98/ruff-0.6.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d8a136aa7d228975a6aee3dd8bea9b28e2b43e9444aa678fb62aeb1956ff2351", size = 9914291 }, + { url = "https://files.pythonhosted.org/packages/2e/dd/94fddf002a8f6152e8ebfbb51d3f93febc415c1fe694345623c31ce8b33b/ruff-0.6.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:f92fe93bc72e262b7b3f2bba9879897e2d58a989b4714ba6a5a7273e842ad2f8", size = 10331549 }, + { url = "https://files.pythonhosted.org/packages/b4/73/ca9c2f9237a430ca423b6dca83b77e9a428afeb7aec80596e86c369123fe/ruff-0.6.3-py3-none-win32.whl", hash = "sha256:7a62d3b5b0d7f9143d94893f8ba43aa5a5c51a0ffc4a401aa97a81ed76930521", size = 7962163 }, + { url = "https://files.pythonhosted.org/packages/55/ce/061c605b1dfb52748d59bc0c7a8507546c178801156415773d18febfd71d/ruff-0.6.3-py3-none-win_amd64.whl", hash = "sha256:746af39356fee2b89aada06c7376e1aa274a23493d7016059c3a72e3b296befb", size = 8800901 }, + { url = "https://files.pythonhosted.org/packages/63/28/ae4ffe7d3b6134ca6d31ebef07447ef70097c4a9e8fbbc519b374c5c1559/ruff-0.6.3-py3-none-win_arm64.whl", hash = "sha256:14a9528a8b70ccc7a847637c29e56fd1f9183a9db743bbc5b8e0c4ad60592a82", size = 8229171 }, +] + +[[package]] +name = "secretstorage" +version = "3.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "jeepney" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", size = 19739 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", size = 15221 }, +] + +[[package]] +name = "setuptools" +version = "75.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/db/722a42ffdc226e950c4757b3da7b56ff5c090bb265dccd707f7b8a3c6fee/setuptools-75.5.0.tar.gz", hash = "sha256:5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef", size = 1336032 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/df/88ccbee85aefbca071db004fdc8f8d2507d55d5a9dc27ebb93c92edb1bd8/setuptools-75.5.0-py3-none-any.whl", hash = "sha256:87cb777c3b96d638ca02031192d40390e0ad97737e27b6b4fa831bea86f2f829", size = 1222710 }, +] + +[[package]] +name = "shellingham" +version = "1.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "tomli" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/e4/1b6cbcc82d8832dd0ce34767d5c560df8a3547ad8cbc427f34601415930a/tomli-2.1.0.tar.gz", hash = "sha256:3f646cae2aec94e17d04973e4249548320197cfabdf130015d023de4b74d8ab8", size = 16622 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/f7/4da0ffe1892122c9ea096c57f64c2753ae5dd3ce85488802d11b0992cc6d/tomli-2.1.0-py3-none-any.whl", hash = "sha256:a5c57c3d1c56f5ccdf89f6523458f60ef716e210fc47c4cfb188c5ba473e0391", size = 13750 }, +] + +[[package]] +name = "tomli-w" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/19/b65f1a088ee23e37cdea415b357843eca8b1422a7b11a9eee6e35d4ec273/tomli_w-1.1.0.tar.gz", hash = "sha256:49e847a3a304d516a169a601184932ef0f6b61623fe680f836a2aa7128ed0d33", size = 6929 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/ac/ce90573ba446a9bbe65838ded066a805234d159b4446ae9f8ec5bbd36cbd/tomli_w-1.1.0-py3-none-any.whl", hash = "sha256:1403179c78193e3184bfaade390ddbd071cba48a32a2e62ba11aae47490c63f7", size = 6440 }, +] + +[[package]] +name = "tomlkit" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b1/09/a439bec5888f00a54b8b9f05fa94d7f901d6735ef4e55dcec9bc37b5d8fa/tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79", size = 192885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde", size = 37955 }, +] + +[[package]] +name = "tox" +version = "4.18.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools" }, + { name = "chardet" }, + { name = "colorama" }, + { name = "filelock" }, + { name = "packaging" }, + { name = "platformdirs" }, + { name = "pluggy" }, + { name = "pyproject-api" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/d6/e3713386deb7df92ef383693544eccb18260ce4325fabcf5aac6594c1d95/tox-4.18.0.tar.gz", hash = "sha256:5dfa1cab9f146becd6e351333a82f9e0ade374451630ba65ee54584624c27b58", size = 180782 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/40/37c670a35bea970cb4e8c19a756ec75a3362b792041003aa075a29123ccc/tox-4.18.0-py3-none-any.whl", hash = "sha256:0a457400cf70615dc0627eb70d293e80cd95d8ce174bb40ac011011f0c03a249", size = 156735 }, +] + +[[package]] +name = "trove-classifiers" +version = "2024.10.21.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/99/85/92c2667cf221b37648041ce9319427f92fa76cbec634aad844e67e284706/trove_classifiers-2024.10.21.16.tar.gz", hash = "sha256:17cbd055d67d5e9d9de63293a8732943fabc21574e4c7b74edf112b4928cf5f3", size = 16153 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/35/5055ab8d215af853d07bbff1a74edf48f91ed308f037380a5ca52dd73348/trove_classifiers-2024.10.21.16-py3-none-any.whl", hash = "sha256:0fb11f1e995a757807a8ef1c03829fbd4998d817319abcef1f33165750f103be", size = 13546 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "urllib3" +version = "2.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", size = 300677 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", size = 126338 }, +] + +[[package]] +name = "userpath" +version = "1.9.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/b7/30753098208505d7ff9be5b3a32112fb8a4cb3ddfccbbb7ba9973f2e29ff/userpath-1.9.2.tar.gz", hash = "sha256:6c52288dab069257cc831846d15d48133522455d4677ee69a9781f11dbefd815", size = 11140 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/99/3ec6335ded5b88c2f7ed25c56ffd952546f7ed007ffb1e1539dc3b57015a/userpath-1.9.2-py3-none-any.whl", hash = "sha256:2cbf01a23d655a1ff8fc166dfb78da1b641d1ceabf0fe5f970767d380b14e89d", size = 9065 }, +] + +[[package]] +name = "uv" +version = "0.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/0b/666a0dbf6a9f24f4b289ce0afcd594ee917e25fad43b7c3ad114d723c379/uv-0.5.3.tar.gz", hash = "sha256:867f9651225a55aec882c40b2a7a905cd4d3521c74a0675c11a7bdaf753b0400", size = 2310780 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/22/7728042fc9352fc96a59cf3d6e053558cec3124150c35e4a9e927359ce3c/uv-0.5.3-py3-none-linux_armv6l.whl", hash = "sha256:fb261c706d7e9899b0f739237cd05386721a93c1f4376085d4a8e86339e8cb22", size = 13895559 }, + { url = "https://files.pythonhosted.org/packages/b0/f3/5f5d9f426d1bc63b35cf87dc6e8e6d17a289c17b510b719c894a445f32de/uv-0.5.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:837c9e303c23697508a6ab125d451bcea8bd2d0dbdf13d12e6860b481c46bbfd", size = 13984257 }, + { url = "https://files.pythonhosted.org/packages/38/60/a730f1c06c85947be662fbefcf42cd32311e5da4fd2f4d9f5af9156262e5/uv-0.5.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:2e900108b7744dba514ba19931edad3bfdfb7d6f76a654bc2eff544da6f20207", size = 12961113 }, + { url = "https://files.pythonhosted.org/packages/16/ec/d6609456af8935515d36dbc31dd4339363e6895b0ed21628b382d2c0826d/uv-0.5.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:5caa1cd194925e5c215459c26081ab304c47292d52902faf7a34d94c6e153c03", size = 13205530 }, + { url = "https://files.pythonhosted.org/packages/ca/d1/a93b503cc09cc1abdab783de2f95c22e733e936c30d22e0d78ac68eba577/uv-0.5.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:319ea98006bdeecbc26d7bb59ce8821828eed266bceef86fd2c46c64d9adafd9", size = 13665289 }, + { url = "https://files.pythonhosted.org/packages/2f/93/964c24e9670fb760e77d538eb25fd2e710e0ba238a1ab9b19aa4ef2241ff/uv-0.5.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0cb6583bba8904732879eefba09b19183d456073cb2c86a98d48bfe2e4a02dd9", size = 14213068 }, + { url = "https://files.pythonhosted.org/packages/dd/f7/e9a9ab8afe8be6df7f5df1b7bc296c73f4d536fb09599740a147ba6f1316/uv-0.5.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:991c04f9351705ee322caa7e776d37ef215f74458f68c292811a25eb3ed18e07", size = 14769044 }, + { url = "https://files.pythonhosted.org/packages/d9/76/ecbdf6d41a008470da02142b20c44731bfadbc6a1f6cd7487a53608e2d38/uv-0.5.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53da2848e6b5f33ed1a834aee73020a728fe7363334f0cd53c00d1800dd5f2ed", size = 14656942 }, + { url = "https://files.pythonhosted.org/packages/b6/21/af3d0cc170d91910cb92506c1c026e5b9586f1117e03d3e846aa19e7b302/uv-0.5.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4b37792524ce9864bbc0090110727a219473c971e3b4673b14c1817e0bbb3465", size = 18922681 }, + { url = "https://files.pythonhosted.org/packages/1d/b0/84f31a0e8f30ae700a0cc24c08bd5f6c5c09eb38bd35c11680b7daee72ec/uv-0.5.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fcab6875bf937d6e203dd424c0140af461175b4aa71faddc87d6e5ce61adcc5a", size = 14476768 }, + { url = "https://files.pythonhosted.org/packages/49/ed/bcbdf1df8ac61fdff5cc65cf84cb937a81cef5fff9d40994aade3937797a/uv-0.5.3-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:415c26372814404105b810ae29e3a8eccd2d4b17f9fdeaf570f24b7ee4e22417", size = 13406015 }, + { url = "https://files.pythonhosted.org/packages/f3/18/a37b638d14822f589b0bd6540eb41514ef2c2434054b197f79179b5284aa/uv-0.5.3-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:bfee241db07e4663c8f37d70e63a7ce411e7de567f3c87f929174d01d23e752c", size = 13648440 }, + { url = "https://files.pythonhosted.org/packages/08/76/f2def33c376f822b0437938bd67062b20ad67a5a182cb64ba62b7ea47462/uv-0.5.3-py3-none-musllinux_1_1_i686.whl", hash = "sha256:d8b3cd685faa9eb8aa74dac56b5aae8184fef1c127f113539703d1cc8e27d1b8", size = 13961166 }, + { url = "https://files.pythonhosted.org/packages/ee/c0/408c586fe6141d2d1a7562026fdb8811d021ae1e3097511212e83f872ea4/uv-0.5.3-py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:80f079ca405ee4ecc814f4591b92e869887c70d6a6a3120e9216462c98924f65", size = 15700907 }, + { url = "https://files.pythonhosted.org/packages/01/bb/39c1d3d2716e1734df19309ffd3891a21b0acad5adba10f3c49af61839db/uv-0.5.3-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:1be17854ee881b454f5eb6a6b501f0431c7c00870ff9375dc08af7c655dd36a3", size = 14601456 }, + { url = "https://files.pythonhosted.org/packages/d6/97/4cc7d9c090cd01d88f7da53fb56f4c615209d4e394877358e875203c5baf/uv-0.5.3-py3-none-win32.whl", hash = "sha256:37eaeb2535a362b55be3e6eb6cfca8df7cb94786c99a150c77e0a7b218f54159", size = 13773101 }, + { url = "https://files.pythonhosted.org/packages/40/7d/c59af092458a0d530817d7d7eef28aee4830981335d2b8f756e67e3e5714/uv-0.5.3-py3-none-win_amd64.whl", hash = "sha256:df2ef8f276324ef9445a26384c86f799493f26974733e6a727c4e05a8b35860f", size = 15622032 }, +] + +[[package]] +name = "virtualenv" +version = "20.27.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "distlib" }, + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/b3/7b6a79c5c8cf6d90ea681310e169cf2db2884f4d583d16c6e1d5a75a4e04/virtualenv-20.27.1.tar.gz", hash = "sha256:142c6be10212543b32c6c45d3d3893dff89112cc588b7d0879ae5a1ec03a47ba", size = 6491145 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/92/78324ff89391e00c8f4cf6b8526c41c6ef36b4ea2d2c132250b1a6fc2b8d/virtualenv-20.27.1-py3-none-any.whl", hash = "sha256:f11f1b8a29525562925f745563bfd48b189450f61fb34c4f9cc79dd5aa32a1f4", size = 3117838 }, +] + +[[package]] +name = "watchdog" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/56/90994d789c61df619bfc5ce2ecdabd5eeff564e1eb47512bd01b5e019569/watchdog-6.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1cdb490583ebd691c012b3d6dae011000fe42edb7a82ece80965b42abd61f26", size = 96390 }, + { url = "https://files.pythonhosted.org/packages/55/46/9a67ee697342ddf3c6daa97e3a587a56d6c4052f881ed926a849fcf7371c/watchdog-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc64ab3bdb6a04d69d4023b29422170b74681784ffb9463ed4870cf2f3e66112", size = 88389 }, + { url = "https://files.pythonhosted.org/packages/44/65/91b0985747c52064d8701e1075eb96f8c40a79df889e59a399453adfb882/watchdog-6.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c897ac1b55c5a1461e16dae288d22bb2e412ba9807df8397a635d88f671d36c3", size = 89020 }, + { url = "https://files.pythonhosted.org/packages/e0/24/d9be5cd6642a6aa68352ded4b4b10fb0d7889cb7f45814fb92cecd35f101/watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c", size = 96393 }, + { url = "https://files.pythonhosted.org/packages/63/7a/6013b0d8dbc56adca7fdd4f0beed381c59f6752341b12fa0886fa7afc78b/watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2", size = 88392 }, + { url = "https://files.pythonhosted.org/packages/d1/40/b75381494851556de56281e053700e46bff5b37bf4c7267e858640af5a7f/watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c", size = 89019 }, + { url = "https://files.pythonhosted.org/packages/39/ea/3930d07dafc9e286ed356a679aa02d777c06e9bfd1164fa7c19c288a5483/watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948", size = 96471 }, + { url = "https://files.pythonhosted.org/packages/12/87/48361531f70b1f87928b045df868a9fd4e253d9ae087fa4cf3f7113be363/watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860", size = 88449 }, + { url = "https://files.pythonhosted.org/packages/5b/7e/8f322f5e600812e6f9a31b75d242631068ca8f4ef0582dd3ae6e72daecc8/watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0", size = 89054 }, + { url = "https://files.pythonhosted.org/packages/68/98/b0345cabdce2041a01293ba483333582891a3bd5769b08eceb0d406056ef/watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c", size = 96480 }, + { url = "https://files.pythonhosted.org/packages/85/83/cdf13902c626b28eedef7ec4f10745c52aad8a8fe7eb04ed7b1f111ca20e/watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134", size = 88451 }, + { url = "https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b", size = 89057 }, + { url = "https://files.pythonhosted.org/packages/05/52/7223011bb760fce8ddc53416beb65b83a3ea6d7d13738dde75eeb2c89679/watchdog-6.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e6f0e77c9417e7cd62af82529b10563db3423625c5fce018430b249bf977f9e8", size = 96390 }, + { url = "https://files.pythonhosted.org/packages/9c/62/d2b21bc4e706d3a9d467561f487c2938cbd881c69f3808c43ac1ec242391/watchdog-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:90c8e78f3b94014f7aaae121e6b909674df5b46ec24d6bebc45c44c56729af2a", size = 88386 }, + { url = "https://files.pythonhosted.org/packages/ea/22/1c90b20eda9f4132e4603a26296108728a8bfe9584b006bd05dd94548853/watchdog-6.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e7631a77ffb1f7d2eefa4445ebbee491c720a5661ddf6df3498ebecae5ed375c", size = 89017 }, + { url = "https://files.pythonhosted.org/packages/30/ad/d17b5d42e28a8b91f8ed01cb949da092827afb9995d4559fd448d0472763/watchdog-6.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c7ac31a19f4545dd92fc25d200694098f42c9a8e391bc00bdd362c5736dbf881", size = 87902 }, + { url = "https://files.pythonhosted.org/packages/5c/ca/c3649991d140ff6ab67bfc85ab42b165ead119c9e12211e08089d763ece5/watchdog-6.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9513f27a1a582d9808cf21a07dae516f0fab1cf2d7683a742c498b93eedabb11", size = 88380 }, + { url = "https://files.pythonhosted.org/packages/5b/79/69f2b0e8d3f2afd462029031baafb1b75d11bb62703f0e1022b2e54d49ee/watchdog-6.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7a0e56874cfbc4b9b05c60c8a1926fedf56324bb08cfbc188969777940aef3aa", size = 87903 }, + { url = "https://files.pythonhosted.org/packages/e2/2b/dc048dd71c2e5f0f7ebc04dd7912981ec45793a03c0dc462438e0591ba5d/watchdog-6.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e6439e374fc012255b4ec786ae3c4bc838cd7309a540e5fe0952d03687d8804e", size = 88381 }, + { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079 }, + { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078 }, + { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076 }, + { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077 }, + { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078 }, + { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077 }, + { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078 }, + { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065 }, + { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070 }, + { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067 }, +] + +[[package]] +name = "zipp" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 }, +] + +[[package]] +name = "zstandard" +version = "0.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation == 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/f6/2ac0287b442160a89d726b17a9184a4c615bb5237db763791a7fd16d9df1/zstandard-0.23.0.tar.gz", hash = "sha256:b2d8c62d08e7255f68f7a740bae85b3c9b8e5466baa9cbf7f57f1cde0ac6bc09", size = 681701 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/55/bd0487e86679db1823fc9ee0d8c9c78ae2413d34c0b461193b5f4c31d22f/zstandard-0.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bf0a05b6059c0528477fba9054d09179beb63744355cab9f38059548fedd46a9", size = 788701 }, + { url = "https://files.pythonhosted.org/packages/e1/8a/ccb516b684f3ad987dfee27570d635822e3038645b1a950c5e8022df1145/zstandard-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fc9ca1c9718cb3b06634c7c8dec57d24e9438b2aa9a0f02b8bb36bf478538880", size = 633678 }, + { url = "https://files.pythonhosted.org/packages/12/89/75e633d0611c028e0d9af6df199423bf43f54bea5007e6718ab7132e234c/zstandard-0.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77da4c6bfa20dd5ea25cbf12c76f181a8e8cd7ea231c673828d0386b1740b8dc", size = 4941098 }, + { url = "https://files.pythonhosted.org/packages/4a/7a/bd7f6a21802de358b63f1ee636ab823711c25ce043a3e9f043b4fcb5ba32/zstandard-0.23.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2170c7e0367dde86a2647ed5b6f57394ea7f53545746104c6b09fc1f4223573", size = 5308798 }, + { url = "https://files.pythonhosted.org/packages/79/3b/775f851a4a65013e88ca559c8ae42ac1352db6fcd96b028d0df4d7d1d7b4/zstandard-0.23.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c16842b846a8d2a145223f520b7e18b57c8f476924bda92aeee3a88d11cfc391", size = 5341840 }, + { url = "https://files.pythonhosted.org/packages/09/4f/0cc49570141dd72d4d95dd6fcf09328d1b702c47a6ec12fbed3b8aed18a5/zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:157e89ceb4054029a289fb504c98c6a9fe8010f1680de0201b3eb5dc20aa6d9e", size = 5440337 }, + { url = "https://files.pythonhosted.org/packages/e7/7c/aaa7cd27148bae2dc095191529c0570d16058c54c4597a7d118de4b21676/zstandard-0.23.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:203d236f4c94cd8379d1ea61db2fce20730b4c38d7f1c34506a31b34edc87bdd", size = 4861182 }, + { url = "https://files.pythonhosted.org/packages/ac/eb/4b58b5c071d177f7dc027129d20bd2a44161faca6592a67f8fcb0b88b3ae/zstandard-0.23.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:dc5d1a49d3f8262be192589a4b72f0d03b72dcf46c51ad5852a4fdc67be7b9e4", size = 4932936 }, + { url = "https://files.pythonhosted.org/packages/44/f9/21a5fb9bb7c9a274b05ad700a82ad22ce82f7ef0f485980a1e98ed6e8c5f/zstandard-0.23.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:752bf8a74412b9892f4e5b58f2f890a039f57037f52c89a740757ebd807f33ea", size = 5464705 }, + { url = "https://files.pythonhosted.org/packages/49/74/b7b3e61db3f88632776b78b1db597af3f44c91ce17d533e14a25ce6a2816/zstandard-0.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80080816b4f52a9d886e67f1f96912891074903238fe54f2de8b786f86baded2", size = 4857882 }, + { url = "https://files.pythonhosted.org/packages/4a/7f/d8eb1cb123d8e4c541d4465167080bec88481ab54cd0b31eb4013ba04b95/zstandard-0.23.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:84433dddea68571a6d6bd4fbf8ff398236031149116a7fff6f777ff95cad3df9", size = 4697672 }, + { url = "https://files.pythonhosted.org/packages/5e/05/f7dccdf3d121309b60342da454d3e706453a31073e2c4dac8e1581861e44/zstandard-0.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ab19a2d91963ed9e42b4e8d77cd847ae8381576585bad79dbd0a8837a9f6620a", size = 5206043 }, + { url = "https://files.pythonhosted.org/packages/86/9d/3677a02e172dccd8dd3a941307621c0cbd7691d77cb435ac3c75ab6a3105/zstandard-0.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:59556bf80a7094d0cfb9f5e50bb2db27fefb75d5138bb16fb052b61b0e0eeeb0", size = 5667390 }, + { url = "https://files.pythonhosted.org/packages/41/7e/0012a02458e74a7ba122cd9cafe491facc602c9a17f590367da369929498/zstandard-0.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:27d3ef2252d2e62476389ca8f9b0cf2bbafb082a3b6bfe9d90cbcbb5529ecf7c", size = 5198901 }, + { url = "https://files.pythonhosted.org/packages/65/3a/8f715b97bd7bcfc7342d8adcd99a026cb2fb550e44866a3b6c348e1b0f02/zstandard-0.23.0-cp310-cp310-win32.whl", hash = "sha256:5d41d5e025f1e0bccae4928981e71b2334c60f580bdc8345f824e7c0a4c2a813", size = 430596 }, + { url = "https://files.pythonhosted.org/packages/19/b7/b2b9eca5e5a01111e4fe8a8ffb56bdcdf56b12448a24effe6cfe4a252034/zstandard-0.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:519fbf169dfac1222a76ba8861ef4ac7f0530c35dd79ba5727014613f91613d4", size = 495498 }, + { url = "https://files.pythonhosted.org/packages/9e/40/f67e7d2c25a0e2dc1744dd781110b0b60306657f8696cafb7ad7579469bd/zstandard-0.23.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:34895a41273ad33347b2fc70e1bff4240556de3c46c6ea430a7ed91f9042aa4e", size = 788699 }, + { url = "https://files.pythonhosted.org/packages/e8/46/66d5b55f4d737dd6ab75851b224abf0afe5774976fe511a54d2eb9063a41/zstandard-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:77ea385f7dd5b5676d7fd943292ffa18fbf5c72ba98f7d09fc1fb9e819b34c23", size = 633681 }, + { url = "https://files.pythonhosted.org/packages/63/b6/677e65c095d8e12b66b8f862b069bcf1f1d781b9c9c6f12eb55000d57583/zstandard-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:983b6efd649723474f29ed42e1467f90a35a74793437d0bc64a5bf482bedfa0a", size = 4944328 }, + { url = "https://files.pythonhosted.org/packages/59/cc/e76acb4c42afa05a9d20827116d1f9287e9c32b7ad58cc3af0721ce2b481/zstandard-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80a539906390591dd39ebb8d773771dc4db82ace6372c4d41e2d293f8e32b8db", size = 5311955 }, + { url = "https://files.pythonhosted.org/packages/78/e4/644b8075f18fc7f632130c32e8f36f6dc1b93065bf2dd87f03223b187f26/zstandard-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:445e4cb5048b04e90ce96a79b4b63140e3f4ab5f662321975679b5f6360b90e2", size = 5344944 }, + { url = "https://files.pythonhosted.org/packages/76/3f/dbafccf19cfeca25bbabf6f2dd81796b7218f768ec400f043edc767015a6/zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd30d9c67d13d891f2360b2a120186729c111238ac63b43dbd37a5a40670b8ca", size = 5442927 }, + { url = "https://files.pythonhosted.org/packages/0c/c3/d24a01a19b6733b9f218e94d1a87c477d523237e07f94899e1c10f6fd06c/zstandard-0.23.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d20fd853fbb5807c8e84c136c278827b6167ded66c72ec6f9a14b863d809211c", size = 4864910 }, + { url = "https://files.pythonhosted.org/packages/1c/a9/cf8f78ead4597264f7618d0875be01f9bc23c9d1d11afb6d225b867cb423/zstandard-0.23.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed1708dbf4d2e3a1c5c69110ba2b4eb6678262028afd6c6fbcc5a8dac9cda68e", size = 4935544 }, + { url = "https://files.pythonhosted.org/packages/2c/96/8af1e3731b67965fb995a940c04a2c20997a7b3b14826b9d1301cf160879/zstandard-0.23.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:be9b5b8659dff1f913039c2feee1aca499cfbc19e98fa12bc85e037c17ec6ca5", size = 5467094 }, + { url = "https://files.pythonhosted.org/packages/ff/57/43ea9df642c636cb79f88a13ab07d92d88d3bfe3e550b55a25a07a26d878/zstandard-0.23.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:65308f4b4890aa12d9b6ad9f2844b7ee42c7f7a4fd3390425b242ffc57498f48", size = 4860440 }, + { url = "https://files.pythonhosted.org/packages/46/37/edb78f33c7f44f806525f27baa300341918fd4c4af9472fbc2c3094be2e8/zstandard-0.23.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98da17ce9cbf3bfe4617e836d561e433f871129e3a7ac16d6ef4c680f13a839c", size = 4700091 }, + { url = "https://files.pythonhosted.org/packages/c1/f1/454ac3962671a754f3cb49242472df5c2cced4eb959ae203a377b45b1a3c/zstandard-0.23.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:8ed7d27cb56b3e058d3cf684d7200703bcae623e1dcc06ed1e18ecda39fee003", size = 5208682 }, + { url = "https://files.pythonhosted.org/packages/85/b2/1734b0fff1634390b1b887202d557d2dd542de84a4c155c258cf75da4773/zstandard-0.23.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:b69bb4f51daf461b15e7b3db033160937d3ff88303a7bc808c67bbc1eaf98c78", size = 5669707 }, + { url = "https://files.pythonhosted.org/packages/52/5a/87d6971f0997c4b9b09c495bf92189fb63de86a83cadc4977dc19735f652/zstandard-0.23.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:034b88913ecc1b097f528e42b539453fa82c3557e414b3de9d5632c80439a473", size = 5201792 }, + { url = "https://files.pythonhosted.org/packages/79/02/6f6a42cc84459d399bd1a4e1adfc78d4dfe45e56d05b072008d10040e13b/zstandard-0.23.0-cp311-cp311-win32.whl", hash = "sha256:f2d4380bf5f62daabd7b751ea2339c1a21d1c9463f1feb7fc2bdcea2c29c3160", size = 430586 }, + { url = "https://files.pythonhosted.org/packages/be/a2/4272175d47c623ff78196f3c10e9dc7045c1b9caf3735bf041e65271eca4/zstandard-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:62136da96a973bd2557f06ddd4e8e807f9e13cbb0bfb9cc06cfe6d98ea90dfe0", size = 495420 }, + { url = "https://files.pythonhosted.org/packages/7b/83/f23338c963bd9de687d47bf32efe9fd30164e722ba27fb59df33e6b1719b/zstandard-0.23.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b4567955a6bc1b20e9c31612e615af6b53733491aeaa19a6b3b37f3b65477094", size = 788713 }, + { url = "https://files.pythonhosted.org/packages/5b/b3/1a028f6750fd9227ee0b937a278a434ab7f7fdc3066c3173f64366fe2466/zstandard-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e172f57cd78c20f13a3415cc8dfe24bf388614324d25539146594c16d78fcc8", size = 633459 }, + { url = "https://files.pythonhosted.org/packages/26/af/36d89aae0c1f95a0a98e50711bc5d92c144939efc1f81a2fcd3e78d7f4c1/zstandard-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0e166f698c5a3e914947388c162be2583e0c638a4703fc6a543e23a88dea3c1", size = 4945707 }, + { url = "https://files.pythonhosted.org/packages/cd/2e/2051f5c772f4dfc0aae3741d5fc72c3dcfe3aaeb461cc231668a4db1ce14/zstandard-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12a289832e520c6bd4dcaad68e944b86da3bad0d339ef7989fb7e88f92e96072", size = 5306545 }, + { url = "https://files.pythonhosted.org/packages/0a/9e/a11c97b087f89cab030fa71206963090d2fecd8eb83e67bb8f3ffb84c024/zstandard-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d50d31bfedd53a928fed6707b15a8dbeef011bb6366297cc435accc888b27c20", size = 5337533 }, + { url = "https://files.pythonhosted.org/packages/fc/79/edeb217c57fe1bf16d890aa91a1c2c96b28c07b46afed54a5dcf310c3f6f/zstandard-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72c68dda124a1a138340fb62fa21b9bf4848437d9ca60bd35db36f2d3345f373", size = 5436510 }, + { url = "https://files.pythonhosted.org/packages/81/4f/c21383d97cb7a422ddf1ae824b53ce4b51063d0eeb2afa757eb40804a8ef/zstandard-0.23.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53dd9d5e3d29f95acd5de6802e909ada8d8d8cfa37a3ac64836f3bc4bc5512db", size = 4859973 }, + { url = "https://files.pythonhosted.org/packages/ab/15/08d22e87753304405ccac8be2493a495f529edd81d39a0870621462276ef/zstandard-0.23.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6a41c120c3dbc0d81a8e8adc73312d668cd34acd7725f036992b1b72d22c1772", size = 4936968 }, + { url = "https://files.pythonhosted.org/packages/eb/fa/f3670a597949fe7dcf38119a39f7da49a8a84a6f0b1a2e46b2f71a0ab83f/zstandard-0.23.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:40b33d93c6eddf02d2c19f5773196068d875c41ca25730e8288e9b672897c105", size = 5467179 }, + { url = "https://files.pythonhosted.org/packages/4e/a9/dad2ab22020211e380adc477a1dbf9f109b1f8d94c614944843e20dc2a99/zstandard-0.23.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9206649ec587e6b02bd124fb7799b86cddec350f6f6c14bc82a2b70183e708ba", size = 4848577 }, + { url = "https://files.pythonhosted.org/packages/08/03/dd28b4484b0770f1e23478413e01bee476ae8227bbc81561f9c329e12564/zstandard-0.23.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76e79bc28a65f467e0409098fa2c4376931fd3207fbeb6b956c7c476d53746dd", size = 4693899 }, + { url = "https://files.pythonhosted.org/packages/2b/64/3da7497eb635d025841e958bcd66a86117ae320c3b14b0ae86e9e8627518/zstandard-0.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:66b689c107857eceabf2cf3d3fc699c3c0fe8ccd18df2219d978c0283e4c508a", size = 5199964 }, + { url = "https://files.pythonhosted.org/packages/43/a4/d82decbab158a0e8a6ebb7fc98bc4d903266bce85b6e9aaedea1d288338c/zstandard-0.23.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9c236e635582742fee16603042553d276cca506e824fa2e6489db04039521e90", size = 5655398 }, + { url = "https://files.pythonhosted.org/packages/f2/61/ac78a1263bc83a5cf29e7458b77a568eda5a8f81980691bbc6eb6a0d45cc/zstandard-0.23.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8fffdbd9d1408006baaf02f1068d7dd1f016c6bcb7538682622c556e7b68e35", size = 5191313 }, + { url = "https://files.pythonhosted.org/packages/e7/54/967c478314e16af5baf849b6ee9d6ea724ae5b100eb506011f045d3d4e16/zstandard-0.23.0-cp312-cp312-win32.whl", hash = "sha256:dc1d33abb8a0d754ea4763bad944fd965d3d95b5baef6b121c0c9013eaf1907d", size = 430877 }, + { url = "https://files.pythonhosted.org/packages/75/37/872d74bd7739639c4553bf94c84af7d54d8211b626b352bc57f0fd8d1e3f/zstandard-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:64585e1dba664dc67c7cdabd56c1e5685233fbb1fc1966cfba2a340ec0dfff7b", size = 495595 }, + { url = "https://files.pythonhosted.org/packages/80/f1/8386f3f7c10261fe85fbc2c012fdb3d4db793b921c9abcc995d8da1b7a80/zstandard-0.23.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:576856e8594e6649aee06ddbfc738fec6a834f7c85bf7cadd1c53d4a58186ef9", size = 788975 }, + { url = "https://files.pythonhosted.org/packages/16/e8/cbf01077550b3e5dc86089035ff8f6fbbb312bc0983757c2d1117ebba242/zstandard-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38302b78a850ff82656beaddeb0bb989a0322a8bbb1bf1ab10c17506681d772a", size = 633448 }, + { url = "https://files.pythonhosted.org/packages/06/27/4a1b4c267c29a464a161aeb2589aff212b4db653a1d96bffe3598f3f0d22/zstandard-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2240ddc86b74966c34554c49d00eaafa8200a18d3a5b6ffbf7da63b11d74ee2", size = 4945269 }, + { url = "https://files.pythonhosted.org/packages/7c/64/d99261cc57afd9ae65b707e38045ed8269fbdae73544fd2e4a4d50d0ed83/zstandard-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ef230a8fd217a2015bc91b74f6b3b7d6522ba48be29ad4ea0ca3a3775bf7dd5", size = 5306228 }, + { url = "https://files.pythonhosted.org/packages/7a/cf/27b74c6f22541f0263016a0fd6369b1b7818941de639215c84e4e94b2a1c/zstandard-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:774d45b1fac1461f48698a9d4b5fa19a69d47ece02fa469825b442263f04021f", size = 5336891 }, + { url = "https://files.pythonhosted.org/packages/fa/18/89ac62eac46b69948bf35fcd90d37103f38722968e2981f752d69081ec4d/zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f77fa49079891a4aab203d0b1744acc85577ed16d767b52fc089d83faf8d8ed", size = 5436310 }, + { url = "https://files.pythonhosted.org/packages/a8/a8/5ca5328ee568a873f5118d5b5f70d1f36c6387716efe2e369010289a5738/zstandard-0.23.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac184f87ff521f4840e6ea0b10c0ec90c6b1dcd0bad2f1e4a9a1b4fa177982ea", size = 4859912 }, + { url = "https://files.pythonhosted.org/packages/ea/ca/3781059c95fd0868658b1cf0440edd832b942f84ae60685d0cfdb808bca1/zstandard-0.23.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c363b53e257246a954ebc7c488304b5592b9c53fbe74d03bc1c64dda153fb847", size = 4936946 }, + { url = "https://files.pythonhosted.org/packages/ce/11/41a58986f809532742c2b832c53b74ba0e0a5dae7e8ab4642bf5876f35de/zstandard-0.23.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e7792606d606c8df5277c32ccb58f29b9b8603bf83b48639b7aedf6df4fe8171", size = 5466994 }, + { url = "https://files.pythonhosted.org/packages/83/e3/97d84fe95edd38d7053af05159465d298c8b20cebe9ccb3d26783faa9094/zstandard-0.23.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a0817825b900fcd43ac5d05b8b3079937073d2b1ff9cf89427590718b70dd840", size = 4848681 }, + { url = "https://files.pythonhosted.org/packages/6e/99/cb1e63e931de15c88af26085e3f2d9af9ce53ccafac73b6e48418fd5a6e6/zstandard-0.23.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9da6bc32faac9a293ddfdcb9108d4b20416219461e4ec64dfea8383cac186690", size = 4694239 }, + { url = "https://files.pythonhosted.org/packages/ab/50/b1e703016eebbc6501fc92f34db7b1c68e54e567ef39e6e59cf5fb6f2ec0/zstandard-0.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fd7699e8fd9969f455ef2926221e0233f81a2542921471382e77a9e2f2b57f4b", size = 5200149 }, + { url = "https://files.pythonhosted.org/packages/aa/e0/932388630aaba70197c78bdb10cce2c91fae01a7e553b76ce85471aec690/zstandard-0.23.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d477ed829077cd945b01fc3115edd132c47e6540ddcd96ca169facff28173057", size = 5655392 }, + { url = "https://files.pythonhosted.org/packages/02/90/2633473864f67a15526324b007a9f96c96f56d5f32ef2a56cc12f9548723/zstandard-0.23.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa6ce8b52c5987b3e34d5674b0ab529a4602b632ebab0a93b07bfb4dfc8f8a33", size = 5191299 }, + { url = "https://files.pythonhosted.org/packages/b0/4c/315ca5c32da7e2dc3455f3b2caee5c8c2246074a61aac6ec3378a97b7136/zstandard-0.23.0-cp313-cp313-win32.whl", hash = "sha256:a9b07268d0c3ca5c170a385a0ab9fb7fdd9f5fd866be004c4ea39e44edce47dd", size = 430862 }, + { url = "https://files.pythonhosted.org/packages/a2/bf/c6aaba098e2d04781e8f4f7c0ba3c7aa73d00e4c436bcc0cf059a66691d1/zstandard-0.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:f3513916e8c645d0610815c257cbfd3242adfd5c4cfa78be514e5a3ebb42a41b", size = 495578 }, + { url = "https://files.pythonhosted.org/packages/fb/96/4fcafeb7e013a2386d22f974b5b97a0b9a65004ed58c87ae001599bfbd48/zstandard-0.23.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3aa014d55c3af933c1315eb4bb06dd0459661cc0b15cd61077afa6489bec63bb", size = 788697 }, + { url = "https://files.pythonhosted.org/packages/83/ff/a52ce725be69b86a2967ecba0497a8184540cc284c0991125515449e54e2/zstandard-0.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7f0804bb3799414af278e9ad51be25edf67f78f916e08afdb983e74161b916", size = 633679 }, + { url = "https://files.pythonhosted.org/packages/34/0f/3dc62db122f6a9c481c335fff6fc9f4e88d8f6e2d47321ee3937328addb4/zstandard-0.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb2b1ecfef1e67897d336de3a0e3f52478182d6a47eda86cbd42504c5cbd009a", size = 4940416 }, + { url = "https://files.pythonhosted.org/packages/1d/e5/9fe0dd8c85fdc2f635e6660d07872a5dc4b366db566630161e39f9f804e1/zstandard-0.23.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:837bb6764be6919963ef41235fd56a6486b132ea64afe5fafb4cb279ac44f259", size = 5307693 }, + { url = "https://files.pythonhosted.org/packages/73/bf/fe62c0cd865c171ee8ed5bc83174b5382a2cb729c8d6162edfb99a83158b/zstandard-0.23.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1516c8c37d3a053b01c1c15b182f3b5f5eef19ced9b930b684a73bad121addf4", size = 5341236 }, + { url = "https://files.pythonhosted.org/packages/39/86/4fe79b30c794286110802a6cd44a73b6a314ac8196b9338c0fbd78c2407d/zstandard-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48ef6a43b1846f6025dde6ed9fee0c24e1149c1c25f7fb0a0585572b2f3adc58", size = 5439101 }, + { url = "https://files.pythonhosted.org/packages/72/ed/cacec235c581ebf8c608c7fb3d4b6b70d1b490d0e5128ea6996f809ecaef/zstandard-0.23.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11e3bf3c924853a2d5835b24f03eeba7fc9b07d8ca499e247e06ff5676461a15", size = 4860320 }, + { url = "https://files.pythonhosted.org/packages/f6/1e/2c589a2930f93946b132fc852c574a19d5edc23fad2b9e566f431050c7ec/zstandard-0.23.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2fb4535137de7e244c230e24f9d1ec194f61721c86ebea04e1581d9d06ea1269", size = 4931933 }, + { url = "https://files.pythonhosted.org/packages/8e/f5/30eadde3686d902b5d4692bb5f286977cbc4adc082145eb3f49d834b2eae/zstandard-0.23.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8c24f21fa2af4bb9f2c492a86fe0c34e6d2c63812a839590edaf177b7398f700", size = 5463878 }, + { url = "https://files.pythonhosted.org/packages/e0/c8/8aed1f0ab9854ef48e5ad4431367fcb23ce73f0304f7b72335a8edc66556/zstandard-0.23.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a8c86881813a78a6f4508ef9daf9d4995b8ac2d147dcb1a450448941398091c9", size = 4857192 }, + { url = "https://files.pythonhosted.org/packages/a8/c6/55e666cfbcd032b9e271865e8578fec56e5594d4faeac379d371526514f5/zstandard-0.23.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe3b385d996ee0822fd46528d9f0443b880d4d05528fd26a9119a54ec3f91c69", size = 4696513 }, + { url = "https://files.pythonhosted.org/packages/dc/bd/720b65bea63ec9de0ac7414c33b9baf271c8de8996e5ff324dc93fc90ff1/zstandard-0.23.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:82d17e94d735c99621bf8ebf9995f870a6b3e6d14543b99e201ae046dfe7de70", size = 5204823 }, + { url = "https://files.pythonhosted.org/packages/d8/40/d678db1556e3941d330cd4e95623a63ef235b18547da98fa184cbc028ecf/zstandard-0.23.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:c7c517d74bea1a6afd39aa612fa025e6b8011982a0897768a2f7c8ab4ebb78a2", size = 5666490 }, + { url = "https://files.pythonhosted.org/packages/ed/cc/c89329723d7515898a1fc7ef5d251264078548c505719d13e9511800a103/zstandard-0.23.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fd7e0f1cfb70eb2f95a19b472ee7ad6d9a0a992ec0ae53286870c104ca939e5", size = 5196622 }, + { url = "https://files.pythonhosted.org/packages/78/4c/634289d41e094327a94500dfc919e58841b10ea3a9efdfafbac614797ec2/zstandard-0.23.0-cp39-cp39-win32.whl", hash = "sha256:43da0f0092281bf501f9c5f6f3b4c975a8a0ea82de49ba3f7100e64d422a1274", size = 430620 }, + { url = "https://files.pythonhosted.org/packages/a2/e2/0b0c5a0f4f7699fecd92c1ba6278ef9b01f2b0b0dd46f62bfc6729c05659/zstandard-0.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:f8346bfa098532bc1fb6c7ef06783e969d87a99dd1d2a5a18a892c1d7a643c58", size = 495528 }, +]