diff --git a/.github/workflows/flathub.yml b/.github/workflows/flathub.yml new file mode 100644 index 00000000..e492b2f6 --- /dev/null +++ b/.github/workflows/flathub.yml @@ -0,0 +1,138 @@ +name: Update Flathub + +# Opens (or updates) a pull request on the Flathub packaging repo +# (flathub/io.github.tabularisdb.Tabularis) on every published release. +# +# Prerequisites: +# - The Flathub repo must already exist (created by Flathub after the +# initial submission is accepted — see docs/flatpak-publish-guide.md). +# - A FLATHUB_TOKEN secret with write access to that repo (a fine-grained +# PAT or a deploy/PAT able to push branches and open PRs). + +on: + release: + types: [published] + workflow_dispatch: + inputs: + version: + description: 'Release version (without v prefix, e.g. 0.13.1)' + required: true + +env: + APP_ID: io.github.tabularisdb.Tabularis + FLATHUB_REPO: flathub/io.github.tabularisdb.Tabularis + +jobs: + flathub-pr: + # Skip prereleases (same convention as snap.yml / aur.yml) + if: ${{ github.event_name == 'workflow_dispatch' || !github.event.release.prerelease }} + runs-on: ubuntu-latest + steps: + - name: Resolve version + ref + id: version + run: | + if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then + VERSION="${{ github.event.inputs.version }}" + else + VERSION="${GITHUB_REF_NAME#v}" + fi + echo "version=${VERSION}" >> "$GITHUB_OUTPUT" + echo "tag=v${VERSION}" >> "$GITHUB_OUTPUT" + + - name: Checkout tabularis at the release tag + uses: actions/checkout@v6 + with: + ref: ${{ steps.version.outputs.tag }} + fetch-depth: 0 + + - name: Resolve commit SHA for the tag + id: commit + run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" + + - name: Setup pnpm + uses: pnpm/action-setup@v5 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version-file: .node-version + + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + + - name: Regenerate vendored Flatpak sources + run: bash flatpak/generate-sources.sh + + - name: Resolve pnpm tarball checksum + id: pnpm + run: | + PNPM_VER="$(node -p "require('./package.json').packageManager.split('@')[1]")" + curl -fsSL "https://registry.npmjs.org/pnpm/-/pnpm-${PNPM_VER}.tgz" -o /tmp/pnpm.tgz + echo "version=${PNPM_VER}" >> "$GITHUB_OUTPUT" + echo "sha256=$(sha256sum /tmp/pnpm.tgz | cut -d' ' -f1)" >> "$GITHUB_OUTPUT" + + - name: Render manifest with pinned tag + commit + run: | + set -euo pipefail + M="flatpak/${APP_ID}.yml" + # Pin git tag + commit + sed -i "s|tag: vVERSION|tag: ${{ steps.version.outputs.tag }}|" "$M" + sed -i "s|commit: COMMIT|commit: ${{ steps.commit.outputs.sha }}|" "$M" + # Keep the pnpm source in sync with package.json's packageManager + sed -i -E "s|pnpm-[0-9.]+\.tgz|pnpm-${{ steps.pnpm.outputs.version }}.tgz|" "$M" + sed -i -E "s|sha256: [a-f0-9]{64}$|sha256: ${{ steps.pnpm.outputs.sha256 }}|" "$M" + echo "----- rendered manifest -----" + cat "$M" + + - name: Update metainfo + run: | + set -euo pipefail + M="flatpak/${APP_ID}.metainfo.xml" + VERSION="${{ steps.version.outputs.version }}" + DATE="$(date -u +%Y-%m-%d)" + if ! grep -q "version=\"${VERSION}\"" "$M"; then + sed -i "s| | \n |" "$M" + fi + + - name: Checkout Flathub packaging repo + uses: actions/checkout@v6 + with: + repository: ${{ env.FLATHUB_REPO }} + token: ${{ secrets.FLATHUB_TOKEN }} + path: flathub-repo + fetch-depth: 0 + + - name: Copy updated packaging files + run: | + set -euo pipefail + cp "flatpak/${APP_ID}.yml" "flathub-repo/${APP_ID}.yml" + cp "flatpak/${APP_ID}.metainfo.xml" "flathub-repo/${APP_ID}.metainfo.xml" + cp "flatpak/${APP_ID}.desktop" "flathub-repo/${APP_ID}.desktop" + cp "flatpak/cargo-sources.json" "flathub-repo/cargo-sources.json" + cp "flatpak/node-sources.json" "flathub-repo/node-sources.json" + + - name: Commit, push branch and open/refresh PR + env: + GH_TOKEN: ${{ secrets.FLATHUB_TOKEN }} + run: | + set -euo pipefail + cd flathub-repo + BRANCH="update-${{ steps.version.outputs.version }}" + git config user.name "tabularis-bot" + git config user.email "andrea@debbaweb.it" + git checkout -B "$BRANCH" + git add -A + if git diff --cached --quiet; then + echo "No changes to submit." + exit 0 + fi + git commit -m "Update to ${{ steps.version.outputs.tag }}" + git push --force origin "$BRANCH" + # Flathub builds PRs against the default branch (master). + if ! gh pr view "$BRANCH" >/dev/null 2>&1; then + gh pr create \ + --title "Update to ${{ steps.version.outputs.tag }}" \ + --body "Automated update to ${{ steps.version.outputs.tag }} from TabularisDB/tabularis." \ + --base master \ + --head "$BRANCH" + fi diff --git a/.gitignore b/.gitignore index 420447e3..858fc5e8 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,11 @@ dist-ssr *.sln *.sw? +# Flatpak build artifacts +flatpak/.flatpak-builder/ +flatpak/build-dir/ +flatpak/*.local-test.yml + #Serena .serena diff --git a/flatpak/cargo-sources.json b/flatpak/cargo-sources.json new file mode 100644 index 00000000..461aca16 --- /dev/null +++ b/flatpak/cargo-sources.json @@ -0,0 +1,10785 @@ +[ + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/adler2/adler2-2.0.1.crate", + "sha256": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa", + "dest": "cargo/vendor/adler2-2.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\", \"files\": {}}", + "dest": "cargo/vendor/adler2-2.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aead/aead-0.5.2.crate", + "sha256": "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0", + "dest": "cargo/vendor/aead-0.5.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\", \"files\": {}}", + "dest": "cargo/vendor/aead-0.5.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aes/aes-0.8.4.crate", + "sha256": "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0", + "dest": "cargo/vendor/aes-0.8.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\", \"files\": {}}", + "dest": "cargo/vendor/aes-0.8.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aes-gcm/aes-gcm-0.10.3.crate", + "sha256": "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1", + "dest": "cargo/vendor/aes-gcm-0.10.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1\", \"files\": {}}", + "dest": "cargo/vendor/aes-gcm-0.10.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ahash/ahash-0.7.8.crate", + "sha256": "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9", + "dest": "cargo/vendor/ahash-0.7.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9\", \"files\": {}}", + "dest": "cargo/vendor/ahash-0.7.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.4.crate", + "sha256": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301", + "dest": "cargo/vendor/aho-corasick-1.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\", \"files\": {}}", + "dest": "cargo/vendor/aho-corasick-1.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/alloc-no-stdlib/alloc-no-stdlib-2.0.4.crate", + "sha256": "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3", + "dest": "cargo/vendor/alloc-no-stdlib-2.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3\", \"files\": {}}", + "dest": "cargo/vendor/alloc-no-stdlib-2.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/alloc-stdlib/alloc-stdlib-0.2.2.crate", + "sha256": "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece", + "dest": "cargo/vendor/alloc-stdlib-0.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece\", \"files\": {}}", + "dest": "cargo/vendor/alloc-stdlib-0.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.21.crate", + "sha256": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923", + "dest": "cargo/vendor/allocator-api2-0.2.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\", \"files\": {}}", + "dest": "cargo/vendor/allocator-api2-0.2.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/android_log-sys/android_log-sys-0.3.2.crate", + "sha256": "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d", + "dest": "cargo/vendor/android_log-sys-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d\", \"files\": {}}", + "dest": "cargo/vendor/android_log-sys-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/android_logger/android_logger-0.15.1.crate", + "sha256": "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3", + "dest": "cargo/vendor/android_logger-0.15.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3\", \"files\": {}}", + "dest": "cargo/vendor/android_logger-0.15.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate", + "sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311", + "dest": "cargo/vendor/android_system_properties-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}", + "dest": "cargo/vendor/android_system_properties-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anstream/anstream-0.6.21.crate", + "sha256": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a", + "dest": "cargo/vendor/anstream-0.6.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a\", \"files\": {}}", + "dest": "cargo/vendor/anstream-0.6.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anstyle/anstyle-1.0.13.crate", + "sha256": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78", + "dest": "cargo/vendor/anstyle-1.0.13" + }, + { + "type": "inline", + "contents": "{\"package\": \"5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78\", \"files\": {}}", + "dest": "cargo/vendor/anstyle-1.0.13", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.7.crate", + "sha256": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2", + "dest": "cargo/vendor/anstyle-parse-0.2.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2\", \"files\": {}}", + "dest": "cargo/vendor/anstyle-parse-0.2.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.1.5.crate", + "sha256": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc", + "dest": "cargo/vendor/anstyle-query-1.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\", \"files\": {}}", + "dest": "cargo/vendor/anstyle-query-1.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.11.crate", + "sha256": "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d", + "dest": "cargo/vendor/anstyle-wincon-3.0.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\", \"files\": {}}", + "dest": "cargo/vendor/anstyle-wincon-3.0.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/anyhow/anyhow-1.0.102.crate", + "sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c", + "dest": "cargo/vendor/anyhow-1.0.102" + }, + { + "type": "inline", + "contents": "{\"package\": \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\", \"files\": {}}", + "dest": "cargo/vendor/anyhow-1.0.102", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/arbitrary/arbitrary-1.4.2.crate", + "sha256": "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1", + "dest": "cargo/vendor/arbitrary-1.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\", \"files\": {}}", + "dest": "cargo/vendor/arbitrary-1.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/arboard/arboard-3.6.1.crate", + "sha256": "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf", + "dest": "cargo/vendor/arboard-3.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf\", \"files\": {}}", + "dest": "cargo/vendor/arboard-3.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/array-init/array-init-2.1.0.crate", + "sha256": "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc", + "dest": "cargo/vendor/array-init-2.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc\", \"files\": {}}", + "dest": "cargo/vendor/array-init-2.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/arrayvec/arrayvec-0.7.6.crate", + "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50", + "dest": "cargo/vendor/arrayvec-0.7.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\", \"files\": {}}", + "dest": "cargo/vendor/arrayvec-0.7.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.7.2.crate", + "sha256": "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532", + "dest": "cargo/vendor/async-broadcast-0.7.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532\", \"files\": {}}", + "dest": "cargo/vendor/async-broadcast-0.7.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-channel/async-channel-2.5.0.crate", + "sha256": "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2", + "dest": "cargo/vendor/async-channel-2.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2\", \"files\": {}}", + "dest": "cargo/vendor/async-channel-2.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-executor/async-executor-1.14.0.crate", + "sha256": "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a", + "dest": "cargo/vendor/async-executor-1.14.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a\", \"files\": {}}", + "dest": "cargo/vendor/async-executor-1.14.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-io/async-io-2.6.0.crate", + "sha256": "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc", + "dest": "cargo/vendor/async-io-2.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc\", \"files\": {}}", + "dest": "cargo/vendor/async-io-2.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-lock/async-lock-3.4.2.crate", + "sha256": "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311", + "dest": "cargo/vendor/async-lock-3.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311\", \"files\": {}}", + "dest": "cargo/vendor/async-lock-3.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-process/async-process-2.5.0.crate", + "sha256": "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75", + "dest": "cargo/vendor/async-process-2.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75\", \"files\": {}}", + "dest": "cargo/vendor/async-process-2.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-recursion/async-recursion-1.1.1.crate", + "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11", + "dest": "cargo/vendor/async-recursion-1.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11\", \"files\": {}}", + "dest": "cargo/vendor/async-recursion-1.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-signal/async-signal-0.2.13.crate", + "sha256": "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c", + "dest": "cargo/vendor/async-signal-0.2.13" + }, + { + "type": "inline", + "contents": "{\"package\": \"43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c\", \"files\": {}}", + "dest": "cargo/vendor/async-signal-0.2.13", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-task/async-task-4.7.1.crate", + "sha256": "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de", + "dest": "cargo/vendor/async-task-4.7.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de\", \"files\": {}}", + "dest": "cargo/vendor/async-task-4.7.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/async-trait/async-trait-0.1.89.crate", + "sha256": "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb", + "dest": "cargo/vendor/async-trait-0.1.89" + }, + { + "type": "inline", + "contents": "{\"package\": \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\", \"files\": {}}", + "dest": "cargo/vendor/async-trait-0.1.89", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/atk/atk-0.18.2.crate", + "sha256": "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b", + "dest": "cargo/vendor/atk-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b\", \"files\": {}}", + "dest": "cargo/vendor/atk-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/atk-sys/atk-sys-0.18.2.crate", + "sha256": "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086", + "dest": "cargo/vendor/atk-sys-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086\", \"files\": {}}", + "dest": "cargo/vendor/atk-sys-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/atoi/atoi-2.0.0.crate", + "sha256": "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528", + "dest": "cargo/vendor/atoi-2.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528\", \"files\": {}}", + "dest": "cargo/vendor/atoi-2.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/atomic-waker/atomic-waker-1.1.2.crate", + "sha256": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0", + "dest": "cargo/vendor/atomic-waker-1.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\", \"files\": {}}", + "dest": "cargo/vendor/atomic-waker-1.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/autocfg/autocfg-1.5.0.crate", + "sha256": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8", + "dest": "cargo/vendor/autocfg-1.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\", \"files\": {}}", + "dest": "cargo/vendor/autocfg-1.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aws-lc-rs/aws-lc-rs-1.16.1.crate", + "sha256": "94bffc006df10ac2a68c83692d734a465f8ee6c5b384d8545a636f81d858f4bf", + "dest": "cargo/vendor/aws-lc-rs-1.16.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"94bffc006df10ac2a68c83692d734a465f8ee6c5b384d8545a636f81d858f4bf\", \"files\": {}}", + "dest": "cargo/vendor/aws-lc-rs-1.16.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/aws-lc-sys/aws-lc-sys-0.38.0.crate", + "sha256": "4321e568ed89bb5a7d291a7f37997c2c0df89809d7b6d12062c81ddb54aa782e", + "dest": "cargo/vendor/aws-lc-sys-0.38.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4321e568ed89bb5a7d291a7f37997c2c0df89809d7b6d12062c81ddb54aa782e\", \"files\": {}}", + "dest": "cargo/vendor/aws-lc-sys-0.38.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/base16ct/base16ct-0.2.0.crate", + "sha256": "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf", + "dest": "cargo/vendor/base16ct-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\", \"files\": {}}", + "dest": "cargo/vendor/base16ct-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/base64/base64-0.21.7.crate", + "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567", + "dest": "cargo/vendor/base64-0.21.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\", \"files\": {}}", + "dest": "cargo/vendor/base64-0.21.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/base64/base64-0.22.1.crate", + "sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6", + "dest": "cargo/vendor/base64-0.22.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\", \"files\": {}}", + "dest": "cargo/vendor/base64-0.22.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/base64ct/base64ct-1.8.3.crate", + "sha256": "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06", + "dest": "cargo/vendor/base64ct-1.8.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06\", \"files\": {}}", + "dest": "cargo/vendor/base64ct-1.8.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bcrypt-pbkdf/bcrypt-pbkdf-0.10.0.crate", + "sha256": "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2", + "dest": "cargo/vendor/bcrypt-pbkdf-0.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2\", \"files\": {}}", + "dest": "cargo/vendor/bcrypt-pbkdf-0.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bit-vec/bit-vec-0.6.3.crate", + "sha256": "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb", + "dest": "cargo/vendor/bit-vec-0.6.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb\", \"files\": {}}", + "dest": "cargo/vendor/bit-vec-0.6.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate", + "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", + "dest": "cargo/vendor/bitflags-1.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}", + "dest": "cargo/vendor/bitflags-1.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bitflags/bitflags-2.11.0.crate", + "sha256": "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af", + "dest": "cargo/vendor/bitflags-2.11.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af\", \"files\": {}}", + "dest": "cargo/vendor/bitflags-2.11.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bitvec/bitvec-1.0.1.crate", + "sha256": "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c", + "dest": "cargo/vendor/bitvec-1.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\", \"files\": {}}", + "dest": "cargo/vendor/bitvec-1.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/block-buffer/block-buffer-0.10.4.crate", + "sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71", + "dest": "cargo/vendor/block-buffer-0.10.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\", \"files\": {}}", + "dest": "cargo/vendor/block-buffer-0.10.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/block-padding/block-padding-0.3.3.crate", + "sha256": "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93", + "dest": "cargo/vendor/block-padding-0.3.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93\", \"files\": {}}", + "dest": "cargo/vendor/block-padding-0.3.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/block2/block2-0.6.2.crate", + "sha256": "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5", + "dest": "cargo/vendor/block2-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5\", \"files\": {}}", + "dest": "cargo/vendor/block2-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/blocking/blocking-1.6.2.crate", + "sha256": "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21", + "dest": "cargo/vendor/blocking-1.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21\", \"files\": {}}", + "dest": "cargo/vendor/blocking-1.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/blowfish/blowfish-0.9.1.crate", + "sha256": "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7", + "dest": "cargo/vendor/blowfish-0.9.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7\", \"files\": {}}", + "dest": "cargo/vendor/blowfish-0.9.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/borsh/borsh-1.6.0.crate", + "sha256": "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f", + "dest": "cargo/vendor/borsh-1.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f\", \"files\": {}}", + "dest": "cargo/vendor/borsh-1.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/borsh-derive/borsh-derive-1.6.0.crate", + "sha256": "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c", + "dest": "cargo/vendor/borsh-derive-1.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c\", \"files\": {}}", + "dest": "cargo/vendor/borsh-derive-1.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/brotli/brotli-8.0.2.crate", + "sha256": "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560", + "dest": "cargo/vendor/brotli-8.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560\", \"files\": {}}", + "dest": "cargo/vendor/brotli-8.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/brotli-decompressor/brotli-decompressor-5.0.0.crate", + "sha256": "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03", + "dest": "cargo/vendor/brotli-decompressor-5.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03\", \"files\": {}}", + "dest": "cargo/vendor/brotli-decompressor-5.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bumpalo/bumpalo-3.20.2.crate", + "sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb", + "dest": "cargo/vendor/bumpalo-3.20.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\", \"files\": {}}", + "dest": "cargo/vendor/bumpalo-3.20.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/byte-unit/byte-unit-5.2.0.crate", + "sha256": "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d", + "dest": "cargo/vendor/byte-unit-5.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d\", \"files\": {}}", + "dest": "cargo/vendor/byte-unit-5.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bytecheck/bytecheck-0.6.12.crate", + "sha256": "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2", + "dest": "cargo/vendor/bytecheck-0.6.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2\", \"files\": {}}", + "dest": "cargo/vendor/bytecheck-0.6.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bytecheck_derive/bytecheck_derive-0.6.12.crate", + "sha256": "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659", + "dest": "cargo/vendor/bytecheck_derive-0.6.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659\", \"files\": {}}", + "dest": "cargo/vendor/bytecheck_derive-0.6.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bytemuck/bytemuck-1.25.0.crate", + "sha256": "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec", + "dest": "cargo/vendor/bytemuck-1.25.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\", \"files\": {}}", + "dest": "cargo/vendor/bytemuck-1.25.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/byteorder/byteorder-1.5.0.crate", + "sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b", + "dest": "cargo/vendor/byteorder-1.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\", \"files\": {}}", + "dest": "cargo/vendor/byteorder-1.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/byteorder-lite/byteorder-lite-0.1.0.crate", + "sha256": "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495", + "dest": "cargo/vendor/byteorder-lite-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495\", \"files\": {}}", + "dest": "cargo/vendor/byteorder-lite-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bytes/bytes-1.11.1.crate", + "sha256": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33", + "dest": "cargo/vendor/bytes-1.11.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\", \"files\": {}}", + "dest": "cargo/vendor/bytes-1.11.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/bzip2/bzip2-0.6.1.crate", + "sha256": "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c", + "dest": "cargo/vendor/bzip2-0.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c\", \"files\": {}}", + "dest": "cargo/vendor/bzip2-0.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.18.5.crate", + "sha256": "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2", + "dest": "cargo/vendor/cairo-rs-0.18.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2\", \"files\": {}}", + "dest": "cargo/vendor/cairo-rs-0.18.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.18.2.crate", + "sha256": "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51", + "dest": "cargo/vendor/cairo-sys-rs-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51\", \"files\": {}}", + "dest": "cargo/vendor/cairo-sys-rs-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/camino/camino-1.2.2.crate", + "sha256": "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48", + "dest": "cargo/vendor/camino-1.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48\", \"files\": {}}", + "dest": "cargo/vendor/camino-1.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cargo-platform/cargo-platform-0.1.9.crate", + "sha256": "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea", + "dest": "cargo/vendor/cargo-platform-0.1.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea\", \"files\": {}}", + "dest": "cargo/vendor/cargo-platform-0.1.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cargo_metadata/cargo_metadata-0.19.2.crate", + "sha256": "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba", + "dest": "cargo/vendor/cargo_metadata-0.19.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba\", \"files\": {}}", + "dest": "cargo/vendor/cargo_metadata-0.19.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cargo_toml/cargo_toml-0.22.3.crate", + "sha256": "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77", + "dest": "cargo/vendor/cargo_toml-0.22.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77\", \"files\": {}}", + "dest": "cargo/vendor/cargo_toml-0.22.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cbc/cbc-0.1.2.crate", + "sha256": "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6", + "dest": "cargo/vendor/cbc-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6\", \"files\": {}}", + "dest": "cargo/vendor/cbc-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cc/cc-1.2.56.crate", + "sha256": "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2", + "dest": "cargo/vendor/cc-1.2.56" + }, + { + "type": "inline", + "contents": "{\"package\": \"aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2\", \"files\": {}}", + "dest": "cargo/vendor/cc-1.2.56", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cesu8/cesu8-1.1.0.crate", + "sha256": "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c", + "dest": "cargo/vendor/cesu8-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\", \"files\": {}}", + "dest": "cargo/vendor/cesu8-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cfb/cfb-0.7.3.crate", + "sha256": "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f", + "dest": "cargo/vendor/cfb-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f\", \"files\": {}}", + "dest": "cargo/vendor/cfb-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.15.8.crate", + "sha256": "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02", + "dest": "cargo/vendor/cfg-expr-0.15.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02\", \"files\": {}}", + "dest": "cargo/vendor/cfg-expr-0.15.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.4.crate", + "sha256": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801", + "dest": "cargo/vendor/cfg-if-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\", \"files\": {}}", + "dest": "cargo/vendor/cfg-if-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cfg_aliases/cfg_aliases-0.2.1.crate", + "sha256": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724", + "dest": "cargo/vendor/cfg_aliases-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\", \"files\": {}}", + "dest": "cargo/vendor/cfg_aliases-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/chacha20/chacha20-0.9.1.crate", + "sha256": "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818", + "dest": "cargo/vendor/chacha20-0.9.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818\", \"files\": {}}", + "dest": "cargo/vendor/chacha20-0.9.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/chrono/chrono-0.4.44.crate", + "sha256": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0", + "dest": "cargo/vendor/chrono-0.4.44" + }, + { + "type": "inline", + "contents": "{\"package\": \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\", \"files\": {}}", + "dest": "cargo/vendor/chrono-0.4.44", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/chrono-tz/chrono-tz-0.10.4.crate", + "sha256": "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3", + "dest": "cargo/vendor/chrono-tz-0.10.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3\", \"files\": {}}", + "dest": "cargo/vendor/chrono-tz-0.10.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cipher/cipher-0.4.4.crate", + "sha256": "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad", + "dest": "cargo/vendor/cipher-0.4.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\", \"files\": {}}", + "dest": "cargo/vendor/cipher-0.4.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/clap/clap-4.5.60.crate", + "sha256": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a", + "dest": "cargo/vendor/clap-4.5.60" + }, + { + "type": "inline", + "contents": "{\"package\": \"2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a\", \"files\": {}}", + "dest": "cargo/vendor/clap-4.5.60", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/clap_builder/clap_builder-4.5.60.crate", + "sha256": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876", + "dest": "cargo/vendor/clap_builder-4.5.60" + }, + { + "type": "inline", + "contents": "{\"package\": \"24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876\", \"files\": {}}", + "dest": "cargo/vendor/clap_builder-4.5.60", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/clap_derive/clap_derive-4.5.55.crate", + "sha256": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5", + "dest": "cargo/vendor/clap_derive-4.5.55" + }, + { + "type": "inline", + "contents": "{\"package\": \"a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5\", \"files\": {}}", + "dest": "cargo/vendor/clap_derive-4.5.55", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/clap_lex/clap_lex-1.0.0.crate", + "sha256": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831", + "dest": "cargo/vendor/clap_lex-1.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831\", \"files\": {}}", + "dest": "cargo/vendor/clap_lex-1.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/clipboard-win/clipboard-win-5.4.1.crate", + "sha256": "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4", + "dest": "cargo/vendor/clipboard-win-5.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4\", \"files\": {}}", + "dest": "cargo/vendor/clipboard-win-5.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cmake/cmake-0.1.57.crate", + "sha256": "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d", + "dest": "cargo/vendor/cmake-0.1.57" + }, + { + "type": "inline", + "contents": "{\"package\": \"75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d\", \"files\": {}}", + "dest": "cargo/vendor/cmake-0.1.57", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.4.crate", + "sha256": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75", + "dest": "cargo/vendor/colorchoice-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75\", \"files\": {}}", + "dest": "cargo/vendor/colorchoice-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/combine/combine-4.6.7.crate", + "sha256": "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd", + "dest": "cargo/vendor/combine-4.6.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\", \"files\": {}}", + "dest": "cargo/vendor/combine-4.6.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.5.0.crate", + "sha256": "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973", + "dest": "cargo/vendor/concurrent-queue-2.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973\", \"files\": {}}", + "dest": "cargo/vendor/concurrent-queue-2.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/const-oid/const-oid-0.9.6.crate", + "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8", + "dest": "cargo/vendor/const-oid-0.9.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\", \"files\": {}}", + "dest": "cargo/vendor/const-oid-0.9.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/constant_time_eq/constant_time_eq-0.3.1.crate", + "sha256": "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6", + "dest": "cargo/vendor/constant_time_eq-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6\", \"files\": {}}", + "dest": "cargo/vendor/constant_time_eq-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/convert_case/convert_case-0.4.0.crate", + "sha256": "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e", + "dest": "cargo/vendor/convert_case-0.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e\", \"files\": {}}", + "dest": "cargo/vendor/convert_case-0.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cookie/cookie-0.18.1.crate", + "sha256": "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747", + "dest": "cargo/vendor/cookie-0.18.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747\", \"files\": {}}", + "dest": "cargo/vendor/cookie-0.18.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/core-foundation/core-foundation-0.9.4.crate", + "sha256": "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f", + "dest": "cargo/vendor/core-foundation-0.9.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\", \"files\": {}}", + "dest": "cargo/vendor/core-foundation-0.9.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/core-foundation/core-foundation-0.10.1.crate", + "sha256": "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6", + "dest": "cargo/vendor/core-foundation-0.10.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\", \"files\": {}}", + "dest": "cargo/vendor/core-foundation-0.10.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/core-foundation-sys/core-foundation-sys-0.8.7.crate", + "sha256": "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b", + "dest": "cargo/vendor/core-foundation-sys-0.8.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\", \"files\": {}}", + "dest": "cargo/vendor/core-foundation-sys-0.8.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/core-graphics/core-graphics-0.24.0.crate", + "sha256": "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1", + "dest": "cargo/vendor/core-graphics-0.24.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1\", \"files\": {}}", + "dest": "cargo/vendor/core-graphics-0.24.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/core-graphics-types/core-graphics-types-0.2.0.crate", + "sha256": "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb", + "dest": "cargo/vendor/core-graphics-types-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb\", \"files\": {}}", + "dest": "cargo/vendor/core-graphics-types-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cpufeatures/cpufeatures-0.2.17.crate", + "sha256": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280", + "dest": "cargo/vendor/cpufeatures-0.2.17" + }, + { + "type": "inline", + "contents": "{\"package\": \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\", \"files\": {}}", + "dest": "cargo/vendor/cpufeatures-0.2.17", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crc/crc-3.4.0.crate", + "sha256": "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d", + "dest": "cargo/vendor/crc-3.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d\", \"files\": {}}", + "dest": "cargo/vendor/crc-3.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crc-catalog/crc-catalog-2.4.0.crate", + "sha256": "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5", + "dest": "cargo/vendor/crc-catalog-2.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5\", \"files\": {}}", + "dest": "cargo/vendor/crc-catalog-2.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crc32fast/crc32fast-1.5.0.crate", + "sha256": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511", + "dest": "cargo/vendor/crc32fast-1.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\", \"files\": {}}", + "dest": "cargo/vendor/crc32fast-1.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crossbeam-channel/crossbeam-channel-0.5.15.crate", + "sha256": "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2", + "dest": "cargo/vendor/crossbeam-channel-0.5.15" + }, + { + "type": "inline", + "contents": "{\"package\": \"82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2\", \"files\": {}}", + "dest": "cargo/vendor/crossbeam-channel-0.5.15", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.8.6.crate", + "sha256": "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51", + "dest": "cargo/vendor/crossbeam-deque-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\", \"files\": {}}", + "dest": "cargo/vendor/crossbeam-deque-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.9.18.crate", + "sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e", + "dest": "cargo/vendor/crossbeam-epoch-0.9.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\", \"files\": {}}", + "dest": "cargo/vendor/crossbeam-epoch-0.9.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crossbeam-queue/crossbeam-queue-0.3.12.crate", + "sha256": "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115", + "dest": "cargo/vendor/crossbeam-queue-0.3.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115\", \"files\": {}}", + "dest": "cargo/vendor/crossbeam-queue-0.3.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.8.21.crate", + "sha256": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28", + "dest": "cargo/vendor/crossbeam-utils-0.8.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\", \"files\": {}}", + "dest": "cargo/vendor/crossbeam-utils-0.8.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crunchy/crunchy-0.2.4.crate", + "sha256": "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5", + "dest": "cargo/vendor/crunchy-0.2.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\", \"files\": {}}", + "dest": "cargo/vendor/crunchy-0.2.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crypto-bigint/crypto-bigint-0.5.5.crate", + "sha256": "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76", + "dest": "cargo/vendor/crypto-bigint-0.5.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\", \"files\": {}}", + "dest": "cargo/vendor/crypto-bigint-0.5.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/crypto-common/crypto-common-0.1.7.crate", + "sha256": "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a", + "dest": "cargo/vendor/crypto-common-0.1.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\", \"files\": {}}", + "dest": "cargo/vendor/crypto-common-0.1.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cssparser/cssparser-0.29.6.crate", + "sha256": "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa", + "dest": "cargo/vendor/cssparser-0.29.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa\", \"files\": {}}", + "dest": "cargo/vendor/cssparser-0.29.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/cssparser-macros/cssparser-macros-0.6.1.crate", + "sha256": "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331", + "dest": "cargo/vendor/cssparser-macros-0.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331\", \"files\": {}}", + "dest": "cargo/vendor/cssparser-macros-0.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/csv/csv-1.4.0.crate", + "sha256": "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938", + "dest": "cargo/vendor/csv-1.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938\", \"files\": {}}", + "dest": "cargo/vendor/csv-1.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/csv-core/csv-core-0.1.13.crate", + "sha256": "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782", + "dest": "cargo/vendor/csv-core-0.1.13" + }, + { + "type": "inline", + "contents": "{\"package\": \"704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782\", \"files\": {}}", + "dest": "cargo/vendor/csv-core-0.1.13", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ctor/ctor-0.2.9.crate", + "sha256": "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501", + "dest": "cargo/vendor/ctor-0.2.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501\", \"files\": {}}", + "dest": "cargo/vendor/ctor-0.2.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ctr/ctr-0.9.2.crate", + "sha256": "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835", + "dest": "cargo/vendor/ctr-0.9.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\", \"files\": {}}", + "dest": "cargo/vendor/ctr-0.9.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/curve25519-dalek/curve25519-dalek-4.1.3.crate", + "sha256": "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be", + "dest": "cargo/vendor/curve25519-dalek-4.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be\", \"files\": {}}", + "dest": "cargo/vendor/curve25519-dalek-4.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/curve25519-dalek-derive/curve25519-dalek-derive-0.1.1.crate", + "sha256": "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3", + "dest": "cargo/vendor/curve25519-dalek-derive-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3\", \"files\": {}}", + "dest": "cargo/vendor/curve25519-dalek-derive-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/darling/darling-0.21.3.crate", + "sha256": "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0", + "dest": "cargo/vendor/darling-0.21.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0\", \"files\": {}}", + "dest": "cargo/vendor/darling-0.21.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/darling_core/darling_core-0.21.3.crate", + "sha256": "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4", + "dest": "cargo/vendor/darling_core-0.21.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4\", \"files\": {}}", + "dest": "cargo/vendor/darling_core-0.21.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/darling_macro/darling_macro-0.21.3.crate", + "sha256": "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81", + "dest": "cargo/vendor/darling_macro-0.21.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81\", \"files\": {}}", + "dest": "cargo/vendor/darling_macro-0.21.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/data-encoding/data-encoding-2.10.0.crate", + "sha256": "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea", + "dest": "cargo/vendor/data-encoding-2.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea\", \"files\": {}}", + "dest": "cargo/vendor/data-encoding-2.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dbus/dbus-0.9.10.crate", + "sha256": "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4", + "dest": "cargo/vendor/dbus-0.9.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4\", \"files\": {}}", + "dest": "cargo/vendor/dbus-0.9.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dbus-secret-service/dbus-secret-service-4.1.0.crate", + "sha256": "708b509edf7889e53d7efb0ffadd994cc6c2345ccb62f55cfd6b0682165e4fa6", + "dest": "cargo/vendor/dbus-secret-service-4.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"708b509edf7889e53d7efb0ffadd994cc6c2345ccb62f55cfd6b0682165e4fa6\", \"files\": {}}", + "dest": "cargo/vendor/dbus-secret-service-4.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/deadpool/deadpool-0.12.3.crate", + "sha256": "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b", + "dest": "cargo/vendor/deadpool-0.12.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b\", \"files\": {}}", + "dest": "cargo/vendor/deadpool-0.12.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/deadpool-postgres/deadpool-postgres-0.14.1.crate", + "sha256": "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9", + "dest": "cargo/vendor/deadpool-postgres-0.14.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9\", \"files\": {}}", + "dest": "cargo/vendor/deadpool-postgres-0.14.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/deadpool-runtime/deadpool-runtime-0.1.4.crate", + "sha256": "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b", + "dest": "cargo/vendor/deadpool-runtime-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b\", \"files\": {}}", + "dest": "cargo/vendor/deadpool-runtime-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/deflate64/deflate64-0.1.11.crate", + "sha256": "807800ff3288b621186fe0a8f3392c4652068257302709c24efd918c3dffcdc2", + "dest": "cargo/vendor/deflate64-0.1.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"807800ff3288b621186fe0a8f3392c4652068257302709c24efd918c3dffcdc2\", \"files\": {}}", + "dest": "cargo/vendor/deflate64-0.1.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/der/der-0.7.10.crate", + "sha256": "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb", + "dest": "cargo/vendor/der-0.7.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb\", \"files\": {}}", + "dest": "cargo/vendor/der-0.7.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/der_derive/der_derive-0.7.3.crate", + "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18", + "dest": "cargo/vendor/der_derive-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18\", \"files\": {}}", + "dest": "cargo/vendor/der_derive-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/deranged/deranged-0.5.8.crate", + "sha256": "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c", + "dest": "cargo/vendor/deranged-0.5.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c\", \"files\": {}}", + "dest": "cargo/vendor/deranged-0.5.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/derive_arbitrary/derive_arbitrary-1.4.2.crate", + "sha256": "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a", + "dest": "cargo/vendor/derive_arbitrary-1.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a\", \"files\": {}}", + "dest": "cargo/vendor/derive_arbitrary-1.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/derive_more/derive_more-0.99.20.crate", + "sha256": "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f", + "dest": "cargo/vendor/derive_more-0.99.20" + }, + { + "type": "inline", + "contents": "{\"package\": \"6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f\", \"files\": {}}", + "dest": "cargo/vendor/derive_more-0.99.20", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/digest/digest-0.10.7.crate", + "sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292", + "dest": "cargo/vendor/digest-0.10.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\", \"files\": {}}", + "dest": "cargo/vendor/digest-0.10.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/directories/directories-6.0.0.crate", + "sha256": "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d", + "dest": "cargo/vendor/directories-6.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d\", \"files\": {}}", + "dest": "cargo/vendor/directories-6.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dirs/dirs-5.0.1.crate", + "sha256": "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225", + "dest": "cargo/vendor/dirs-5.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225\", \"files\": {}}", + "dest": "cargo/vendor/dirs-5.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dirs/dirs-6.0.0.crate", + "sha256": "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e", + "dest": "cargo/vendor/dirs-6.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e\", \"files\": {}}", + "dest": "cargo/vendor/dirs-6.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.4.1.crate", + "sha256": "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c", + "dest": "cargo/vendor/dirs-sys-0.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c\", \"files\": {}}", + "dest": "cargo/vendor/dirs-sys-0.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.5.0.crate", + "sha256": "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab", + "dest": "cargo/vendor/dirs-sys-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab\", \"files\": {}}", + "dest": "cargo/vendor/dirs-sys-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dispatch/dispatch-0.2.0.crate", + "sha256": "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b", + "dest": "cargo/vendor/dispatch-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b\", \"files\": {}}", + "dest": "cargo/vendor/dispatch-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dispatch2/dispatch2-0.3.1.crate", + "sha256": "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38", + "dest": "cargo/vendor/dispatch2-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38\", \"files\": {}}", + "dest": "cargo/vendor/dispatch2-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/displaydoc/displaydoc-0.2.5.crate", + "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0", + "dest": "cargo/vendor/displaydoc-0.2.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\", \"files\": {}}", + "dest": "cargo/vendor/displaydoc-0.2.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dlopen2/dlopen2-0.8.2.crate", + "sha256": "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4", + "dest": "cargo/vendor/dlopen2-0.8.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4\", \"files\": {}}", + "dest": "cargo/vendor/dlopen2-0.8.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dlopen2_derive/dlopen2_derive-0.4.3.crate", + "sha256": "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f", + "dest": "cargo/vendor/dlopen2_derive-0.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f\", \"files\": {}}", + "dest": "cargo/vendor/dlopen2_derive-0.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dotenvy/dotenvy-0.15.7.crate", + "sha256": "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b", + "dest": "cargo/vendor/dotenvy-0.15.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b\", \"files\": {}}", + "dest": "cargo/vendor/dotenvy-0.15.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/downcast-rs/downcast-rs-1.2.1.crate", + "sha256": "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2", + "dest": "cargo/vendor/downcast-rs-1.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2\", \"files\": {}}", + "dest": "cargo/vendor/downcast-rs-1.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dpi/dpi-0.1.2.crate", + "sha256": "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76", + "dest": "cargo/vendor/dpi-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76\", \"files\": {}}", + "dest": "cargo/vendor/dpi-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dtoa/dtoa-1.0.11.crate", + "sha256": "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590", + "dest": "cargo/vendor/dtoa-1.0.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590\", \"files\": {}}", + "dest": "cargo/vendor/dtoa-1.0.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dtoa-short/dtoa-short-0.3.5.crate", + "sha256": "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87", + "dest": "cargo/vendor/dtoa-short-0.3.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87\", \"files\": {}}", + "dest": "cargo/vendor/dtoa-short-0.3.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dunce/dunce-1.0.5.crate", + "sha256": "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813", + "dest": "cargo/vendor/dunce-1.0.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813\", \"files\": {}}", + "dest": "cargo/vendor/dunce-1.0.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/dyn-clone/dyn-clone-1.0.20.crate", + "sha256": "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555", + "dest": "cargo/vendor/dyn-clone-1.0.20" + }, + { + "type": "inline", + "contents": "{\"package\": \"d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555\", \"files\": {}}", + "dest": "cargo/vendor/dyn-clone-1.0.20", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ecdsa/ecdsa-0.16.9.crate", + "sha256": "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca", + "dest": "cargo/vendor/ecdsa-0.16.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\", \"files\": {}}", + "dest": "cargo/vendor/ecdsa-0.16.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ed25519/ed25519-2.2.3.crate", + "sha256": "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53", + "dest": "cargo/vendor/ed25519-2.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53\", \"files\": {}}", + "dest": "cargo/vendor/ed25519-2.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ed25519-dalek/ed25519-dalek-2.2.0.crate", + "sha256": "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9", + "dest": "cargo/vendor/ed25519-dalek-2.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9\", \"files\": {}}", + "dest": "cargo/vendor/ed25519-dalek-2.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/either/either-1.15.0.crate", + "sha256": "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719", + "dest": "cargo/vendor/either-1.15.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719\", \"files\": {}}", + "dest": "cargo/vendor/either-1.15.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/elliptic-curve/elliptic-curve-0.13.8.crate", + "sha256": "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47", + "dest": "cargo/vendor/elliptic-curve-0.13.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47\", \"files\": {}}", + "dest": "cargo/vendor/elliptic-curve-0.13.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/embed-resource/embed-resource-3.0.6.crate", + "sha256": "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e", + "dest": "cargo/vendor/embed-resource-3.0.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e\", \"files\": {}}", + "dest": "cargo/vendor/embed-resource-3.0.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/embed_plist/embed_plist-1.2.2.crate", + "sha256": "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7", + "dest": "cargo/vendor/embed_plist-1.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7\", \"files\": {}}", + "dest": "cargo/vendor/embed_plist-1.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.35.crate", + "sha256": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3", + "dest": "cargo/vendor/encoding_rs-0.8.35" + }, + { + "type": "inline", + "contents": "{\"package\": \"75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3\", \"files\": {}}", + "dest": "cargo/vendor/encoding_rs-0.8.35", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/endi/endi-1.1.1.crate", + "sha256": "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099", + "dest": "cargo/vendor/endi-1.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099\", \"files\": {}}", + "dest": "cargo/vendor/endi-1.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/enumflags2/enumflags2-0.7.12.crate", + "sha256": "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef", + "dest": "cargo/vendor/enumflags2-0.7.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef\", \"files\": {}}", + "dest": "cargo/vendor/enumflags2-0.7.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/enumflags2_derive/enumflags2_derive-0.7.12.crate", + "sha256": "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827", + "dest": "cargo/vendor/enumflags2_derive-0.7.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827\", \"files\": {}}", + "dest": "cargo/vendor/enumflags2_derive-0.7.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/env_filter/env_filter-0.1.4.crate", + "sha256": "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2", + "dest": "cargo/vendor/env_filter-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2\", \"files\": {}}", + "dest": "cargo/vendor/env_filter-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/equivalent/equivalent-1.0.2.crate", + "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f", + "dest": "cargo/vendor/equivalent-1.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\", \"files\": {}}", + "dest": "cargo/vendor/equivalent-1.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/erased-serde/erased-serde-0.4.10.crate", + "sha256": "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec", + "dest": "cargo/vendor/erased-serde-0.4.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec\", \"files\": {}}", + "dest": "cargo/vendor/erased-serde-0.4.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/errno/errno-0.3.14.crate", + "sha256": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb", + "dest": "cargo/vendor/errno-0.3.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb\", \"files\": {}}", + "dest": "cargo/vendor/errno-0.3.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/error-code/error-code-3.3.2.crate", + "sha256": "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59", + "dest": "cargo/vendor/error-code-3.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59\", \"files\": {}}", + "dest": "cargo/vendor/error-code-3.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/etcetera/etcetera-0.8.0.crate", + "sha256": "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943", + "dest": "cargo/vendor/etcetera-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943\", \"files\": {}}", + "dest": "cargo/vendor/etcetera-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/event-listener/event-listener-5.4.1.crate", + "sha256": "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab", + "dest": "cargo/vendor/event-listener-5.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab\", \"files\": {}}", + "dest": "cargo/vendor/event-listener-5.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/event-listener-strategy/event-listener-strategy-0.5.4.crate", + "sha256": "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93", + "dest": "cargo/vendor/event-listener-strategy-0.5.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93\", \"files\": {}}", + "dest": "cargo/vendor/event-listener-strategy-0.5.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fallible-iterator/fallible-iterator-0.2.0.crate", + "sha256": "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7", + "dest": "cargo/vendor/fallible-iterator-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7\", \"files\": {}}", + "dest": "cargo/vendor/fallible-iterator-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fastrand/fastrand-2.3.0.crate", + "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be", + "dest": "cargo/vendor/fastrand-2.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be\", \"files\": {}}", + "dest": "cargo/vendor/fastrand-2.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fax/fax-0.2.6.crate", + "sha256": "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab", + "dest": "cargo/vendor/fax-0.2.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab\", \"files\": {}}", + "dest": "cargo/vendor/fax-0.2.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fax_derive/fax_derive-0.2.0.crate", + "sha256": "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d", + "dest": "cargo/vendor/fax_derive-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d\", \"files\": {}}", + "dest": "cargo/vendor/fax_derive-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fdeflate/fdeflate-0.3.7.crate", + "sha256": "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c", + "dest": "cargo/vendor/fdeflate-0.3.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c\", \"files\": {}}", + "dest": "cargo/vendor/fdeflate-0.3.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fern/fern-0.7.1.crate", + "sha256": "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29", + "dest": "cargo/vendor/fern-0.7.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29\", \"files\": {}}", + "dest": "cargo/vendor/fern-0.7.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ff/ff-0.13.1.crate", + "sha256": "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393", + "dest": "cargo/vendor/ff-0.13.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393\", \"files\": {}}", + "dest": "cargo/vendor/ff-0.13.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fiat-crypto/fiat-crypto-0.2.9.crate", + "sha256": "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d", + "dest": "cargo/vendor/fiat-crypto-0.2.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d\", \"files\": {}}", + "dest": "cargo/vendor/fiat-crypto-0.2.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/field-offset/field-offset-0.3.6.crate", + "sha256": "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f", + "dest": "cargo/vendor/field-offset-0.3.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f\", \"files\": {}}", + "dest": "cargo/vendor/field-offset-0.3.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/filetime/filetime-0.2.27.crate", + "sha256": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db", + "dest": "cargo/vendor/filetime-0.2.27" + }, + { + "type": "inline", + "contents": "{\"package\": \"f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db\", \"files\": {}}", + "dest": "cargo/vendor/filetime-0.2.27", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/find-msvc-tools/find-msvc-tools-0.1.9.crate", + "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582", + "dest": "cargo/vendor/find-msvc-tools-0.1.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\", \"files\": {}}", + "dest": "cargo/vendor/find-msvc-tools-0.1.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fixedbitset/fixedbitset-0.5.7.crate", + "sha256": "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99", + "dest": "cargo/vendor/fixedbitset-0.5.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99\", \"files\": {}}", + "dest": "cargo/vendor/fixedbitset-0.5.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/flagset/flagset-0.4.7.crate", + "sha256": "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe", + "dest": "cargo/vendor/flagset-0.4.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe\", \"files\": {}}", + "dest": "cargo/vendor/flagset-0.4.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/flate2/flate2-1.1.9.crate", + "sha256": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c", + "dest": "cargo/vendor/flate2-1.1.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c\", \"files\": {}}", + "dest": "cargo/vendor/flate2-1.1.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/flume/flume-0.11.1.crate", + "sha256": "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095", + "dest": "cargo/vendor/flume-0.11.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095\", \"files\": {}}", + "dest": "cargo/vendor/flume-0.11.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fnv/fnv-1.0.7.crate", + "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", + "dest": "cargo/vendor/fnv-1.0.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\", \"files\": {}}", + "dest": "cargo/vendor/fnv-1.0.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foldhash/foldhash-0.1.5.crate", + "sha256": "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2", + "dest": "cargo/vendor/foldhash-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\", \"files\": {}}", + "dest": "cargo/vendor/foldhash-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foreign-types/foreign-types-0.3.2.crate", + "sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1", + "dest": "cargo/vendor/foreign-types-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\", \"files\": {}}", + "dest": "cargo/vendor/foreign-types-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foreign-types/foreign-types-0.5.0.crate", + "sha256": "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965", + "dest": "cargo/vendor/foreign-types-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965\", \"files\": {}}", + "dest": "cargo/vendor/foreign-types-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foreign-types-macros/foreign-types-macros-0.2.3.crate", + "sha256": "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742", + "dest": "cargo/vendor/foreign-types-macros-0.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742\", \"files\": {}}", + "dest": "cargo/vendor/foreign-types-macros-0.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foreign-types-shared/foreign-types-shared-0.1.1.crate", + "sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b", + "dest": "cargo/vendor/foreign-types-shared-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\", \"files\": {}}", + "dest": "cargo/vendor/foreign-types-shared-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/foreign-types-shared/foreign-types-shared-0.3.1.crate", + "sha256": "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b", + "dest": "cargo/vendor/foreign-types-shared-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b\", \"files\": {}}", + "dest": "cargo/vendor/foreign-types-shared-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.2.2.crate", + "sha256": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf", + "dest": "cargo/vendor/form_urlencoded-1.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf\", \"files\": {}}", + "dest": "cargo/vendor/form_urlencoded-1.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fs_extra/fs_extra-1.3.0.crate", + "sha256": "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c", + "dest": "cargo/vendor/fs_extra-1.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c\", \"files\": {}}", + "dest": "cargo/vendor/fs_extra-1.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fsevent-sys/fsevent-sys-4.1.0.crate", + "sha256": "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2", + "dest": "cargo/vendor/fsevent-sys-4.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2\", \"files\": {}}", + "dest": "cargo/vendor/fsevent-sys-4.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/funty/funty-2.0.0.crate", + "sha256": "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c", + "dest": "cargo/vendor/funty-2.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\", \"files\": {}}", + "dest": "cargo/vendor/funty-2.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futf/futf-0.1.5.crate", + "sha256": "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843", + "dest": "cargo/vendor/futf-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843\", \"files\": {}}", + "dest": "cargo/vendor/futf-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures/futures-0.3.32.crate", + "sha256": "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d", + "dest": "cargo/vendor/futures-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d\", \"files\": {}}", + "dest": "cargo/vendor/futures-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-channel/futures-channel-0.3.32.crate", + "sha256": "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d", + "dest": "cargo/vendor/futures-channel-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d\", \"files\": {}}", + "dest": "cargo/vendor/futures-channel-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-core/futures-core-0.3.32.crate", + "sha256": "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d", + "dest": "cargo/vendor/futures-core-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d\", \"files\": {}}", + "dest": "cargo/vendor/futures-core-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-executor/futures-executor-0.3.32.crate", + "sha256": "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d", + "dest": "cargo/vendor/futures-executor-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d\", \"files\": {}}", + "dest": "cargo/vendor/futures-executor-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-intrusive/futures-intrusive-0.5.0.crate", + "sha256": "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f", + "dest": "cargo/vendor/futures-intrusive-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f\", \"files\": {}}", + "dest": "cargo/vendor/futures-intrusive-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-io/futures-io-0.3.32.crate", + "sha256": "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718", + "dest": "cargo/vendor/futures-io-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718\", \"files\": {}}", + "dest": "cargo/vendor/futures-io-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-lite/futures-lite-2.6.1.crate", + "sha256": "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad", + "dest": "cargo/vendor/futures-lite-2.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad\", \"files\": {}}", + "dest": "cargo/vendor/futures-lite-2.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-macro/futures-macro-0.3.32.crate", + "sha256": "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b", + "dest": "cargo/vendor/futures-macro-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b\", \"files\": {}}", + "dest": "cargo/vendor/futures-macro-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-sink/futures-sink-0.3.32.crate", + "sha256": "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893", + "dest": "cargo/vendor/futures-sink-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893\", \"files\": {}}", + "dest": "cargo/vendor/futures-sink-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-task/futures-task-0.3.32.crate", + "sha256": "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393", + "dest": "cargo/vendor/futures-task-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393\", \"files\": {}}", + "dest": "cargo/vendor/futures-task-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/futures-util/futures-util-0.3.32.crate", + "sha256": "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6", + "dest": "cargo/vendor/futures-util-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6\", \"files\": {}}", + "dest": "cargo/vendor/futures-util-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/fxhash/fxhash-0.2.1.crate", + "sha256": "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c", + "dest": "cargo/vendor/fxhash-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c\", \"files\": {}}", + "dest": "cargo/vendor/fxhash-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdk/gdk-0.18.2.crate", + "sha256": "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691", + "dest": "cargo/vendor/gdk-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691\", \"files\": {}}", + "dest": "cargo/vendor/gdk-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdk-pixbuf/gdk-pixbuf-0.18.5.crate", + "sha256": "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec", + "dest": "cargo/vendor/gdk-pixbuf-0.18.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec\", \"files\": {}}", + "dest": "cargo/vendor/gdk-pixbuf-0.18.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdk-pixbuf-sys/gdk-pixbuf-sys-0.18.0.crate", + "sha256": "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7", + "dest": "cargo/vendor/gdk-pixbuf-sys-0.18.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7\", \"files\": {}}", + "dest": "cargo/vendor/gdk-pixbuf-sys-0.18.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdk-sys/gdk-sys-0.18.2.crate", + "sha256": "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7", + "dest": "cargo/vendor/gdk-sys-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7\", \"files\": {}}", + "dest": "cargo/vendor/gdk-sys-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdkwayland-sys/gdkwayland-sys-0.18.2.crate", + "sha256": "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69", + "dest": "cargo/vendor/gdkwayland-sys-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69\", \"files\": {}}", + "dest": "cargo/vendor/gdkwayland-sys-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdkx11/gdkx11-0.18.2.crate", + "sha256": "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe", + "dest": "cargo/vendor/gdkx11-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe\", \"files\": {}}", + "dest": "cargo/vendor/gdkx11-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gdkx11-sys/gdkx11-sys-0.18.2.crate", + "sha256": "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d", + "dest": "cargo/vendor/gdkx11-sys-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d\", \"files\": {}}", + "dest": "cargo/vendor/gdkx11-sys-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/generic-array/generic-array-0.14.7.crate", + "sha256": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a", + "dest": "cargo/vendor/generic-array-0.14.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\", \"files\": {}}", + "dest": "cargo/vendor/generic-array-0.14.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gethostname/gethostname-1.1.0.crate", + "sha256": "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8", + "dest": "cargo/vendor/gethostname-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8\", \"files\": {}}", + "dest": "cargo/vendor/gethostname-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/getrandom/getrandom-0.1.16.crate", + "sha256": "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce", + "dest": "cargo/vendor/getrandom-0.1.16" + }, + { + "type": "inline", + "contents": "{\"package\": \"8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce\", \"files\": {}}", + "dest": "cargo/vendor/getrandom-0.1.16", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/getrandom/getrandom-0.2.17.crate", + "sha256": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0", + "dest": "cargo/vendor/getrandom-0.2.17" + }, + { + "type": "inline", + "contents": "{\"package\": \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\", \"files\": {}}", + "dest": "cargo/vendor/getrandom-0.2.17", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/getrandom/getrandom-0.3.4.crate", + "sha256": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd", + "dest": "cargo/vendor/getrandom-0.3.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\", \"files\": {}}", + "dest": "cargo/vendor/getrandom-0.3.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/getrandom/getrandom-0.4.2.crate", + "sha256": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555", + "dest": "cargo/vendor/getrandom-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\", \"files\": {}}", + "dest": "cargo/vendor/getrandom-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ghash/ghash-0.5.1.crate", + "sha256": "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1", + "dest": "cargo/vendor/ghash-0.5.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1\", \"files\": {}}", + "dest": "cargo/vendor/ghash-0.5.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gio/gio-0.18.4.crate", + "sha256": "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73", + "dest": "cargo/vendor/gio-0.18.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73\", \"files\": {}}", + "dest": "cargo/vendor/gio-0.18.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gio-sys/gio-sys-0.18.1.crate", + "sha256": "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2", + "dest": "cargo/vendor/gio-sys-0.18.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2\", \"files\": {}}", + "dest": "cargo/vendor/gio-sys-0.18.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/glib/glib-0.18.5.crate", + "sha256": "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5", + "dest": "cargo/vendor/glib-0.18.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5\", \"files\": {}}", + "dest": "cargo/vendor/glib-0.18.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/glib-macros/glib-macros-0.18.5.crate", + "sha256": "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc", + "dest": "cargo/vendor/glib-macros-0.18.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc\", \"files\": {}}", + "dest": "cargo/vendor/glib-macros-0.18.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/glib-sys/glib-sys-0.18.1.crate", + "sha256": "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898", + "dest": "cargo/vendor/glib-sys-0.18.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898\", \"files\": {}}", + "dest": "cargo/vendor/glib-sys-0.18.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/glob/glob-0.3.3.crate", + "sha256": "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280", + "dest": "cargo/vendor/glob-0.3.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280\", \"files\": {}}", + "dest": "cargo/vendor/glob-0.3.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gobject-sys/gobject-sys-0.18.0.crate", + "sha256": "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44", + "dest": "cargo/vendor/gobject-sys-0.18.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44\", \"files\": {}}", + "dest": "cargo/vendor/gobject-sys-0.18.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/group/group-0.13.0.crate", + "sha256": "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63", + "dest": "cargo/vendor/group-0.13.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63\", \"files\": {}}", + "dest": "cargo/vendor/group-0.13.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gtk/gtk-0.18.2.crate", + "sha256": "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a", + "dest": "cargo/vendor/gtk-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a\", \"files\": {}}", + "dest": "cargo/vendor/gtk-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gtk-sys/gtk-sys-0.18.2.crate", + "sha256": "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414", + "dest": "cargo/vendor/gtk-sys-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414\", \"files\": {}}", + "dest": "cargo/vendor/gtk-sys-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/gtk3-macros/gtk3-macros-0.18.2.crate", + "sha256": "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d", + "dest": "cargo/vendor/gtk3-macros-0.18.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d\", \"files\": {}}", + "dest": "cargo/vendor/gtk3-macros-0.18.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/h2/h2-0.4.13.crate", + "sha256": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54", + "dest": "cargo/vendor/h2-0.4.13" + }, + { + "type": "inline", + "contents": "{\"package\": \"2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54\", \"files\": {}}", + "dest": "cargo/vendor/h2-0.4.13", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/half/half-2.7.1.crate", + "sha256": "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b", + "dest": "cargo/vendor/half-2.7.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b\", \"files\": {}}", + "dest": "cargo/vendor/half-2.7.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hashbrown/hashbrown-0.12.3.crate", + "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", + "dest": "cargo/vendor/hashbrown-0.12.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888\", \"files\": {}}", + "dest": "cargo/vendor/hashbrown-0.12.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hashbrown/hashbrown-0.15.5.crate", + "sha256": "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1", + "dest": "cargo/vendor/hashbrown-0.15.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\", \"files\": {}}", + "dest": "cargo/vendor/hashbrown-0.15.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hashbrown/hashbrown-0.16.1.crate", + "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100", + "dest": "cargo/vendor/hashbrown-0.16.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100\", \"files\": {}}", + "dest": "cargo/vendor/hashbrown-0.16.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hashlink/hashlink-0.10.0.crate", + "sha256": "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1", + "dest": "cargo/vendor/hashlink-0.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1\", \"files\": {}}", + "dest": "cargo/vendor/hashlink-0.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/heck/heck-0.4.1.crate", + "sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8", + "dest": "cargo/vendor/heck-0.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\", \"files\": {}}", + "dest": "cargo/vendor/heck-0.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/heck/heck-0.5.0.crate", + "sha256": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea", + "dest": "cargo/vendor/heck-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\", \"files\": {}}", + "dest": "cargo/vendor/heck-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.5.2.crate", + "sha256": "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c", + "dest": "cargo/vendor/hermit-abi-0.5.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c\", \"files\": {}}", + "dest": "cargo/vendor/hermit-abi-0.5.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hex/hex-0.4.3.crate", + "sha256": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70", + "dest": "cargo/vendor/hex-0.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\", \"files\": {}}", + "dest": "cargo/vendor/hex-0.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hex-literal/hex-literal-0.4.1.crate", + "sha256": "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46", + "dest": "cargo/vendor/hex-literal-0.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46\", \"files\": {}}", + "dest": "cargo/vendor/hex-literal-0.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hkdf/hkdf-0.12.4.crate", + "sha256": "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7", + "dest": "cargo/vendor/hkdf-0.12.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7\", \"files\": {}}", + "dest": "cargo/vendor/hkdf-0.12.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hmac/hmac-0.12.1.crate", + "sha256": "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e", + "dest": "cargo/vendor/hmac-0.12.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e\", \"files\": {}}", + "dest": "cargo/vendor/hmac-0.12.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/home/home-0.5.12.crate", + "sha256": "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d", + "dest": "cargo/vendor/home-0.5.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d\", \"files\": {}}", + "dest": "cargo/vendor/home-0.5.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/html5ever/html5ever-0.29.1.crate", + "sha256": "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c", + "dest": "cargo/vendor/html5ever-0.29.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c\", \"files\": {}}", + "dest": "cargo/vendor/html5ever-0.29.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/http/http-1.4.0.crate", + "sha256": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a", + "dest": "cargo/vendor/http-1.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a\", \"files\": {}}", + "dest": "cargo/vendor/http-1.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/http-body/http-body-1.0.1.crate", + "sha256": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184", + "dest": "cargo/vendor/http-body-1.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184\", \"files\": {}}", + "dest": "cargo/vendor/http-body-1.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/http-body-util/http-body-util-0.1.3.crate", + "sha256": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a", + "dest": "cargo/vendor/http-body-util-0.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a\", \"files\": {}}", + "dest": "cargo/vendor/http-body-util-0.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/http-range/http-range-0.1.5.crate", + "sha256": "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573", + "dest": "cargo/vendor/http-range-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573\", \"files\": {}}", + "dest": "cargo/vendor/http-range-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/httparse/httparse-1.10.1.crate", + "sha256": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87", + "dest": "cargo/vendor/httparse-1.10.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87\", \"files\": {}}", + "dest": "cargo/vendor/httparse-1.10.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hyper/hyper-1.8.1.crate", + "sha256": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11", + "dest": "cargo/vendor/hyper-1.8.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11\", \"files\": {}}", + "dest": "cargo/vendor/hyper-1.8.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hyper-rustls/hyper-rustls-0.27.7.crate", + "sha256": "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58", + "dest": "cargo/vendor/hyper-rustls-0.27.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58\", \"files\": {}}", + "dest": "cargo/vendor/hyper-rustls-0.27.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/hyper-util/hyper-util-0.1.20.crate", + "sha256": "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0", + "dest": "cargo/vendor/hyper-util-0.1.20" + }, + { + "type": "inline", + "contents": "{\"package\": \"96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0\", \"files\": {}}", + "dest": "cargo/vendor/hyper-util-0.1.20", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/iana-time-zone/iana-time-zone-0.1.65.crate", + "sha256": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470", + "dest": "cargo/vendor/iana-time-zone-0.1.65" + }, + { + "type": "inline", + "contents": "{\"package\": \"e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470\", \"files\": {}}", + "dest": "cargo/vendor/iana-time-zone-0.1.65", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/iana-time-zone-haiku/iana-time-zone-haiku-0.1.2.crate", + "sha256": "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f", + "dest": "cargo/vendor/iana-time-zone-haiku-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f\", \"files\": {}}", + "dest": "cargo/vendor/iana-time-zone-haiku-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ico/ico-0.5.0.crate", + "sha256": "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371", + "dest": "cargo/vendor/ico-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371\", \"files\": {}}", + "dest": "cargo/vendor/ico-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_collections/icu_collections-2.1.1.crate", + "sha256": "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43", + "dest": "cargo/vendor/icu_collections-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43\", \"files\": {}}", + "dest": "cargo/vendor/icu_collections-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_locale_core/icu_locale_core-2.1.1.crate", + "sha256": "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6", + "dest": "cargo/vendor/icu_locale_core-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6\", \"files\": {}}", + "dest": "cargo/vendor/icu_locale_core-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_normalizer/icu_normalizer-2.1.1.crate", + "sha256": "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599", + "dest": "cargo/vendor/icu_normalizer-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599\", \"files\": {}}", + "dest": "cargo/vendor/icu_normalizer-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_normalizer_data/icu_normalizer_data-2.1.1.crate", + "sha256": "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a", + "dest": "cargo/vendor/icu_normalizer_data-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a\", \"files\": {}}", + "dest": "cargo/vendor/icu_normalizer_data-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_properties/icu_properties-2.1.2.crate", + "sha256": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec", + "dest": "cargo/vendor/icu_properties-2.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec\", \"files\": {}}", + "dest": "cargo/vendor/icu_properties-2.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_properties_data/icu_properties_data-2.1.2.crate", + "sha256": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af", + "dest": "cargo/vendor/icu_properties_data-2.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af\", \"files\": {}}", + "dest": "cargo/vendor/icu_properties_data-2.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/icu_provider/icu_provider-2.1.1.crate", + "sha256": "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614", + "dest": "cargo/vendor/icu_provider-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614\", \"files\": {}}", + "dest": "cargo/vendor/icu_provider-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/id-arena/id-arena-2.3.0.crate", + "sha256": "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954", + "dest": "cargo/vendor/id-arena-2.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\", \"files\": {}}", + "dest": "cargo/vendor/id-arena-2.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ident_case/ident_case-1.0.1.crate", + "sha256": "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39", + "dest": "cargo/vendor/ident_case-1.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39\", \"files\": {}}", + "dest": "cargo/vendor/ident_case-1.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/idna/idna-1.1.0.crate", + "sha256": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de", + "dest": "cargo/vendor/idna-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de\", \"files\": {}}", + "dest": "cargo/vendor/idna-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/idna_adapter/idna_adapter-1.2.1.crate", + "sha256": "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344", + "dest": "cargo/vendor/idna_adapter-1.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344\", \"files\": {}}", + "dest": "cargo/vendor/idna_adapter-1.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/image/image-0.25.9.crate", + "sha256": "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a", + "dest": "cargo/vendor/image-0.25.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a\", \"files\": {}}", + "dest": "cargo/vendor/image-0.25.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/indexmap/indexmap-1.9.3.crate", + "sha256": "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99", + "dest": "cargo/vendor/indexmap-1.9.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99\", \"files\": {}}", + "dest": "cargo/vendor/indexmap-1.9.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/indexmap/indexmap-2.13.0.crate", + "sha256": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017", + "dest": "cargo/vendor/indexmap-2.13.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017\", \"files\": {}}", + "dest": "cargo/vendor/indexmap-2.13.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/infer/infer-0.16.0.crate", + "sha256": "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847", + "dest": "cargo/vendor/infer-0.16.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847\", \"files\": {}}", + "dest": "cargo/vendor/infer-0.16.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/infer/infer-0.19.0.crate", + "sha256": "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7", + "dest": "cargo/vendor/infer-0.19.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7\", \"files\": {}}", + "dest": "cargo/vendor/infer-0.19.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/inotify/inotify-0.9.6.crate", + "sha256": "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff", + "dest": "cargo/vendor/inotify-0.9.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff\", \"files\": {}}", + "dest": "cargo/vendor/inotify-0.9.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/inotify-sys/inotify-sys-0.1.5.crate", + "sha256": "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb", + "dest": "cargo/vendor/inotify-sys-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb\", \"files\": {}}", + "dest": "cargo/vendor/inotify-sys-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/inout/inout-0.1.4.crate", + "sha256": "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01", + "dest": "cargo/vendor/inout-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\", \"files\": {}}", + "dest": "cargo/vendor/inout-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ipnet/ipnet-2.12.0.crate", + "sha256": "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2", + "dest": "cargo/vendor/ipnet-2.12.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2\", \"files\": {}}", + "dest": "cargo/vendor/ipnet-2.12.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/iri-string/iri-string-0.7.10.crate", + "sha256": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a", + "dest": "cargo/vendor/iri-string-0.7.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a\", \"files\": {}}", + "dest": "cargo/vendor/iri-string-0.7.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/is-docker/is-docker-0.2.0.crate", + "sha256": "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3", + "dest": "cargo/vendor/is-docker-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3\", \"files\": {}}", + "dest": "cargo/vendor/is-docker-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/is-wsl/is-wsl-0.4.0.crate", + "sha256": "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5", + "dest": "cargo/vendor/is-wsl-0.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5\", \"files\": {}}", + "dest": "cargo/vendor/is-wsl-0.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/is_terminal_polyfill/is_terminal_polyfill-1.70.2.crate", + "sha256": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695", + "dest": "cargo/vendor/is_terminal_polyfill-1.70.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695\", \"files\": {}}", + "dest": "cargo/vendor/is_terminal_polyfill-1.70.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/itoa/itoa-1.0.17.crate", + "sha256": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2", + "dest": "cargo/vendor/itoa-1.0.17" + }, + { + "type": "inline", + "contents": "{\"package\": \"92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2\", \"files\": {}}", + "dest": "cargo/vendor/itoa-1.0.17", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/javascriptcore-rs/javascriptcore-rs-1.1.2.crate", + "sha256": "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc", + "dest": "cargo/vendor/javascriptcore-rs-1.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc\", \"files\": {}}", + "dest": "cargo/vendor/javascriptcore-rs-1.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/javascriptcore-rs-sys/javascriptcore-rs-sys-1.1.1.crate", + "sha256": "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124", + "dest": "cargo/vendor/javascriptcore-rs-sys-1.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124\", \"files\": {}}", + "dest": "cargo/vendor/javascriptcore-rs-sys-1.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/jni/jni-0.21.1.crate", + "sha256": "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97", + "dest": "cargo/vendor/jni-0.21.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\", \"files\": {}}", + "dest": "cargo/vendor/jni-0.21.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/jni-sys/jni-sys-0.3.0.crate", + "sha256": "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130", + "dest": "cargo/vendor/jni-sys-0.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130\", \"files\": {}}", + "dest": "cargo/vendor/jni-sys-0.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/jobserver/jobserver-0.1.34.crate", + "sha256": "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33", + "dest": "cargo/vendor/jobserver-0.1.34" + }, + { + "type": "inline", + "contents": "{\"package\": \"9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33\", \"files\": {}}", + "dest": "cargo/vendor/jobserver-0.1.34", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/js-sys/js-sys-0.3.91.crate", + "sha256": "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c", + "dest": "cargo/vendor/js-sys-0.3.91" + }, + { + "type": "inline", + "contents": "{\"package\": \"b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c\", \"files\": {}}", + "dest": "cargo/vendor/js-sys-0.3.91", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/json-patch/json-patch-3.0.1.crate", + "sha256": "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08", + "dest": "cargo/vendor/json-patch-3.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08\", \"files\": {}}", + "dest": "cargo/vendor/json-patch-3.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/jsonptr/jsonptr-0.6.3.crate", + "sha256": "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70", + "dest": "cargo/vendor/jsonptr-0.6.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70\", \"files\": {}}", + "dest": "cargo/vendor/jsonptr-0.6.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/keyboard-types/keyboard-types-0.7.0.crate", + "sha256": "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a", + "dest": "cargo/vendor/keyboard-types-0.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a\", \"files\": {}}", + "dest": "cargo/vendor/keyboard-types-0.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/keyring/keyring-3.6.3.crate", + "sha256": "eebcc3aff044e5944a8fbaf69eb277d11986064cba30c468730e8b9909fb551c", + "dest": "cargo/vendor/keyring-3.6.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"eebcc3aff044e5944a8fbaf69eb277d11986064cba30c468730e8b9909fb551c\", \"files\": {}}", + "dest": "cargo/vendor/keyring-3.6.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/kqueue/kqueue-1.1.1.crate", + "sha256": "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a", + "dest": "cargo/vendor/kqueue-1.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a\", \"files\": {}}", + "dest": "cargo/vendor/kqueue-1.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/kqueue-sys/kqueue-sys-1.0.4.crate", + "sha256": "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b", + "dest": "cargo/vendor/kqueue-sys-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b\", \"files\": {}}", + "dest": "cargo/vendor/kqueue-sys-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/kuchikiki/kuchikiki-0.8.8-speedreader.crate", + "sha256": "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2", + "dest": "cargo/vendor/kuchikiki-0.8.8-speedreader" + }, + { + "type": "inline", + "contents": "{\"package\": \"02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2\", \"files\": {}}", + "dest": "cargo/vendor/kuchikiki-0.8.8-speedreader", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/lazy_static/lazy_static-1.5.0.crate", + "sha256": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe", + "dest": "cargo/vendor/lazy_static-1.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe\", \"files\": {}}", + "dest": "cargo/vendor/lazy_static-1.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/leb128fmt/leb128fmt-0.1.0.crate", + "sha256": "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2", + "dest": "cargo/vendor/leb128fmt-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\", \"files\": {}}", + "dest": "cargo/vendor/leb128fmt-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libappindicator/libappindicator-0.9.0.crate", + "sha256": "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a", + "dest": "cargo/vendor/libappindicator-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a\", \"files\": {}}", + "dest": "cargo/vendor/libappindicator-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libappindicator-sys/libappindicator-sys-0.9.0.crate", + "sha256": "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf", + "dest": "cargo/vendor/libappindicator-sys-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf\", \"files\": {}}", + "dest": "cargo/vendor/libappindicator-sys-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libbz2-rs-sys/libbz2-rs-sys-0.2.2.crate", + "sha256": "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7", + "dest": "cargo/vendor/libbz2-rs-sys-0.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7\", \"files\": {}}", + "dest": "cargo/vendor/libbz2-rs-sys-0.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libc/libc-0.2.182.crate", + "sha256": "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112", + "dest": "cargo/vendor/libc-0.2.182" + }, + { + "type": "inline", + "contents": "{\"package\": \"6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112\", \"files\": {}}", + "dest": "cargo/vendor/libc-0.2.182", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libdbus-sys/libdbus-sys-0.2.7.crate", + "sha256": "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043", + "dest": "cargo/vendor/libdbus-sys-0.2.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043\", \"files\": {}}", + "dest": "cargo/vendor/libdbus-sys-0.2.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libloading/libloading-0.7.4.crate", + "sha256": "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f", + "dest": "cargo/vendor/libloading-0.7.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f\", \"files\": {}}", + "dest": "cargo/vendor/libloading-0.7.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/liblzma/liblzma-0.4.6.crate", + "sha256": "b6033b77c21d1f56deeae8014eb9fbe7bdf1765185a6c508b5ca82eeaed7f899", + "dest": "cargo/vendor/liblzma-0.4.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6033b77c21d1f56deeae8014eb9fbe7bdf1765185a6c508b5ca82eeaed7f899\", \"files\": {}}", + "dest": "cargo/vendor/liblzma-0.4.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/liblzma-sys/liblzma-sys-0.4.5.crate", + "sha256": "9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186", + "dest": "cargo/vendor/liblzma-sys-0.4.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186\", \"files\": {}}", + "dest": "cargo/vendor/liblzma-sys-0.4.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libm/libm-0.2.16.crate", + "sha256": "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981", + "dest": "cargo/vendor/libm-0.2.16" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981\", \"files\": {}}", + "dest": "cargo/vendor/libm-0.2.16", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libredox/libredox-0.1.14.crate", + "sha256": "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a", + "dest": "cargo/vendor/libredox-0.1.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a\", \"files\": {}}", + "dest": "cargo/vendor/libredox-0.1.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/libsqlite3-sys/libsqlite3-sys-0.30.1.crate", + "sha256": "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149", + "dest": "cargo/vendor/libsqlite3-sys-0.30.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149\", \"files\": {}}", + "dest": "cargo/vendor/libsqlite3-sys-0.30.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/linux-keyutils/linux-keyutils-0.2.4.crate", + "sha256": "761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e", + "dest": "cargo/vendor/linux-keyutils-0.2.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e\", \"files\": {}}", + "dest": "cargo/vendor/linux-keyutils-0.2.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/linux-raw-sys/linux-raw-sys-0.12.1.crate", + "sha256": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53", + "dest": "cargo/vendor/linux-raw-sys-0.12.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53\", \"files\": {}}", + "dest": "cargo/vendor/linux-raw-sys-0.12.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/litemap/litemap-0.8.1.crate", + "sha256": "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77", + "dest": "cargo/vendor/litemap-0.8.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77\", \"files\": {}}", + "dest": "cargo/vendor/litemap-0.8.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/lock_api/lock_api-0.4.14.crate", + "sha256": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965", + "dest": "cargo/vendor/lock_api-0.4.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965\", \"files\": {}}", + "dest": "cargo/vendor/lock_api-0.4.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/log/log-0.4.29.crate", + "sha256": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897", + "dest": "cargo/vendor/log-0.4.29" + }, + { + "type": "inline", + "contents": "{\"package\": \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\", \"files\": {}}", + "dest": "cargo/vendor/log-0.4.29", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/lru-slab/lru-slab-0.1.2.crate", + "sha256": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154", + "dest": "cargo/vendor/lru-slab-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154\", \"files\": {}}", + "dest": "cargo/vendor/lru-slab-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/mac/mac-0.1.1.crate", + "sha256": "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4", + "dest": "cargo/vendor/mac-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4\", \"files\": {}}", + "dest": "cargo/vendor/mac-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/markup5ever/markup5ever-0.14.1.crate", + "sha256": "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18", + "dest": "cargo/vendor/markup5ever-0.14.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18\", \"files\": {}}", + "dest": "cargo/vendor/markup5ever-0.14.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/match_token/match_token-0.1.0.crate", + "sha256": "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b", + "dest": "cargo/vendor/match_token-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b\", \"files\": {}}", + "dest": "cargo/vendor/match_token-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/matches/matches-0.1.10.crate", + "sha256": "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5", + "dest": "cargo/vendor/matches-0.1.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5\", \"files\": {}}", + "dest": "cargo/vendor/matches-0.1.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/md-5/md-5-0.10.6.crate", + "sha256": "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf", + "dest": "cargo/vendor/md-5-0.10.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf\", \"files\": {}}", + "dest": "cargo/vendor/md-5-0.10.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/md5/md5-0.7.0.crate", + "sha256": "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771", + "dest": "cargo/vendor/md5-0.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771\", \"files\": {}}", + "dest": "cargo/vendor/md5-0.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/memchr/memchr-2.8.0.crate", + "sha256": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79", + "dest": "cargo/vendor/memchr-2.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\", \"files\": {}}", + "dest": "cargo/vendor/memchr-2.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/memoffset/memoffset-0.9.1.crate", + "sha256": "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a", + "dest": "cargo/vendor/memoffset-0.9.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a\", \"files\": {}}", + "dest": "cargo/vendor/memoffset-0.9.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/mime/mime-0.3.17.crate", + "sha256": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a", + "dest": "cargo/vendor/mime-0.3.17" + }, + { + "type": "inline", + "contents": "{\"package\": \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\", \"files\": {}}", + "dest": "cargo/vendor/mime-0.3.17", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/minisign-verify/minisign-verify-0.2.5.crate", + "sha256": "22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e", + "dest": "cargo/vendor/minisign-verify-0.2.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e\", \"files\": {}}", + "dest": "cargo/vendor/minisign-verify-0.2.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/miniz_oxide/miniz_oxide-0.8.9.crate", + "sha256": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316", + "dest": "cargo/vendor/miniz_oxide-0.8.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316\", \"files\": {}}", + "dest": "cargo/vendor/miniz_oxide-0.8.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/mio/mio-0.8.11.crate", + "sha256": "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c", + "dest": "cargo/vendor/mio-0.8.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c\", \"files\": {}}", + "dest": "cargo/vendor/mio-0.8.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/mio/mio-1.1.1.crate", + "sha256": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc", + "dest": "cargo/vendor/mio-1.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc\", \"files\": {}}", + "dest": "cargo/vendor/mio-1.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/moxcms/moxcms-0.7.11.crate", + "sha256": "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97", + "dest": "cargo/vendor/moxcms-0.7.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97\", \"files\": {}}", + "dest": "cargo/vendor/moxcms-0.7.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/muda/muda-0.17.1.crate", + "sha256": "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a", + "dest": "cargo/vendor/muda-0.17.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a\", \"files\": {}}", + "dest": "cargo/vendor/muda-0.17.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/native-tls/native-tls-0.2.18.crate", + "sha256": "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2", + "dest": "cargo/vendor/native-tls-0.2.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2\", \"files\": {}}", + "dest": "cargo/vendor/native-tls-0.2.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ndk/ndk-0.9.0.crate", + "sha256": "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4", + "dest": "cargo/vendor/ndk-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4\", \"files\": {}}", + "dest": "cargo/vendor/ndk-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ndk-context/ndk-context-0.1.1.crate", + "sha256": "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b", + "dest": "cargo/vendor/ndk-context-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b\", \"files\": {}}", + "dest": "cargo/vendor/ndk-context-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ndk-sys/ndk-sys-0.6.0+11769913.crate", + "sha256": "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873", + "dest": "cargo/vendor/ndk-sys-0.6.0+11769913" + }, + { + "type": "inline", + "contents": "{\"package\": \"ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873\", \"files\": {}}", + "dest": "cargo/vendor/ndk-sys-0.6.0+11769913", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/new_debug_unreachable/new_debug_unreachable-1.0.6.crate", + "sha256": "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086", + "dest": "cargo/vendor/new_debug_unreachable-1.0.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086\", \"files\": {}}", + "dest": "cargo/vendor/new_debug_unreachable-1.0.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/nix/nix-0.29.0.crate", + "sha256": "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46", + "dest": "cargo/vendor/nix-0.29.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46\", \"files\": {}}", + "dest": "cargo/vendor/nix-0.29.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/nodrop/nodrop-0.1.14.crate", + "sha256": "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb", + "dest": "cargo/vendor/nodrop-0.1.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb\", \"files\": {}}", + "dest": "cargo/vendor/nodrop-0.1.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/nom/nom-8.0.0.crate", + "sha256": "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405", + "dest": "cargo/vendor/nom-8.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405\", \"files\": {}}", + "dest": "cargo/vendor/nom-8.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/notify/notify-6.1.1.crate", + "sha256": "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d", + "dest": "cargo/vendor/notify-6.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d\", \"files\": {}}", + "dest": "cargo/vendor/notify-6.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ntapi/ntapi-0.4.3.crate", + "sha256": "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae", + "dest": "cargo/vendor/ntapi-0.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae\", \"files\": {}}", + "dest": "cargo/vendor/ntapi-0.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num/num-0.4.3.crate", + "sha256": "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23", + "dest": "cargo/vendor/num-0.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23\", \"files\": {}}", + "dest": "cargo/vendor/num-0.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-bigint/num-bigint-0.4.6.crate", + "sha256": "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9", + "dest": "cargo/vendor/num-bigint-0.4.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9\", \"files\": {}}", + "dest": "cargo/vendor/num-bigint-0.4.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-bigint-dig/num-bigint-dig-0.8.6.crate", + "sha256": "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7", + "dest": "cargo/vendor/num-bigint-dig-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7\", \"files\": {}}", + "dest": "cargo/vendor/num-bigint-dig-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-complex/num-complex-0.4.6.crate", + "sha256": "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495", + "dest": "cargo/vendor/num-complex-0.4.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495\", \"files\": {}}", + "dest": "cargo/vendor/num-complex-0.4.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-conv/num-conv-0.2.0.crate", + "sha256": "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050", + "dest": "cargo/vendor/num-conv-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050\", \"files\": {}}", + "dest": "cargo/vendor/num-conv-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-integer/num-integer-0.1.46.crate", + "sha256": "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f", + "dest": "cargo/vendor/num-integer-0.1.46" + }, + { + "type": "inline", + "contents": "{\"package\": \"7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f\", \"files\": {}}", + "dest": "cargo/vendor/num-integer-0.1.46", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-iter/num-iter-0.1.45.crate", + "sha256": "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf", + "dest": "cargo/vendor/num-iter-0.1.45" + }, + { + "type": "inline", + "contents": "{\"package\": \"1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf\", \"files\": {}}", + "dest": "cargo/vendor/num-iter-0.1.45", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-rational/num-rational-0.4.2.crate", + "sha256": "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824", + "dest": "cargo/vendor/num-rational-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824\", \"files\": {}}", + "dest": "cargo/vendor/num-rational-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num-traits/num-traits-0.2.19.crate", + "sha256": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841", + "dest": "cargo/vendor/num-traits-0.2.19" + }, + { + "type": "inline", + "contents": "{\"package\": \"071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841\", \"files\": {}}", + "dest": "cargo/vendor/num-traits-0.2.19", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num_cpus/num_cpus-1.17.0.crate", + "sha256": "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b", + "dest": "cargo/vendor/num_cpus-1.17.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b\", \"files\": {}}", + "dest": "cargo/vendor/num_cpus-1.17.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num_enum/num_enum-0.7.5.crate", + "sha256": "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c", + "dest": "cargo/vendor/num_enum-0.7.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c\", \"files\": {}}", + "dest": "cargo/vendor/num_enum-0.7.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num_enum_derive/num_enum_derive-0.7.5.crate", + "sha256": "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7", + "dest": "cargo/vendor/num_enum_derive-0.7.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7\", \"files\": {}}", + "dest": "cargo/vendor/num_enum_derive-0.7.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/num_threads/num_threads-0.1.7.crate", + "sha256": "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9", + "dest": "cargo/vendor/num_threads-0.1.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9\", \"files\": {}}", + "dest": "cargo/vendor/num_threads-0.1.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2/objc2-0.6.4.crate", + "sha256": "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f", + "dest": "cargo/vendor/objc2-0.6.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f\", \"files\": {}}", + "dest": "cargo/vendor/objc2-0.6.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-app-kit/objc2-app-kit-0.3.2.crate", + "sha256": "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c", + "dest": "cargo/vendor/objc2-app-kit-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c\", \"files\": {}}", + "dest": "cargo/vendor/objc2-app-kit-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-cloud-kit/objc2-cloud-kit-0.3.2.crate", + "sha256": "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c", + "dest": "cargo/vendor/objc2-cloud-kit-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c\", \"files\": {}}", + "dest": "cargo/vendor/objc2-cloud-kit-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-data/objc2-core-data-0.3.2.crate", + "sha256": "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa", + "dest": "cargo/vendor/objc2-core-data-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-data-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-foundation/objc2-core-foundation-0.3.2.crate", + "sha256": "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536", + "dest": "cargo/vendor/objc2-core-foundation-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-foundation-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-graphics/objc2-core-graphics-0.3.2.crate", + "sha256": "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807", + "dest": "cargo/vendor/objc2-core-graphics-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-graphics-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-image/objc2-core-image-0.3.2.crate", + "sha256": "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006", + "dest": "cargo/vendor/objc2-core-image-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-image-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-text/objc2-core-text-0.3.2.crate", + "sha256": "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d", + "dest": "cargo/vendor/objc2-core-text-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-text-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-core-video/objc2-core-video-0.3.2.crate", + "sha256": "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6", + "dest": "cargo/vendor/objc2-core-video-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6\", \"files\": {}}", + "dest": "cargo/vendor/objc2-core-video-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-encode/objc2-encode-4.1.0.crate", + "sha256": "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33", + "dest": "cargo/vendor/objc2-encode-4.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33\", \"files\": {}}", + "dest": "cargo/vendor/objc2-encode-4.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-exception-helper/objc2-exception-helper-0.1.1.crate", + "sha256": "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a", + "dest": "cargo/vendor/objc2-exception-helper-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a\", \"files\": {}}", + "dest": "cargo/vendor/objc2-exception-helper-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-foundation/objc2-foundation-0.3.2.crate", + "sha256": "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272", + "dest": "cargo/vendor/objc2-foundation-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272\", \"files\": {}}", + "dest": "cargo/vendor/objc2-foundation-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-io-surface/objc2-io-surface-0.3.2.crate", + "sha256": "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d", + "dest": "cargo/vendor/objc2-io-surface-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d\", \"files\": {}}", + "dest": "cargo/vendor/objc2-io-surface-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-javascript-core/objc2-javascript-core-0.3.2.crate", + "sha256": "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586", + "dest": "cargo/vendor/objc2-javascript-core-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586\", \"files\": {}}", + "dest": "cargo/vendor/objc2-javascript-core-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-osa-kit/objc2-osa-kit-0.3.2.crate", + "sha256": "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0", + "dest": "cargo/vendor/objc2-osa-kit-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0\", \"files\": {}}", + "dest": "cargo/vendor/objc2-osa-kit-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-quartz-core/objc2-quartz-core-0.3.2.crate", + "sha256": "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f", + "dest": "cargo/vendor/objc2-quartz-core-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f\", \"files\": {}}", + "dest": "cargo/vendor/objc2-quartz-core-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-security/objc2-security-0.3.2.crate", + "sha256": "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a", + "dest": "cargo/vendor/objc2-security-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a\", \"files\": {}}", + "dest": "cargo/vendor/objc2-security-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-system-configuration/objc2-system-configuration-0.3.2.crate", + "sha256": "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396", + "dest": "cargo/vendor/objc2-system-configuration-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396\", \"files\": {}}", + "dest": "cargo/vendor/objc2-system-configuration-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-ui-kit/objc2-ui-kit-0.3.2.crate", + "sha256": "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22", + "dest": "cargo/vendor/objc2-ui-kit-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22\", \"files\": {}}", + "dest": "cargo/vendor/objc2-ui-kit-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/objc2-web-kit/objc2-web-kit-0.3.2.crate", + "sha256": "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f", + "dest": "cargo/vendor/objc2-web-kit-0.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f\", \"files\": {}}", + "dest": "cargo/vendor/objc2-web-kit-0.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/once_cell/once_cell-1.21.3.crate", + "sha256": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d", + "dest": "cargo/vendor/once_cell-1.21.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d\", \"files\": {}}", + "dest": "cargo/vendor/once_cell-1.21.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/once_cell_polyfill/once_cell_polyfill-1.70.2.crate", + "sha256": "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe", + "dest": "cargo/vendor/once_cell_polyfill-1.70.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe\", \"files\": {}}", + "dest": "cargo/vendor/once_cell_polyfill-1.70.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/opaque-debug/opaque-debug-0.3.1.crate", + "sha256": "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381", + "dest": "cargo/vendor/opaque-debug-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\", \"files\": {}}", + "dest": "cargo/vendor/opaque-debug-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/open/open-5.3.3.crate", + "sha256": "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc", + "dest": "cargo/vendor/open-5.3.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc\", \"files\": {}}", + "dest": "cargo/vendor/open-5.3.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/openssl/openssl-0.10.75.crate", + "sha256": "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328", + "dest": "cargo/vendor/openssl-0.10.75" + }, + { + "type": "inline", + "contents": "{\"package\": \"08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328\", \"files\": {}}", + "dest": "cargo/vendor/openssl-0.10.75", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/openssl-macros/openssl-macros-0.1.1.crate", + "sha256": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c", + "dest": "cargo/vendor/openssl-macros-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\", \"files\": {}}", + "dest": "cargo/vendor/openssl-macros-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/openssl-probe/openssl-probe-0.2.1.crate", + "sha256": "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe", + "dest": "cargo/vendor/openssl-probe-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe\", \"files\": {}}", + "dest": "cargo/vendor/openssl-probe-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/openssl-src/openssl-src-300.5.5+3.5.5.crate", + "sha256": "3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709", + "dest": "cargo/vendor/openssl-src-300.5.5+3.5.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709\", \"files\": {}}", + "dest": "cargo/vendor/openssl-src-300.5.5+3.5.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/openssl-sys/openssl-sys-0.9.111.crate", + "sha256": "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321", + "dest": "cargo/vendor/openssl-sys-0.9.111" + }, + { + "type": "inline", + "contents": "{\"package\": \"82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321\", \"files\": {}}", + "dest": "cargo/vendor/openssl-sys-0.9.111", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/option-ext/option-ext-0.2.0.crate", + "sha256": "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d", + "dest": "cargo/vendor/option-ext-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d\", \"files\": {}}", + "dest": "cargo/vendor/option-ext-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ordered-stream/ordered-stream-0.2.0.crate", + "sha256": "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50", + "dest": "cargo/vendor/ordered-stream-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50\", \"files\": {}}", + "dest": "cargo/vendor/ordered-stream-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/os_pipe/os_pipe-1.2.3.crate", + "sha256": "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967", + "dest": "cargo/vendor/os_pipe-1.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967\", \"files\": {}}", + "dest": "cargo/vendor/os_pipe-1.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/osakit/osakit-0.3.1.crate", + "sha256": "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b", + "dest": "cargo/vendor/osakit-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b\", \"files\": {}}", + "dest": "cargo/vendor/osakit-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/p256/p256-0.13.2.crate", + "sha256": "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b", + "dest": "cargo/vendor/p256-0.13.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b\", \"files\": {}}", + "dest": "cargo/vendor/p256-0.13.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/p521/p521-0.13.3.crate", + "sha256": "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2", + "dest": "cargo/vendor/p521-0.13.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2\", \"files\": {}}", + "dest": "cargo/vendor/p521-0.13.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pango/pango-0.18.3.crate", + "sha256": "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4", + "dest": "cargo/vendor/pango-0.18.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4\", \"files\": {}}", + "dest": "cargo/vendor/pango-0.18.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pango-sys/pango-sys-0.18.0.crate", + "sha256": "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5", + "dest": "cargo/vendor/pango-sys-0.18.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5\", \"files\": {}}", + "dest": "cargo/vendor/pango-sys-0.18.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/parking/parking-2.2.1.crate", + "sha256": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba", + "dest": "cargo/vendor/parking-2.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba\", \"files\": {}}", + "dest": "cargo/vendor/parking-2.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/parking_lot/parking_lot-0.12.5.crate", + "sha256": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a", + "dest": "cargo/vendor/parking_lot-0.12.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a\", \"files\": {}}", + "dest": "cargo/vendor/parking_lot-0.12.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/parking_lot_core/parking_lot_core-0.9.12.crate", + "sha256": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1", + "dest": "cargo/vendor/parking_lot_core-0.9.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1\", \"files\": {}}", + "dest": "cargo/vendor/parking_lot_core-0.9.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/password-hash/password-hash-0.4.2.crate", + "sha256": "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700", + "dest": "cargo/vendor/password-hash-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700\", \"files\": {}}", + "dest": "cargo/vendor/password-hash-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pathdiff/pathdiff-0.2.3.crate", + "sha256": "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3", + "dest": "cargo/vendor/pathdiff-0.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3\", \"files\": {}}", + "dest": "cargo/vendor/pathdiff-0.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pbkdf2/pbkdf2-0.11.0.crate", + "sha256": "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917", + "dest": "cargo/vendor/pbkdf2-0.11.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917\", \"files\": {}}", + "dest": "cargo/vendor/pbkdf2-0.11.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pbkdf2/pbkdf2-0.12.2.crate", + "sha256": "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2", + "dest": "cargo/vendor/pbkdf2-0.12.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2\", \"files\": {}}", + "dest": "cargo/vendor/pbkdf2-0.12.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pem-rfc7468/pem-rfc7468-0.7.0.crate", + "sha256": "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412", + "dest": "cargo/vendor/pem-rfc7468-0.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412\", \"files\": {}}", + "dest": "cargo/vendor/pem-rfc7468-0.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/percent-encoding/percent-encoding-2.3.2.crate", + "sha256": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220", + "dest": "cargo/vendor/percent-encoding-2.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220\", \"files\": {}}", + "dest": "cargo/vendor/percent-encoding-2.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/petgraph/petgraph-0.8.3.crate", + "sha256": "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455", + "dest": "cargo/vendor/petgraph-0.8.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455\", \"files\": {}}", + "dest": "cargo/vendor/petgraph-0.8.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf/phf-0.8.0.crate", + "sha256": "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12", + "dest": "cargo/vendor/phf-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12\", \"files\": {}}", + "dest": "cargo/vendor/phf-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf/phf-0.10.1.crate", + "sha256": "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259", + "dest": "cargo/vendor/phf-0.10.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259\", \"files\": {}}", + "dest": "cargo/vendor/phf-0.10.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf/phf-0.11.3.crate", + "sha256": "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078", + "dest": "cargo/vendor/phf-0.11.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078\", \"files\": {}}", + "dest": "cargo/vendor/phf-0.11.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf/phf-0.12.1.crate", + "sha256": "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7", + "dest": "cargo/vendor/phf-0.12.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7\", \"files\": {}}", + "dest": "cargo/vendor/phf-0.12.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf/phf-0.13.1.crate", + "sha256": "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf", + "dest": "cargo/vendor/phf-0.13.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf\", \"files\": {}}", + "dest": "cargo/vendor/phf-0.13.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_codegen/phf_codegen-0.8.0.crate", + "sha256": "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815", + "dest": "cargo/vendor/phf_codegen-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815\", \"files\": {}}", + "dest": "cargo/vendor/phf_codegen-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_codegen/phf_codegen-0.11.3.crate", + "sha256": "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a", + "dest": "cargo/vendor/phf_codegen-0.11.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a\", \"files\": {}}", + "dest": "cargo/vendor/phf_codegen-0.11.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_generator/phf_generator-0.8.0.crate", + "sha256": "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526", + "dest": "cargo/vendor/phf_generator-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526\", \"files\": {}}", + "dest": "cargo/vendor/phf_generator-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_generator/phf_generator-0.10.0.crate", + "sha256": "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6", + "dest": "cargo/vendor/phf_generator-0.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6\", \"files\": {}}", + "dest": "cargo/vendor/phf_generator-0.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_generator/phf_generator-0.11.3.crate", + "sha256": "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d", + "dest": "cargo/vendor/phf_generator-0.11.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d\", \"files\": {}}", + "dest": "cargo/vendor/phf_generator-0.11.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_macros/phf_macros-0.10.0.crate", + "sha256": "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0", + "dest": "cargo/vendor/phf_macros-0.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0\", \"files\": {}}", + "dest": "cargo/vendor/phf_macros-0.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_macros/phf_macros-0.11.3.crate", + "sha256": "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216", + "dest": "cargo/vendor/phf_macros-0.11.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216\", \"files\": {}}", + "dest": "cargo/vendor/phf_macros-0.11.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_shared/phf_shared-0.8.0.crate", + "sha256": "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7", + "dest": "cargo/vendor/phf_shared-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7\", \"files\": {}}", + "dest": "cargo/vendor/phf_shared-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_shared/phf_shared-0.10.0.crate", + "sha256": "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096", + "dest": "cargo/vendor/phf_shared-0.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096\", \"files\": {}}", + "dest": "cargo/vendor/phf_shared-0.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_shared/phf_shared-0.11.3.crate", + "sha256": "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5", + "dest": "cargo/vendor/phf_shared-0.11.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5\", \"files\": {}}", + "dest": "cargo/vendor/phf_shared-0.11.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_shared/phf_shared-0.12.1.crate", + "sha256": "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981", + "dest": "cargo/vendor/phf_shared-0.12.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981\", \"files\": {}}", + "dest": "cargo/vendor/phf_shared-0.12.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/phf_shared/phf_shared-0.13.1.crate", + "sha256": "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266", + "dest": "cargo/vendor/phf_shared-0.13.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266\", \"files\": {}}", + "dest": "cargo/vendor/phf_shared-0.13.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pin-project-lite/pin-project-lite-0.2.17.crate", + "sha256": "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd", + "dest": "cargo/vendor/pin-project-lite-0.2.17" + }, + { + "type": "inline", + "contents": "{\"package\": \"a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd\", \"files\": {}}", + "dest": "cargo/vendor/pin-project-lite-0.2.17", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pin-utils/pin-utils-0.1.0.crate", + "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", + "dest": "cargo/vendor/pin-utils-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184\", \"files\": {}}", + "dest": "cargo/vendor/pin-utils-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/piper/piper-0.2.5.crate", + "sha256": "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1", + "dest": "cargo/vendor/piper-0.2.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1\", \"files\": {}}", + "dest": "cargo/vendor/piper-0.2.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pkcs1/pkcs1-0.7.5.crate", + "sha256": "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f", + "dest": "cargo/vendor/pkcs1-0.7.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f\", \"files\": {}}", + "dest": "cargo/vendor/pkcs1-0.7.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pkcs8/pkcs8-0.10.2.crate", + "sha256": "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7", + "dest": "cargo/vendor/pkcs8-0.10.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7\", \"files\": {}}", + "dest": "cargo/vendor/pkcs8-0.10.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pkg-config/pkg-config-0.3.32.crate", + "sha256": "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c", + "dest": "cargo/vendor/pkg-config-0.3.32" + }, + { + "type": "inline", + "contents": "{\"package\": \"7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c\", \"files\": {}}", + "dest": "cargo/vendor/pkg-config-0.3.32", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/plain/plain-0.2.3.crate", + "sha256": "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6", + "dest": "cargo/vendor/plain-0.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6\", \"files\": {}}", + "dest": "cargo/vendor/plain-0.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/plist/plist-1.8.0.crate", + "sha256": "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07", + "dest": "cargo/vendor/plist-1.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07\", \"files\": {}}", + "dest": "cargo/vendor/plist-1.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/png/png-0.17.16.crate", + "sha256": "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526", + "dest": "cargo/vendor/png-0.17.16" + }, + { + "type": "inline", + "contents": "{\"package\": \"82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526\", \"files\": {}}", + "dest": "cargo/vendor/png-0.17.16", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/png/png-0.18.1.crate", + "sha256": "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61", + "dest": "cargo/vendor/png-0.18.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61\", \"files\": {}}", + "dest": "cargo/vendor/png-0.18.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/polling/polling-3.11.0.crate", + "sha256": "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218", + "dest": "cargo/vendor/polling-3.11.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218\", \"files\": {}}", + "dest": "cargo/vendor/polling-3.11.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/poly1305/poly1305-0.8.0.crate", + "sha256": "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf", + "dest": "cargo/vendor/poly1305-0.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf\", \"files\": {}}", + "dest": "cargo/vendor/poly1305-0.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/polyval/polyval-0.6.2.crate", + "sha256": "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25", + "dest": "cargo/vendor/polyval-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\", \"files\": {}}", + "dest": "cargo/vendor/polyval-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/postgres-protocol/postgres-protocol-0.6.10.crate", + "sha256": "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491", + "dest": "cargo/vendor/postgres-protocol-0.6.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491\", \"files\": {}}", + "dest": "cargo/vendor/postgres-protocol-0.6.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/postgres-types/postgres-types-0.2.12.crate", + "sha256": "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20", + "dest": "cargo/vendor/postgres-types-0.2.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20\", \"files\": {}}", + "dest": "cargo/vendor/postgres-types-0.2.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/potential_utf/potential_utf-0.1.4.crate", + "sha256": "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77", + "dest": "cargo/vendor/potential_utf-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77\", \"files\": {}}", + "dest": "cargo/vendor/potential_utf-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/powerfmt/powerfmt-0.2.0.crate", + "sha256": "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391", + "dest": "cargo/vendor/powerfmt-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391\", \"files\": {}}", + "dest": "cargo/vendor/powerfmt-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ppmd-rust/ppmd-rust-1.4.0.crate", + "sha256": "efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24", + "dest": "cargo/vendor/ppmd-rust-1.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24\", \"files\": {}}", + "dest": "cargo/vendor/ppmd-rust-1.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ppv-lite86/ppv-lite86-0.2.21.crate", + "sha256": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9", + "dest": "cargo/vendor/ppv-lite86-0.2.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\", \"files\": {}}", + "dest": "cargo/vendor/ppv-lite86-0.2.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/precomputed-hash/precomputed-hash-0.1.1.crate", + "sha256": "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c", + "dest": "cargo/vendor/precomputed-hash-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c\", \"files\": {}}", + "dest": "cargo/vendor/precomputed-hash-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/prettyplease/prettyplease-0.2.37.crate", + "sha256": "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b", + "dest": "cargo/vendor/prettyplease-0.2.37" + }, + { + "type": "inline", + "contents": "{\"package\": \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\", \"files\": {}}", + "dest": "cargo/vendor/prettyplease-0.2.37", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/primeorder/primeorder-0.13.6.crate", + "sha256": "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6", + "dest": "cargo/vendor/primeorder-0.13.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6\", \"files\": {}}", + "dest": "cargo/vendor/primeorder-0.13.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-1.3.1.crate", + "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919", + "dest": "cargo/vendor/proc-macro-crate-1.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-crate-1.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-2.0.2.crate", + "sha256": "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24", + "dest": "cargo/vendor/proc-macro-crate-2.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-crate-2.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-crate/proc-macro-crate-3.4.0.crate", + "sha256": "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983", + "dest": "cargo/vendor/proc-macro-crate-3.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-crate-3.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-error/proc-macro-error-1.0.4.crate", + "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c", + "dest": "cargo/vendor/proc-macro-error-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-error-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-error-attr/proc-macro-error-attr-1.0.4.crate", + "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869", + "dest": "cargo/vendor/proc-macro-error-attr-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-error-attr-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro-hack/proc-macro-hack-0.5.20+deprecated.crate", + "sha256": "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068", + "dest": "cargo/vendor/proc-macro-hack-0.5.20+deprecated" + }, + { + "type": "inline", + "contents": "{\"package\": \"dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro-hack-0.5.20+deprecated", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/proc-macro2/proc-macro2-1.0.106.crate", + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934", + "dest": "cargo/vendor/proc-macro2-1.0.106" + }, + { + "type": "inline", + "contents": "{\"package\": \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\", \"files\": {}}", + "dest": "cargo/vendor/proc-macro2-1.0.106", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ptr_meta/ptr_meta-0.1.4.crate", + "sha256": "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1", + "dest": "cargo/vendor/ptr_meta-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1\", \"files\": {}}", + "dest": "cargo/vendor/ptr_meta-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ptr_meta_derive/ptr_meta_derive-0.1.4.crate", + "sha256": "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac", + "dest": "cargo/vendor/ptr_meta_derive-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac\", \"files\": {}}", + "dest": "cargo/vendor/ptr_meta_derive-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/pxfm/pxfm-0.1.28.crate", + "sha256": "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d", + "dest": "cargo/vendor/pxfm-0.1.28" + }, + { + "type": "inline", + "contents": "{\"package\": \"b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d\", \"files\": {}}", + "dest": "cargo/vendor/pxfm-0.1.28", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quick-error/quick-error-2.0.1.crate", + "sha256": "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3", + "dest": "cargo/vendor/quick-error-2.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3\", \"files\": {}}", + "dest": "cargo/vendor/quick-error-2.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quick-xml/quick-xml-0.38.4.crate", + "sha256": "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c", + "dest": "cargo/vendor/quick-xml-0.38.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c\", \"files\": {}}", + "dest": "cargo/vendor/quick-xml-0.38.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quinn/quinn-0.11.9.crate", + "sha256": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20", + "dest": "cargo/vendor/quinn-0.11.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20\", \"files\": {}}", + "dest": "cargo/vendor/quinn-0.11.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quinn-proto/quinn-proto-0.11.13.crate", + "sha256": "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31", + "dest": "cargo/vendor/quinn-proto-0.11.13" + }, + { + "type": "inline", + "contents": "{\"package\": \"f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31\", \"files\": {}}", + "dest": "cargo/vendor/quinn-proto-0.11.13", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quinn-udp/quinn-udp-0.5.14.crate", + "sha256": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd", + "dest": "cargo/vendor/quinn-udp-0.5.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd\", \"files\": {}}", + "dest": "cargo/vendor/quinn-udp-0.5.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/quote/quote-1.0.44.crate", + "sha256": "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4", + "dest": "cargo/vendor/quote-1.0.44" + }, + { + "type": "inline", + "contents": "{\"package\": \"21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4\", \"files\": {}}", + "dest": "cargo/vendor/quote-1.0.44", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/r-efi/r-efi-5.3.0.crate", + "sha256": "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f", + "dest": "cargo/vendor/r-efi-5.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\", \"files\": {}}", + "dest": "cargo/vendor/r-efi-5.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/r-efi/r-efi-6.0.0.crate", + "sha256": "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf", + "dest": "cargo/vendor/r-efi-6.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\", \"files\": {}}", + "dest": "cargo/vendor/r-efi-6.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/radium/radium-0.7.0.crate", + "sha256": "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09", + "dest": "cargo/vendor/radium-0.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09\", \"files\": {}}", + "dest": "cargo/vendor/radium-0.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand/rand-0.7.3.crate", + "sha256": "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03", + "dest": "cargo/vendor/rand-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03\", \"files\": {}}", + "dest": "cargo/vendor/rand-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand/rand-0.8.5.crate", + "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", + "dest": "cargo/vendor/rand-0.8.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404\", \"files\": {}}", + "dest": "cargo/vendor/rand-0.8.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand/rand-0.9.2.crate", + "sha256": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1", + "dest": "cargo/vendor/rand-0.9.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1\", \"files\": {}}", + "dest": "cargo/vendor/rand-0.9.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_chacha/rand_chacha-0.2.2.crate", + "sha256": "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402", + "dest": "cargo/vendor/rand_chacha-0.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402\", \"files\": {}}", + "dest": "cargo/vendor/rand_chacha-0.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_chacha/rand_chacha-0.3.1.crate", + "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", + "dest": "cargo/vendor/rand_chacha-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\", \"files\": {}}", + "dest": "cargo/vendor/rand_chacha-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_chacha/rand_chacha-0.9.0.crate", + "sha256": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb", + "dest": "cargo/vendor/rand_chacha-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\", \"files\": {}}", + "dest": "cargo/vendor/rand_chacha-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_core/rand_core-0.5.1.crate", + "sha256": "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19", + "dest": "cargo/vendor/rand_core-0.5.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19\", \"files\": {}}", + "dest": "cargo/vendor/rand_core-0.5.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_core/rand_core-0.6.4.crate", + "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", + "dest": "cargo/vendor/rand_core-0.6.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\", \"files\": {}}", + "dest": "cargo/vendor/rand_core-0.6.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_core/rand_core-0.9.5.crate", + "sha256": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c", + "dest": "cargo/vendor/rand_core-0.9.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\", \"files\": {}}", + "dest": "cargo/vendor/rand_core-0.9.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_hc/rand_hc-0.2.0.crate", + "sha256": "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c", + "dest": "cargo/vendor/rand_hc-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c\", \"files\": {}}", + "dest": "cargo/vendor/rand_hc-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rand_pcg/rand_pcg-0.2.1.crate", + "sha256": "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429", + "dest": "cargo/vendor/rand_pcg-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429\", \"files\": {}}", + "dest": "cargo/vendor/rand_pcg-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/raw-window-handle/raw-window-handle-0.6.2.crate", + "sha256": "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539", + "dest": "cargo/vendor/raw-window-handle-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539\", \"files\": {}}", + "dest": "cargo/vendor/raw-window-handle-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rayon/rayon-1.11.0.crate", + "sha256": "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f", + "dest": "cargo/vendor/rayon-1.11.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f\", \"files\": {}}", + "dest": "cargo/vendor/rayon-1.11.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rayon-core/rayon-core-1.13.0.crate", + "sha256": "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91", + "dest": "cargo/vendor/rayon-core-1.13.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91\", \"files\": {}}", + "dest": "cargo/vendor/rayon-core-1.13.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/redox_syscall/redox_syscall-0.5.18.crate", + "sha256": "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d", + "dest": "cargo/vendor/redox_syscall-0.5.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d\", \"files\": {}}", + "dest": "cargo/vendor/redox_syscall-0.5.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/redox_syscall/redox_syscall-0.7.3.crate", + "sha256": "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16", + "dest": "cargo/vendor/redox_syscall-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16\", \"files\": {}}", + "dest": "cargo/vendor/redox_syscall-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/redox_users/redox_users-0.4.6.crate", + "sha256": "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43", + "dest": "cargo/vendor/redox_users-0.4.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43\", \"files\": {}}", + "dest": "cargo/vendor/redox_users-0.4.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/redox_users/redox_users-0.5.2.crate", + "sha256": "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac", + "dest": "cargo/vendor/redox_users-0.5.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac\", \"files\": {}}", + "dest": "cargo/vendor/redox_users-0.5.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ref-cast/ref-cast-1.0.25.crate", + "sha256": "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d", + "dest": "cargo/vendor/ref-cast-1.0.25" + }, + { + "type": "inline", + "contents": "{\"package\": \"f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d\", \"files\": {}}", + "dest": "cargo/vendor/ref-cast-1.0.25", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ref-cast-impl/ref-cast-impl-1.0.25.crate", + "sha256": "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da", + "dest": "cargo/vendor/ref-cast-impl-1.0.25" + }, + { + "type": "inline", + "contents": "{\"package\": \"b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da\", \"files\": {}}", + "dest": "cargo/vendor/ref-cast-impl-1.0.25", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/regex/regex-1.12.3.crate", + "sha256": "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276", + "dest": "cargo/vendor/regex-1.12.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276\", \"files\": {}}", + "dest": "cargo/vendor/regex-1.12.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/regex-automata/regex-automata-0.4.14.crate", + "sha256": "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f", + "dest": "cargo/vendor/regex-automata-0.4.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f\", \"files\": {}}", + "dest": "cargo/vendor/regex-automata-0.4.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/regex-syntax/regex-syntax-0.8.10.crate", + "sha256": "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a", + "dest": "cargo/vendor/regex-syntax-0.8.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a\", \"files\": {}}", + "dest": "cargo/vendor/regex-syntax-0.8.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rend/rend-0.4.2.crate", + "sha256": "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c", + "dest": "cargo/vendor/rend-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c\", \"files\": {}}", + "dest": "cargo/vendor/rend-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/reqwest/reqwest-0.13.2.crate", + "sha256": "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801", + "dest": "cargo/vendor/reqwest-0.13.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801\", \"files\": {}}", + "dest": "cargo/vendor/reqwest-0.13.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rfc6979/rfc6979-0.4.0.crate", + "sha256": "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2", + "dest": "cargo/vendor/rfc6979-0.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2\", \"files\": {}}", + "dest": "cargo/vendor/rfc6979-0.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rfd/rfd-0.16.0.crate", + "sha256": "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672", + "dest": "cargo/vendor/rfd-0.16.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672\", \"files\": {}}", + "dest": "cargo/vendor/rfd-0.16.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ring/ring-0.17.14.crate", + "sha256": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7", + "dest": "cargo/vendor/ring-0.17.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7\", \"files\": {}}", + "dest": "cargo/vendor/ring-0.17.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rkyv/rkyv-0.7.46.crate", + "sha256": "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1", + "dest": "cargo/vendor/rkyv-0.7.46" + }, + { + "type": "inline", + "contents": "{\"package\": \"2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1\", \"files\": {}}", + "dest": "cargo/vendor/rkyv-0.7.46", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rkyv_derive/rkyv_derive-0.7.46.crate", + "sha256": "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5", + "dest": "cargo/vendor/rkyv_derive-0.7.46" + }, + { + "type": "inline", + "contents": "{\"package\": \"84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5\", \"files\": {}}", + "dest": "cargo/vendor/rkyv_derive-0.7.46", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rsa/rsa-0.9.10.crate", + "sha256": "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d", + "dest": "cargo/vendor/rsa-0.9.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d\", \"files\": {}}", + "dest": "cargo/vendor/rsa-0.9.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/russh/russh-0.43.0.crate", + "sha256": "1c9534703dc13be1eefc5708618f4c346da8e4f04f260218613f351ed5e94259", + "dest": "cargo/vendor/russh-0.43.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1c9534703dc13be1eefc5708618f4c346da8e4f04f260218613f351ed5e94259\", \"files\": {}}", + "dest": "cargo/vendor/russh-0.43.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/russh-cryptovec/russh-cryptovec-0.7.3.crate", + "sha256": "fadd2c0ab350e21c66556f94ee06f766d8bdae3213857ba7610bfd8e10e51880", + "dest": "cargo/vendor/russh-cryptovec-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"fadd2c0ab350e21c66556f94ee06f766d8bdae3213857ba7610bfd8e10e51880\", \"files\": {}}", + "dest": "cargo/vendor/russh-cryptovec-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/russh-keys/russh-keys-0.43.0.crate", + "sha256": "aa4a5afa2fab6fd49d0c470a3b75c3c70a4f363c38db32df5ae3b44a3abf5ab9", + "dest": "cargo/vendor/russh-keys-0.43.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"aa4a5afa2fab6fd49d0c470a3b75c3c70a4f363c38db32df5ae3b44a3abf5ab9\", \"files\": {}}", + "dest": "cargo/vendor/russh-keys-0.43.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rust_decimal/rust_decimal-1.40.0.crate", + "sha256": "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0", + "dest": "cargo/vendor/rust_decimal-1.40.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0\", \"files\": {}}", + "dest": "cargo/vendor/rust_decimal-1.40.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustc-hash/rustc-hash-2.1.1.crate", + "sha256": "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d", + "dest": "cargo/vendor/rustc-hash-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d\", \"files\": {}}", + "dest": "cargo/vendor/rustc-hash-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustc_version/rustc_version-0.4.1.crate", + "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92", + "dest": "cargo/vendor/rustc_version-0.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92\", \"files\": {}}", + "dest": "cargo/vendor/rustc_version-0.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustix/rustix-1.1.4.crate", + "sha256": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190", + "dest": "cargo/vendor/rustix-1.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190\", \"files\": {}}", + "dest": "cargo/vendor/rustix-1.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls/rustls-0.23.37.crate", + "sha256": "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4", + "dest": "cargo/vendor/rustls-0.23.37" + }, + { + "type": "inline", + "contents": "{\"package\": \"758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4\", \"files\": {}}", + "dest": "cargo/vendor/rustls-0.23.37", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-native-certs/rustls-native-certs-0.8.3.crate", + "sha256": "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63", + "dest": "cargo/vendor/rustls-native-certs-0.8.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63\", \"files\": {}}", + "dest": "cargo/vendor/rustls-native-certs-0.8.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-pemfile/rustls-pemfile-2.2.0.crate", + "sha256": "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50", + "dest": "cargo/vendor/rustls-pemfile-2.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50\", \"files\": {}}", + "dest": "cargo/vendor/rustls-pemfile-2.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-pki-types/rustls-pki-types-1.14.0.crate", + "sha256": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd", + "dest": "cargo/vendor/rustls-pki-types-1.14.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd\", \"files\": {}}", + "dest": "cargo/vendor/rustls-pki-types-1.14.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-platform-verifier/rustls-platform-verifier-0.6.2.crate", + "sha256": "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784", + "dest": "cargo/vendor/rustls-platform-verifier-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784\", \"files\": {}}", + "dest": "cargo/vendor/rustls-platform-verifier-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-platform-verifier-android/rustls-platform-verifier-android-0.1.1.crate", + "sha256": "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f", + "dest": "cargo/vendor/rustls-platform-verifier-android-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f\", \"files\": {}}", + "dest": "cargo/vendor/rustls-platform-verifier-android-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustls-webpki/rustls-webpki-0.103.9.crate", + "sha256": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53", + "dest": "cargo/vendor/rustls-webpki-0.103.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53\", \"files\": {}}", + "dest": "cargo/vendor/rustls-webpki-0.103.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/rustversion/rustversion-1.0.22.crate", + "sha256": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d", + "dest": "cargo/vendor/rustversion-1.0.22" + }, + { + "type": "inline", + "contents": "{\"package\": \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\", \"files\": {}}", + "dest": "cargo/vendor/rustversion-1.0.22", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ryu/ryu-1.0.23.crate", + "sha256": "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f", + "dest": "cargo/vendor/ryu-1.0.23" + }, + { + "type": "inline", + "contents": "{\"package\": \"9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f\", \"files\": {}}", + "dest": "cargo/vendor/ryu-1.0.23", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/same-file/same-file-1.0.6.crate", + "sha256": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502", + "dest": "cargo/vendor/same-file-1.0.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\", \"files\": {}}", + "dest": "cargo/vendor/same-file-1.0.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/schannel/schannel-0.1.28.crate", + "sha256": "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1", + "dest": "cargo/vendor/schannel-0.1.28" + }, + { + "type": "inline", + "contents": "{\"package\": \"891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1\", \"files\": {}}", + "dest": "cargo/vendor/schannel-0.1.28", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/schemars/schemars-0.8.22.crate", + "sha256": "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615", + "dest": "cargo/vendor/schemars-0.8.22" + }, + { + "type": "inline", + "contents": "{\"package\": \"3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615\", \"files\": {}}", + "dest": "cargo/vendor/schemars-0.8.22", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/schemars/schemars-0.9.0.crate", + "sha256": "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f", + "dest": "cargo/vendor/schemars-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f\", \"files\": {}}", + "dest": "cargo/vendor/schemars-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/schemars/schemars-1.2.1.crate", + "sha256": "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc", + "dest": "cargo/vendor/schemars-1.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc\", \"files\": {}}", + "dest": "cargo/vendor/schemars-1.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/schemars_derive/schemars_derive-0.8.22.crate", + "sha256": "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d", + "dest": "cargo/vendor/schemars_derive-0.8.22" + }, + { + "type": "inline", + "contents": "{\"package\": \"32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d\", \"files\": {}}", + "dest": "cargo/vendor/schemars_derive-0.8.22", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/scopeguard/scopeguard-1.2.0.crate", + "sha256": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49", + "dest": "cargo/vendor/scopeguard-1.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49\", \"files\": {}}", + "dest": "cargo/vendor/scopeguard-1.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/seahash/seahash-4.1.0.crate", + "sha256": "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b", + "dest": "cargo/vendor/seahash-4.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b\", \"files\": {}}", + "dest": "cargo/vendor/seahash-4.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sec1/sec1-0.7.3.crate", + "sha256": "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc", + "dest": "cargo/vendor/sec1-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc\", \"files\": {}}", + "dest": "cargo/vendor/sec1-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/secret-service/secret-service-4.0.0.crate", + "sha256": "e4d35ad99a181be0a60ffcbe85d680d98f87bdc4d7644ade319b87076b9dbfd4", + "dest": "cargo/vendor/secret-service-4.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"e4d35ad99a181be0a60ffcbe85d680d98f87bdc4d7644ade319b87076b9dbfd4\", \"files\": {}}", + "dest": "cargo/vendor/secret-service-4.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/security-framework/security-framework-2.11.1.crate", + "sha256": "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02", + "dest": "cargo/vendor/security-framework-2.11.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02\", \"files\": {}}", + "dest": "cargo/vendor/security-framework-2.11.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/security-framework/security-framework-3.7.0.crate", + "sha256": "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d", + "dest": "cargo/vendor/security-framework-3.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d\", \"files\": {}}", + "dest": "cargo/vendor/security-framework-3.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/security-framework-sys/security-framework-sys-2.17.0.crate", + "sha256": "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3", + "dest": "cargo/vendor/security-framework-sys-2.17.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3\", \"files\": {}}", + "dest": "cargo/vendor/security-framework-sys-2.17.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/selectors/selectors-0.24.0.crate", + "sha256": "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416", + "dest": "cargo/vendor/selectors-0.24.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416\", \"files\": {}}", + "dest": "cargo/vendor/selectors-0.24.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/semver/semver-1.0.27.crate", + "sha256": "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2", + "dest": "cargo/vendor/semver-1.0.27" + }, + { + "type": "inline", + "contents": "{\"package\": \"d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2\", \"files\": {}}", + "dest": "cargo/vendor/semver-1.0.27", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde/serde-1.0.228.crate", + "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e", + "dest": "cargo/vendor/serde-1.0.228" + }, + { + "type": "inline", + "contents": "{\"package\": \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\", \"files\": {}}", + "dest": "cargo/vendor/serde-1.0.228", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde-untagged/serde-untagged-0.1.9.crate", + "sha256": "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058", + "dest": "cargo/vendor/serde-untagged-0.1.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058\", \"files\": {}}", + "dest": "cargo/vendor/serde-untagged-0.1.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_core/serde_core-1.0.228.crate", + "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad", + "dest": "cargo/vendor/serde_core-1.0.228" + }, + { + "type": "inline", + "contents": "{\"package\": \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\", \"files\": {}}", + "dest": "cargo/vendor/serde_core-1.0.228", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_derive/serde_derive-1.0.228.crate", + "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79", + "dest": "cargo/vendor/serde_derive-1.0.228" + }, + { + "type": "inline", + "contents": "{\"package\": \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\", \"files\": {}}", + "dest": "cargo/vendor/serde_derive-1.0.228", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_derive_internals/serde_derive_internals-0.29.1.crate", + "sha256": "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711", + "dest": "cargo/vendor/serde_derive_internals-0.29.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711\", \"files\": {}}", + "dest": "cargo/vendor/serde_derive_internals-0.29.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_json/serde_json-1.0.149.crate", + "sha256": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86", + "dest": "cargo/vendor/serde_json-1.0.149" + }, + { + "type": "inline", + "contents": "{\"package\": \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\", \"files\": {}}", + "dest": "cargo/vendor/serde_json-1.0.149", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_repr/serde_repr-0.1.20.crate", + "sha256": "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c", + "dest": "cargo/vendor/serde_repr-0.1.20" + }, + { + "type": "inline", + "contents": "{\"package\": \"175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c\", \"files\": {}}", + "dest": "cargo/vendor/serde_repr-0.1.20", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_spanned/serde_spanned-0.6.9.crate", + "sha256": "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3", + "dest": "cargo/vendor/serde_spanned-0.6.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3\", \"files\": {}}", + "dest": "cargo/vendor/serde_spanned-0.6.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_spanned/serde_spanned-1.0.4.crate", + "sha256": "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776", + "dest": "cargo/vendor/serde_spanned-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776\", \"files\": {}}", + "dest": "cargo/vendor/serde_spanned-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_urlencoded/serde_urlencoded-0.7.1.crate", + "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd", + "dest": "cargo/vendor/serde_urlencoded-0.7.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\", \"files\": {}}", + "dest": "cargo/vendor/serde_urlencoded-0.7.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_with/serde_with-3.17.0.crate", + "sha256": "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9", + "dest": "cargo/vendor/serde_with-3.17.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9\", \"files\": {}}", + "dest": "cargo/vendor/serde_with-3.17.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_with_macros/serde_with_macros-3.17.0.crate", + "sha256": "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0", + "dest": "cargo/vendor/serde_with_macros-3.17.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0\", \"files\": {}}", + "dest": "cargo/vendor/serde_with_macros-3.17.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serde_yaml/serde_yaml-0.9.34+deprecated.crate", + "sha256": "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47", + "dest": "cargo/vendor/serde_yaml-0.9.34+deprecated" + }, + { + "type": "inline", + "contents": "{\"package\": \"6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47\", \"files\": {}}", + "dest": "cargo/vendor/serde_yaml-0.9.34+deprecated", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serialize-to-javascript/serialize-to-javascript-0.1.2.crate", + "sha256": "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5", + "dest": "cargo/vendor/serialize-to-javascript-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5\", \"files\": {}}", + "dest": "cargo/vendor/serialize-to-javascript-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/serialize-to-javascript-impl/serialize-to-javascript-impl-0.1.2.crate", + "sha256": "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d", + "dest": "cargo/vendor/serialize-to-javascript-impl-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d\", \"files\": {}}", + "dest": "cargo/vendor/serialize-to-javascript-impl-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/servo_arc/servo_arc-0.2.0.crate", + "sha256": "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741", + "dest": "cargo/vendor/servo_arc-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741\", \"files\": {}}", + "dest": "cargo/vendor/servo_arc-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sha1/sha1-0.10.6.crate", + "sha256": "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba", + "dest": "cargo/vendor/sha1-0.10.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba\", \"files\": {}}", + "dest": "cargo/vendor/sha1-0.10.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sha2/sha2-0.10.9.crate", + "sha256": "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283", + "dest": "cargo/vendor/sha2-0.10.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283\", \"files\": {}}", + "dest": "cargo/vendor/sha2-0.10.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/shlex/shlex-1.3.0.crate", + "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", + "dest": "cargo/vendor/shlex-1.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\", \"files\": {}}", + "dest": "cargo/vendor/shlex-1.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/signal-hook-registry/signal-hook-registry-1.4.8.crate", + "sha256": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b", + "dest": "cargo/vendor/signal-hook-registry-1.4.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b\", \"files\": {}}", + "dest": "cargo/vendor/signal-hook-registry-1.4.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/signature/signature-2.2.0.crate", + "sha256": "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de", + "dest": "cargo/vendor/signature-2.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de\", \"files\": {}}", + "dest": "cargo/vendor/signature-2.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/simd-adler32/simd-adler32-0.3.8.crate", + "sha256": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2", + "dest": "cargo/vendor/simd-adler32-0.3.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2\", \"files\": {}}", + "dest": "cargo/vendor/simd-adler32-0.3.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/simdutf8/simdutf8-0.1.5.crate", + "sha256": "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e", + "dest": "cargo/vendor/simdutf8-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e\", \"files\": {}}", + "dest": "cargo/vendor/simdutf8-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/siphasher/siphasher-0.3.11.crate", + "sha256": "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d", + "dest": "cargo/vendor/siphasher-0.3.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d\", \"files\": {}}", + "dest": "cargo/vendor/siphasher-0.3.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/siphasher/siphasher-1.0.2.crate", + "sha256": "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e", + "dest": "cargo/vendor/siphasher-1.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e\", \"files\": {}}", + "dest": "cargo/vendor/siphasher-1.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/slab/slab-0.4.12.crate", + "sha256": "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5", + "dest": "cargo/vendor/slab-0.4.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5\", \"files\": {}}", + "dest": "cargo/vendor/slab-0.4.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/smallvec/smallvec-1.15.1.crate", + "sha256": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03", + "dest": "cargo/vendor/smallvec-1.15.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03\", \"files\": {}}", + "dest": "cargo/vendor/smallvec-1.15.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/socket2/socket2-0.6.2.crate", + "sha256": "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0", + "dest": "cargo/vendor/socket2-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0\", \"files\": {}}", + "dest": "cargo/vendor/socket2-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/softbuffer/softbuffer-0.4.8.crate", + "sha256": "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3", + "dest": "cargo/vendor/softbuffer-0.4.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3\", \"files\": {}}", + "dest": "cargo/vendor/softbuffer-0.4.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/soup3/soup3-0.5.0.crate", + "sha256": "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f", + "dest": "cargo/vendor/soup3-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f\", \"files\": {}}", + "dest": "cargo/vendor/soup3-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/soup3-sys/soup3-sys-0.5.0.crate", + "sha256": "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27", + "dest": "cargo/vendor/soup3-sys-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27\", \"files\": {}}", + "dest": "cargo/vendor/soup3-sys-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/spin/spin-0.9.8.crate", + "sha256": "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67", + "dest": "cargo/vendor/spin-0.9.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\", \"files\": {}}", + "dest": "cargo/vendor/spin-0.9.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/spki/spki-0.7.3.crate", + "sha256": "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d", + "dest": "cargo/vendor/spki-0.7.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d\", \"files\": {}}", + "dest": "cargo/vendor/spki-0.7.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx/sqlx-0.8.6.crate", + "sha256": "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc", + "dest": "cargo/vendor/sqlx-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-core/sqlx-core-0.8.6.crate", + "sha256": "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6", + "dest": "cargo/vendor/sqlx-core-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-core-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-macros/sqlx-macros-0.8.6.crate", + "sha256": "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d", + "dest": "cargo/vendor/sqlx-macros-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-macros-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-macros-core/sqlx-macros-core-0.8.6.crate", + "sha256": "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b", + "dest": "cargo/vendor/sqlx-macros-core-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-macros-core-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-mysql/sqlx-mysql-0.8.6.crate", + "sha256": "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526", + "dest": "cargo/vendor/sqlx-mysql-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-mysql-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-postgres/sqlx-postgres-0.8.6.crate", + "sha256": "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46", + "dest": "cargo/vendor/sqlx-postgres-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-postgres-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sqlx-sqlite/sqlx-sqlite-0.8.6.crate", + "sha256": "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea", + "dest": "cargo/vendor/sqlx-sqlite-0.8.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea\", \"files\": {}}", + "dest": "cargo/vendor/sqlx-sqlite-0.8.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/stable_deref_trait/stable_deref_trait-1.2.1.crate", + "sha256": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596", + "dest": "cargo/vendor/stable_deref_trait-1.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596\", \"files\": {}}", + "dest": "cargo/vendor/stable_deref_trait-1.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/static_assertions/static_assertions-1.1.0.crate", + "sha256": "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f", + "dest": "cargo/vendor/static_assertions-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\", \"files\": {}}", + "dest": "cargo/vendor/static_assertions-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/string_cache/string_cache-0.8.9.crate", + "sha256": "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f", + "dest": "cargo/vendor/string_cache-0.8.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f\", \"files\": {}}", + "dest": "cargo/vendor/string_cache-0.8.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/string_cache_codegen/string_cache_codegen-0.5.4.crate", + "sha256": "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0", + "dest": "cargo/vendor/string_cache_codegen-0.5.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0\", \"files\": {}}", + "dest": "cargo/vendor/string_cache_codegen-0.5.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/stringprep/stringprep-0.1.5.crate", + "sha256": "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1", + "dest": "cargo/vendor/stringprep-0.1.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1\", \"files\": {}}", + "dest": "cargo/vendor/stringprep-0.1.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/strsim/strsim-0.11.1.crate", + "sha256": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f", + "dest": "cargo/vendor/strsim-0.11.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f\", \"files\": {}}", + "dest": "cargo/vendor/strsim-0.11.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/subtle/subtle-2.6.1.crate", + "sha256": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292", + "dest": "cargo/vendor/subtle-2.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\", \"files\": {}}", + "dest": "cargo/vendor/subtle-2.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/swift-rs/swift-rs-1.0.7.crate", + "sha256": "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7", + "dest": "cargo/vendor/swift-rs-1.0.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7\", \"files\": {}}", + "dest": "cargo/vendor/swift-rs-1.0.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/syn/syn-1.0.109.crate", + "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237", + "dest": "cargo/vendor/syn-1.0.109" + }, + { + "type": "inline", + "contents": "{\"package\": \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\", \"files\": {}}", + "dest": "cargo/vendor/syn-1.0.109", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/syn/syn-2.0.117.crate", + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99", + "dest": "cargo/vendor/syn-2.0.117" + }, + { + "type": "inline", + "contents": "{\"package\": \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\", \"files\": {}}", + "dest": "cargo/vendor/syn-2.0.117", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sync_wrapper/sync_wrapper-1.0.2.crate", + "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263", + "dest": "cargo/vendor/sync_wrapper-1.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263\", \"files\": {}}", + "dest": "cargo/vendor/sync_wrapper-1.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/synstructure/synstructure-0.13.2.crate", + "sha256": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2", + "dest": "cargo/vendor/synstructure-0.13.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2\", \"files\": {}}", + "dest": "cargo/vendor/synstructure-0.13.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/sysinfo/sysinfo-0.32.1.crate", + "sha256": "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af", + "dest": "cargo/vendor/sysinfo-0.32.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af\", \"files\": {}}", + "dest": "cargo/vendor/sysinfo-0.32.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/system-configuration/system-configuration-0.7.0.crate", + "sha256": "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b", + "dest": "cargo/vendor/system-configuration-0.7.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b\", \"files\": {}}", + "dest": "cargo/vendor/system-configuration-0.7.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/system-configuration-sys/system-configuration-sys-0.6.0.crate", + "sha256": "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4", + "dest": "cargo/vendor/system-configuration-sys-0.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4\", \"files\": {}}", + "dest": "cargo/vendor/system-configuration-sys-0.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/system-deps/system-deps-6.2.2.crate", + "sha256": "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349", + "dest": "cargo/vendor/system-deps-6.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349\", \"files\": {}}", + "dest": "cargo/vendor/system-deps-6.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tao/tao-0.34.5.crate", + "sha256": "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7", + "dest": "cargo/vendor/tao-0.34.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7\", \"files\": {}}", + "dest": "cargo/vendor/tao-0.34.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tao-macros/tao-macros-0.1.3.crate", + "sha256": "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd", + "dest": "cargo/vendor/tao-macros-0.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd\", \"files\": {}}", + "dest": "cargo/vendor/tao-macros-0.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tap/tap-1.0.1.crate", + "sha256": "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369", + "dest": "cargo/vendor/tap-1.0.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369\", \"files\": {}}", + "dest": "cargo/vendor/tap-1.0.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tar/tar-0.4.44.crate", + "sha256": "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a", + "dest": "cargo/vendor/tar-0.4.44" + }, + { + "type": "inline", + "contents": "{\"package\": \"1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a\", \"files\": {}}", + "dest": "cargo/vendor/tar-0.4.44", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/target-lexicon/target-lexicon-0.12.16.crate", + "sha256": "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1", + "dest": "cargo/vendor/target-lexicon-0.12.16" + }, + { + "type": "inline", + "contents": "{\"package\": \"61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1\", \"files\": {}}", + "dest": "cargo/vendor/target-lexicon-0.12.16", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri/tauri-2.10.2.crate", + "sha256": "463ae8677aa6d0f063a900b9c41ecd4ac2b7ca82f0b058cc4491540e55b20129", + "dest": "cargo/vendor/tauri-2.10.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"463ae8677aa6d0f063a900b9c41ecd4ac2b7ca82f0b058cc4491540e55b20129\", \"files\": {}}", + "dest": "cargo/vendor/tauri-2.10.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-build/tauri-build-2.5.5.crate", + "sha256": "ca7bd893329425df750813e95bd2b643d5369d929438da96d5bbb7cc2c918f74", + "dest": "cargo/vendor/tauri-build-2.5.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"ca7bd893329425df750813e95bd2b643d5369d929438da96d5bbb7cc2c918f74\", \"files\": {}}", + "dest": "cargo/vendor/tauri-build-2.5.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-codegen/tauri-codegen-2.5.4.crate", + "sha256": "aac423e5859d9f9ccdd32e3cf6a5866a15bedbf25aa6630bcb2acde9468f6ae3", + "dest": "cargo/vendor/tauri-codegen-2.5.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"aac423e5859d9f9ccdd32e3cf6a5866a15bedbf25aa6630bcb2acde9468f6ae3\", \"files\": {}}", + "dest": "cargo/vendor/tauri-codegen-2.5.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-macros/tauri-macros-2.5.4.crate", + "sha256": "1b6a1bd2861ff0c8766b1d38b32a6a410f6dc6532d4ef534c47cfb2236092f59", + "dest": "cargo/vendor/tauri-macros-2.5.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"1b6a1bd2861ff0c8766b1d38b32a6a410f6dc6532d4ef534c47cfb2236092f59\", \"files\": {}}", + "dest": "cargo/vendor/tauri-macros-2.5.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin/tauri-plugin-2.5.3.crate", + "sha256": "692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f", + "dest": "cargo/vendor/tauri-plugin-2.5.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-2.5.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-clipboard-manager/tauri-plugin-clipboard-manager-2.3.2.crate", + "sha256": "206dc20af4ed210748ba945c2774e60fd0acd52b9a73a028402caf809e9b6ecf", + "dest": "cargo/vendor/tauri-plugin-clipboard-manager-2.3.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"206dc20af4ed210748ba945c2774e60fd0acd52b9a73a028402caf809e9b6ecf\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-clipboard-manager-2.3.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-dialog/tauri-plugin-dialog-2.6.0.crate", + "sha256": "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b", + "dest": "cargo/vendor/tauri-plugin-dialog-2.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-dialog-2.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-fs/tauri-plugin-fs-2.4.5.crate", + "sha256": "ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804", + "dest": "cargo/vendor/tauri-plugin-fs-2.4.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-fs-2.4.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-log/tauri-plugin-log-2.8.0.crate", + "sha256": "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93", + "dest": "cargo/vendor/tauri-plugin-log-2.8.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-log-2.8.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-opener/tauri-plugin-opener-2.5.3.crate", + "sha256": "fc624469b06f59f5a29f874bbc61a2ed737c0f9c23ef09855a292c389c42e83f", + "dest": "cargo/vendor/tauri-plugin-opener-2.5.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"fc624469b06f59f5a29f874bbc61a2ed737c0f9c23ef09855a292c389c42e83f\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-opener-2.5.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-plugin-updater/tauri-plugin-updater-2.10.0.crate", + "sha256": "3fe8e9bebd88fc222938ffdfbdcfa0307081423bd01e3252fc337d8bde81fc61", + "dest": "cargo/vendor/tauri-plugin-updater-2.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3fe8e9bebd88fc222938ffdfbdcfa0307081423bd01e3252fc337d8bde81fc61\", \"files\": {}}", + "dest": "cargo/vendor/tauri-plugin-updater-2.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-runtime/tauri-runtime-2.10.0.crate", + "sha256": "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651", + "dest": "cargo/vendor/tauri-runtime-2.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651\", \"files\": {}}", + "dest": "cargo/vendor/tauri-runtime-2.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-runtime-wry/tauri-runtime-wry-2.10.0.crate", + "sha256": "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314", + "dest": "cargo/vendor/tauri-runtime-wry-2.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314\", \"files\": {}}", + "dest": "cargo/vendor/tauri-runtime-wry-2.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-utils/tauri-utils-2.8.2.crate", + "sha256": "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e", + "dest": "cargo/vendor/tauri-utils-2.8.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e\", \"files\": {}}", + "dest": "cargo/vendor/tauri-utils-2.8.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tauri-winres/tauri-winres-0.3.5.crate", + "sha256": "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0", + "dest": "cargo/vendor/tauri-winres-0.3.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0\", \"files\": {}}", + "dest": "cargo/vendor/tauri-winres-0.3.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tempfile/tempfile-3.26.0.crate", + "sha256": "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0", + "dest": "cargo/vendor/tempfile-3.26.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0\", \"files\": {}}", + "dest": "cargo/vendor/tempfile-3.26.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tendril/tendril-0.4.3.crate", + "sha256": "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0", + "dest": "cargo/vendor/tendril-0.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0\", \"files\": {}}", + "dest": "cargo/vendor/tendril-0.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/thiserror/thiserror-1.0.69.crate", + "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52", + "dest": "cargo/vendor/thiserror-1.0.69" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52\", \"files\": {}}", + "dest": "cargo/vendor/thiserror-1.0.69", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/thiserror/thiserror-2.0.18.crate", + "sha256": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4", + "dest": "cargo/vendor/thiserror-2.0.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4\", \"files\": {}}", + "dest": "cargo/vendor/thiserror-2.0.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/thiserror-impl/thiserror-impl-1.0.69.crate", + "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1", + "dest": "cargo/vendor/thiserror-impl-1.0.69" + }, + { + "type": "inline", + "contents": "{\"package\": \"4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1\", \"files\": {}}", + "dest": "cargo/vendor/thiserror-impl-1.0.69", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/thiserror-impl/thiserror-impl-2.0.18.crate", + "sha256": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5", + "dest": "cargo/vendor/thiserror-impl-2.0.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5\", \"files\": {}}", + "dest": "cargo/vendor/thiserror-impl-2.0.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tiff/tiff-0.10.3.crate", + "sha256": "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f", + "dest": "cargo/vendor/tiff-0.10.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f\", \"files\": {}}", + "dest": "cargo/vendor/tiff-0.10.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/time/time-0.3.47.crate", + "sha256": "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c", + "dest": "cargo/vendor/time-0.3.47" + }, + { + "type": "inline", + "contents": "{\"package\": \"743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c\", \"files\": {}}", + "dest": "cargo/vendor/time-0.3.47", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/time-core/time-core-0.1.8.crate", + "sha256": "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca", + "dest": "cargo/vendor/time-core-0.1.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca\", \"files\": {}}", + "dest": "cargo/vendor/time-core-0.1.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/time-macros/time-macros-0.2.27.crate", + "sha256": "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215", + "dest": "cargo/vendor/time-macros-0.2.27" + }, + { + "type": "inline", + "contents": "{\"package\": \"2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215\", \"files\": {}}", + "dest": "cargo/vendor/time-macros-0.2.27", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tinystr/tinystr-0.8.2.crate", + "sha256": "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869", + "dest": "cargo/vendor/tinystr-0.8.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869\", \"files\": {}}", + "dest": "cargo/vendor/tinystr-0.8.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tinyvec/tinyvec-1.10.0.crate", + "sha256": "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa", + "dest": "cargo/vendor/tinyvec-1.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa\", \"files\": {}}", + "dest": "cargo/vendor/tinyvec-1.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tinyvec_macros/tinyvec_macros-0.1.1.crate", + "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20", + "dest": "cargo/vendor/tinyvec_macros-0.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\", \"files\": {}}", + "dest": "cargo/vendor/tinyvec_macros-0.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tls_codec/tls_codec-0.4.2.crate", + "sha256": "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b", + "dest": "cargo/vendor/tls_codec-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b\", \"files\": {}}", + "dest": "cargo/vendor/tls_codec-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tls_codec_derive/tls_codec_derive-0.4.2.crate", + "sha256": "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd", + "dest": "cargo/vendor/tls_codec_derive-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd\", \"files\": {}}", + "dest": "cargo/vendor/tls_codec_derive-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio/tokio-1.50.0.crate", + "sha256": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d", + "dest": "cargo/vendor/tokio-1.50.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d\", \"files\": {}}", + "dest": "cargo/vendor/tokio-1.50.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-macros/tokio-macros-2.6.1.crate", + "sha256": "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c", + "dest": "cargo/vendor/tokio-macros-2.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c\", \"files\": {}}", + "dest": "cargo/vendor/tokio-macros-2.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-postgres/tokio-postgres-0.7.16.crate", + "sha256": "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42", + "dest": "cargo/vendor/tokio-postgres-0.7.16" + }, + { + "type": "inline", + "contents": "{\"package\": \"dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42\", \"files\": {}}", + "dest": "cargo/vendor/tokio-postgres-0.7.16", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-postgres-rustls/tokio-postgres-rustls-0.13.0.crate", + "sha256": "27d684bad428a0f2481f42241f821db42c54e2dc81d8c00db8536c506b0a0144", + "dest": "cargo/vendor/tokio-postgres-rustls-0.13.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"27d684bad428a0f2481f42241f821db42c54e2dc81d8c00db8536c506b0a0144\", \"files\": {}}", + "dest": "cargo/vendor/tokio-postgres-rustls-0.13.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-rustls/tokio-rustls-0.26.4.crate", + "sha256": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61", + "dest": "cargo/vendor/tokio-rustls-0.26.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61\", \"files\": {}}", + "dest": "cargo/vendor/tokio-rustls-0.26.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-stream/tokio-stream-0.1.18.crate", + "sha256": "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70", + "dest": "cargo/vendor/tokio-stream-0.1.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70\", \"files\": {}}", + "dest": "cargo/vendor/tokio-stream-0.1.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tokio-util/tokio-util-0.7.18.crate", + "sha256": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098", + "dest": "cargo/vendor/tokio-util-0.7.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098\", \"files\": {}}", + "dest": "cargo/vendor/tokio-util-0.7.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml/toml-0.8.2.crate", + "sha256": "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d", + "dest": "cargo/vendor/toml-0.8.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d\", \"files\": {}}", + "dest": "cargo/vendor/toml-0.8.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml/toml-0.9.12+spec-1.1.0.crate", + "sha256": "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863", + "dest": "cargo/vendor/toml-0.9.12+spec-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863\", \"files\": {}}", + "dest": "cargo/vendor/toml-0.9.12+spec-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_datetime/toml_datetime-0.6.3.crate", + "sha256": "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b", + "dest": "cargo/vendor/toml_datetime-0.6.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b\", \"files\": {}}", + "dest": "cargo/vendor/toml_datetime-0.6.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_datetime/toml_datetime-0.7.5+spec-1.1.0.crate", + "sha256": "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347", + "dest": "cargo/vendor/toml_datetime-0.7.5+spec-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347\", \"files\": {}}", + "dest": "cargo/vendor/toml_datetime-0.7.5+spec-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_edit/toml_edit-0.19.15.crate", + "sha256": "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421", + "dest": "cargo/vendor/toml_edit-0.19.15" + }, + { + "type": "inline", + "contents": "{\"package\": \"1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421\", \"files\": {}}", + "dest": "cargo/vendor/toml_edit-0.19.15", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_edit/toml_edit-0.20.2.crate", + "sha256": "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338", + "dest": "cargo/vendor/toml_edit-0.20.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338\", \"files\": {}}", + "dest": "cargo/vendor/toml_edit-0.20.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_edit/toml_edit-0.23.10+spec-1.0.0.crate", + "sha256": "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269", + "dest": "cargo/vendor/toml_edit-0.23.10+spec-1.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269\", \"files\": {}}", + "dest": "cargo/vendor/toml_edit-0.23.10+spec-1.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_parser/toml_parser-1.0.9+spec-1.1.0.crate", + "sha256": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4", + "dest": "cargo/vendor/toml_parser-1.0.9+spec-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4\", \"files\": {}}", + "dest": "cargo/vendor/toml_parser-1.0.9+spec-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/toml_writer/toml_writer-1.0.6+spec-1.1.0.crate", + "sha256": "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607", + "dest": "cargo/vendor/toml_writer-1.0.6+spec-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607\", \"files\": {}}", + "dest": "cargo/vendor/toml_writer-1.0.6+spec-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tower/tower-0.5.3.crate", + "sha256": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4", + "dest": "cargo/vendor/tower-0.5.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4\", \"files\": {}}", + "dest": "cargo/vendor/tower-0.5.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tower-http/tower-http-0.6.8.crate", + "sha256": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8", + "dest": "cargo/vendor/tower-http-0.6.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8\", \"files\": {}}", + "dest": "cargo/vendor/tower-http-0.6.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tower-layer/tower-layer-0.3.3.crate", + "sha256": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e", + "dest": "cargo/vendor/tower-layer-0.3.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e\", \"files\": {}}", + "dest": "cargo/vendor/tower-layer-0.3.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tower-service/tower-service-0.3.3.crate", + "sha256": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3", + "dest": "cargo/vendor/tower-service-0.3.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3\", \"files\": {}}", + "dest": "cargo/vendor/tower-service-0.3.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tracing/tracing-0.1.44.crate", + "sha256": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100", + "dest": "cargo/vendor/tracing-0.1.44" + }, + { + "type": "inline", + "contents": "{\"package\": \"63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100\", \"files\": {}}", + "dest": "cargo/vendor/tracing-0.1.44", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tracing-attributes/tracing-attributes-0.1.31.crate", + "sha256": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da", + "dest": "cargo/vendor/tracing-attributes-0.1.31" + }, + { + "type": "inline", + "contents": "{\"package\": \"7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da\", \"files\": {}}", + "dest": "cargo/vendor/tracing-attributes-0.1.31", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tracing-core/tracing-core-0.1.36.crate", + "sha256": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a", + "dest": "cargo/vendor/tracing-core-0.1.36" + }, + { + "type": "inline", + "contents": "{\"package\": \"db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a\", \"files\": {}}", + "dest": "cargo/vendor/tracing-core-0.1.36", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tray-icon/tray-icon-0.21.3.crate", + "sha256": "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c", + "dest": "cargo/vendor/tray-icon-0.21.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c\", \"files\": {}}", + "dest": "cargo/vendor/tray-icon-0.21.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/tree_magic_mini/tree_magic_mini-3.2.2.crate", + "sha256": "b8765b90061cba6c22b5831f675da109ae5561588290f9fa2317adab2714d5a6", + "dest": "cargo/vendor/tree_magic_mini-3.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8765b90061cba6c22b5831f675da109ae5561588290f9fa2317adab2714d5a6\", \"files\": {}}", + "dest": "cargo/vendor/tree_magic_mini-3.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/try-lock/try-lock-0.2.5.crate", + "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b", + "dest": "cargo/vendor/try-lock-0.2.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b\", \"files\": {}}", + "dest": "cargo/vendor/try-lock-0.2.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/typeid/typeid-1.0.3.crate", + "sha256": "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c", + "dest": "cargo/vendor/typeid-1.0.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c\", \"files\": {}}", + "dest": "cargo/vendor/typeid-1.0.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/typenum/typenum-1.19.0.crate", + "sha256": "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb", + "dest": "cargo/vendor/typenum-1.19.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb\", \"files\": {}}", + "dest": "cargo/vendor/typenum-1.19.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/uds_windows/uds_windows-1.1.0.crate", + "sha256": "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9", + "dest": "cargo/vendor/uds_windows-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9\", \"files\": {}}", + "dest": "cargo/vendor/uds_windows-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/ulid/ulid-1.2.1.crate", + "sha256": "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe", + "dest": "cargo/vendor/ulid-1.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe\", \"files\": {}}", + "dest": "cargo/vendor/ulid-1.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unic-char-property/unic-char-property-0.9.0.crate", + "sha256": "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221", + "dest": "cargo/vendor/unic-char-property-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221\", \"files\": {}}", + "dest": "cargo/vendor/unic-char-property-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unic-char-range/unic-char-range-0.9.0.crate", + "sha256": "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc", + "dest": "cargo/vendor/unic-char-range-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc\", \"files\": {}}", + "dest": "cargo/vendor/unic-char-range-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unic-common/unic-common-0.9.0.crate", + "sha256": "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc", + "dest": "cargo/vendor/unic-common-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc\", \"files\": {}}", + "dest": "cargo/vendor/unic-common-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unic-ucd-ident/unic-ucd-ident-0.9.0.crate", + "sha256": "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987", + "dest": "cargo/vendor/unic-ucd-ident-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987\", \"files\": {}}", + "dest": "cargo/vendor/unic-ucd-ident-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unic-ucd-version/unic-ucd-version-0.9.0.crate", + "sha256": "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4", + "dest": "cargo/vendor/unic-ucd-version-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4\", \"files\": {}}", + "dest": "cargo/vendor/unic-ucd-version-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-bidi/unicode-bidi-0.3.18.crate", + "sha256": "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5", + "dest": "cargo/vendor/unicode-bidi-0.3.18" + }, + { + "type": "inline", + "contents": "{\"package\": \"5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5\", \"files\": {}}", + "dest": "cargo/vendor/unicode-bidi-0.3.18", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-ident/unicode-ident-1.0.24.crate", + "sha256": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75", + "dest": "cargo/vendor/unicode-ident-1.0.24" + }, + { + "type": "inline", + "contents": "{\"package\": \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\", \"files\": {}}", + "dest": "cargo/vendor/unicode-ident-1.0.24", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-normalization/unicode-normalization-0.1.25.crate", + "sha256": "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8", + "dest": "cargo/vendor/unicode-normalization-0.1.25" + }, + { + "type": "inline", + "contents": "{\"package\": \"5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8\", \"files\": {}}", + "dest": "cargo/vendor/unicode-normalization-0.1.25", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-properties/unicode-properties-0.1.4.crate", + "sha256": "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d", + "dest": "cargo/vendor/unicode-properties-0.1.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d\", \"files\": {}}", + "dest": "cargo/vendor/unicode-properties-0.1.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-segmentation/unicode-segmentation-1.12.0.crate", + "sha256": "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493", + "dest": "cargo/vendor/unicode-segmentation-1.12.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493\", \"files\": {}}", + "dest": "cargo/vendor/unicode-segmentation-1.12.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unicode-xid/unicode-xid-0.2.6.crate", + "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853", + "dest": "cargo/vendor/unicode-xid-0.2.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\", \"files\": {}}", + "dest": "cargo/vendor/unicode-xid-0.2.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/universal-hash/universal-hash-0.5.1.crate", + "sha256": "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea", + "dest": "cargo/vendor/universal-hash-0.5.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\", \"files\": {}}", + "dest": "cargo/vendor/universal-hash-0.5.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/unsafe-libyaml/unsafe-libyaml-0.2.11.crate", + "sha256": "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861", + "dest": "cargo/vendor/unsafe-libyaml-0.2.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861\", \"files\": {}}", + "dest": "cargo/vendor/unsafe-libyaml-0.2.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/untrusted/untrusted-0.9.0.crate", + "sha256": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1", + "dest": "cargo/vendor/untrusted-0.9.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1\", \"files\": {}}", + "dest": "cargo/vendor/untrusted-0.9.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/url/url-2.5.8.crate", + "sha256": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed", + "dest": "cargo/vendor/url-2.5.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed\", \"files\": {}}", + "dest": "cargo/vendor/url-2.5.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/urlencoding/urlencoding-2.1.3.crate", + "sha256": "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da", + "dest": "cargo/vendor/urlencoding-2.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da\", \"files\": {}}", + "dest": "cargo/vendor/urlencoding-2.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/urlpattern/urlpattern-0.3.0.crate", + "sha256": "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d", + "dest": "cargo/vendor/urlpattern-0.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d\", \"files\": {}}", + "dest": "cargo/vendor/urlpattern-0.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/utf-8/utf-8-0.7.6.crate", + "sha256": "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9", + "dest": "cargo/vendor/utf-8-0.7.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9\", \"files\": {}}", + "dest": "cargo/vendor/utf-8-0.7.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/utf8-width/utf8-width-0.1.8.crate", + "sha256": "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091", + "dest": "cargo/vendor/utf8-width-0.1.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091\", \"files\": {}}", + "dest": "cargo/vendor/utf8-width-0.1.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/utf8_iter/utf8_iter-1.0.4.crate", + "sha256": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be", + "dest": "cargo/vendor/utf8_iter-1.0.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be\", \"files\": {}}", + "dest": "cargo/vendor/utf8_iter-1.0.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/utf8parse/utf8parse-0.2.2.crate", + "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821", + "dest": "cargo/vendor/utf8parse-0.2.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821\", \"files\": {}}", + "dest": "cargo/vendor/utf8parse-0.2.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/uuid/uuid-1.21.0.crate", + "sha256": "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb", + "dest": "cargo/vendor/uuid-1.21.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb\", \"files\": {}}", + "dest": "cargo/vendor/uuid-1.21.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/value-bag/value-bag-1.12.0.crate", + "sha256": "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0", + "dest": "cargo/vendor/value-bag-1.12.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0\", \"files\": {}}", + "dest": "cargo/vendor/value-bag-1.12.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/vcpkg/vcpkg-0.2.15.crate", + "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426", + "dest": "cargo/vendor/vcpkg-0.2.15" + }, + { + "type": "inline", + "contents": "{\"package\": \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\", \"files\": {}}", + "dest": "cargo/vendor/vcpkg-0.2.15", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/version-compare/version-compare-0.2.1.crate", + "sha256": "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e", + "dest": "cargo/vendor/version-compare-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e\", \"files\": {}}", + "dest": "cargo/vendor/version-compare-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/version_check/version_check-0.9.5.crate", + "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a", + "dest": "cargo/vendor/version_check-0.9.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\", \"files\": {}}", + "dest": "cargo/vendor/version_check-0.9.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/vswhom/vswhom-0.1.0.crate", + "sha256": "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b", + "dest": "cargo/vendor/vswhom-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b\", \"files\": {}}", + "dest": "cargo/vendor/vswhom-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/vswhom-sys/vswhom-sys-0.1.3.crate", + "sha256": "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150", + "dest": "cargo/vendor/vswhom-sys-0.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150\", \"files\": {}}", + "dest": "cargo/vendor/vswhom-sys-0.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/walkdir/walkdir-2.5.0.crate", + "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b", + "dest": "cargo/vendor/walkdir-2.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b\", \"files\": {}}", + "dest": "cargo/vendor/walkdir-2.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/want/want-0.3.1.crate", + "sha256": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e", + "dest": "cargo/vendor/want-0.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e\", \"files\": {}}", + "dest": "cargo/vendor/want-0.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasi/wasi-0.9.0+wasi-snapshot-preview1.crate", + "sha256": "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519", + "dest": "cargo/vendor/wasi-0.9.0+wasi-snapshot-preview1" + }, + { + "type": "inline", + "contents": "{\"package\": \"cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519\", \"files\": {}}", + "dest": "cargo/vendor/wasi-0.9.0+wasi-snapshot-preview1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasi/wasi-0.11.1+wasi-snapshot-preview1.crate", + "sha256": "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b", + "dest": "cargo/vendor/wasi-0.11.1+wasi-snapshot-preview1" + }, + { + "type": "inline", + "contents": "{\"package\": \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\", \"files\": {}}", + "dest": "cargo/vendor/wasi-0.11.1+wasi-snapshot-preview1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasi/wasi-0.14.7+wasi-0.2.4.crate", + "sha256": "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c", + "dest": "cargo/vendor/wasi-0.14.7+wasi-0.2.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c\", \"files\": {}}", + "dest": "cargo/vendor/wasi-0.14.7+wasi-0.2.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasip2/wasip2-1.0.2+wasi-0.2.9.crate", + "sha256": "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5", + "dest": "cargo/vendor/wasip2-1.0.2+wasi-0.2.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5\", \"files\": {}}", + "dest": "cargo/vendor/wasip2-1.0.2+wasi-0.2.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasip3/wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.crate", + "sha256": "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5", + "dest": "cargo/vendor/wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06" + }, + { + "type": "inline", + "contents": "{\"package\": \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\", \"files\": {}}", + "dest": "cargo/vendor/wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasite/wasite-0.1.0.crate", + "sha256": "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b", + "dest": "cargo/vendor/wasite-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b\", \"files\": {}}", + "dest": "cargo/vendor/wasite-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasite/wasite-1.0.2.crate", + "sha256": "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42", + "dest": "cargo/vendor/wasite-1.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42\", \"files\": {}}", + "dest": "cargo/vendor/wasite-1.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-bindgen/wasm-bindgen-0.2.114.crate", + "sha256": "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e", + "dest": "cargo/vendor/wasm-bindgen-0.2.114" + }, + { + "type": "inline", + "contents": "{\"package\": \"6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e\", \"files\": {}}", + "dest": "cargo/vendor/wasm-bindgen-0.2.114", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-bindgen-futures/wasm-bindgen-futures-0.4.64.crate", + "sha256": "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8", + "dest": "cargo/vendor/wasm-bindgen-futures-0.4.64" + }, + { + "type": "inline", + "contents": "{\"package\": \"e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8\", \"files\": {}}", + "dest": "cargo/vendor/wasm-bindgen-futures-0.4.64", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-bindgen-macro/wasm-bindgen-macro-0.2.114.crate", + "sha256": "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6", + "dest": "cargo/vendor/wasm-bindgen-macro-0.2.114" + }, + { + "type": "inline", + "contents": "{\"package\": \"18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6\", \"files\": {}}", + "dest": "cargo/vendor/wasm-bindgen-macro-0.2.114", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/wasm-bindgen-macro-support-0.2.114.crate", + "sha256": "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3", + "dest": "cargo/vendor/wasm-bindgen-macro-support-0.2.114" + }, + { + "type": "inline", + "contents": "{\"package\": \"03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3\", \"files\": {}}", + "dest": "cargo/vendor/wasm-bindgen-macro-support-0.2.114", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-bindgen-shared/wasm-bindgen-shared-0.2.114.crate", + "sha256": "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16", + "dest": "cargo/vendor/wasm-bindgen-shared-0.2.114" + }, + { + "type": "inline", + "contents": "{\"package\": \"75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16\", \"files\": {}}", + "dest": "cargo/vendor/wasm-bindgen-shared-0.2.114", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-encoder/wasm-encoder-0.244.0.crate", + "sha256": "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319", + "dest": "cargo/vendor/wasm-encoder-0.244.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\", \"files\": {}}", + "dest": "cargo/vendor/wasm-encoder-0.244.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-metadata/wasm-metadata-0.244.0.crate", + "sha256": "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909", + "dest": "cargo/vendor/wasm-metadata-0.244.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\", \"files\": {}}", + "dest": "cargo/vendor/wasm-metadata-0.244.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasm-streams/wasm-streams-0.5.0.crate", + "sha256": "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb", + "dest": "cargo/vendor/wasm-streams-0.5.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb\", \"files\": {}}", + "dest": "cargo/vendor/wasm-streams-0.5.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wasmparser/wasmparser-0.244.0.crate", + "sha256": "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe", + "dest": "cargo/vendor/wasmparser-0.244.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\", \"files\": {}}", + "dest": "cargo/vendor/wasmparser-0.244.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-backend/wayland-backend-0.3.12.crate", + "sha256": "fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9", + "dest": "cargo/vendor/wayland-backend-0.3.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9\", \"files\": {}}", + "dest": "cargo/vendor/wayland-backend-0.3.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-client/wayland-client-0.31.12.crate", + "sha256": "b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec", + "dest": "cargo/vendor/wayland-client-0.31.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec\", \"files\": {}}", + "dest": "cargo/vendor/wayland-client-0.31.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-protocols/wayland-protocols-0.32.10.crate", + "sha256": "baeda9ffbcfc8cd6ddaade385eaf2393bd2115a69523c735f12242353c3df4f3", + "dest": "cargo/vendor/wayland-protocols-0.32.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"baeda9ffbcfc8cd6ddaade385eaf2393bd2115a69523c735f12242353c3df4f3\", \"files\": {}}", + "dest": "cargo/vendor/wayland-protocols-0.32.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-protocols-wlr/wayland-protocols-wlr-0.3.10.crate", + "sha256": "e9597cdf02cf0c34cd5823786dce6b5ae8598f05c2daf5621b6e178d4f7345f3", + "dest": "cargo/vendor/wayland-protocols-wlr-0.3.10" + }, + { + "type": "inline", + "contents": "{\"package\": \"e9597cdf02cf0c34cd5823786dce6b5ae8598f05c2daf5621b6e178d4f7345f3\", \"files\": {}}", + "dest": "cargo/vendor/wayland-protocols-wlr-0.3.10", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-scanner/wayland-scanner-0.31.8.crate", + "sha256": "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3", + "dest": "cargo/vendor/wayland-scanner-0.31.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3\", \"files\": {}}", + "dest": "cargo/vendor/wayland-scanner-0.31.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wayland-sys/wayland-sys-0.31.8.crate", + "sha256": "1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd", + "dest": "cargo/vendor/wayland-sys-0.31.8" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd\", \"files\": {}}", + "dest": "cargo/vendor/wayland-sys-0.31.8", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/web-sys/web-sys-0.3.91.crate", + "sha256": "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9", + "dest": "cargo/vendor/web-sys-0.3.91" + }, + { + "type": "inline", + "contents": "{\"package\": \"854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9\", \"files\": {}}", + "dest": "cargo/vendor/web-sys-0.3.91", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/web-time/web-time-1.1.0.crate", + "sha256": "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb", + "dest": "cargo/vendor/web-time-1.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb\", \"files\": {}}", + "dest": "cargo/vendor/web-time-1.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webkit2gtk/webkit2gtk-2.0.2.crate", + "sha256": "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793", + "dest": "cargo/vendor/webkit2gtk-2.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793\", \"files\": {}}", + "dest": "cargo/vendor/webkit2gtk-2.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webkit2gtk-sys/webkit2gtk-sys-2.0.2.crate", + "sha256": "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5", + "dest": "cargo/vendor/webkit2gtk-sys-2.0.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5\", \"files\": {}}", + "dest": "cargo/vendor/webkit2gtk-sys-2.0.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webpki-root-certs/webpki-root-certs-1.0.6.crate", + "sha256": "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca", + "dest": "cargo/vendor/webpki-root-certs-1.0.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca\", \"files\": {}}", + "dest": "cargo/vendor/webpki-root-certs-1.0.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webview2-com/webview2-com-0.38.2.crate", + "sha256": "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a", + "dest": "cargo/vendor/webview2-com-0.38.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a\", \"files\": {}}", + "dest": "cargo/vendor/webview2-com-0.38.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webview2-com-macros/webview2-com-macros-0.8.1.crate", + "sha256": "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54", + "dest": "cargo/vendor/webview2-com-macros-0.8.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54\", \"files\": {}}", + "dest": "cargo/vendor/webview2-com-macros-0.8.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/webview2-com-sys/webview2-com-sys-0.38.2.crate", + "sha256": "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c", + "dest": "cargo/vendor/webview2-com-sys-0.38.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c\", \"files\": {}}", + "dest": "cargo/vendor/webview2-com-sys-0.38.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/weezl/weezl-0.1.12.crate", + "sha256": "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88", + "dest": "cargo/vendor/weezl-0.1.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88\", \"files\": {}}", + "dest": "cargo/vendor/weezl-0.1.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/whoami/whoami-1.6.1.crate", + "sha256": "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d", + "dest": "cargo/vendor/whoami-1.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d\", \"files\": {}}", + "dest": "cargo/vendor/whoami-1.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/whoami/whoami-2.1.1.crate", + "sha256": "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d", + "dest": "cargo/vendor/whoami-2.1.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d\", \"files\": {}}", + "dest": "cargo/vendor/whoami-2.1.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winapi/winapi-0.3.9.crate", + "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + "dest": "cargo/vendor/winapi-0.3.9" + }, + { + "type": "inline", + "contents": "{\"package\": \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\", \"files\": {}}", + "dest": "cargo/vendor/winapi-0.3.9", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/winapi-i686-pc-windows-gnu-0.4.0.crate", + "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + "dest": "cargo/vendor/winapi-i686-pc-windows-gnu-0.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\", \"files\": {}}", + "dest": "cargo/vendor/winapi-i686-pc-windows-gnu-0.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winapi-util/winapi-util-0.1.11.crate", + "sha256": "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22", + "dest": "cargo/vendor/winapi-util-0.1.11" + }, + { + "type": "inline", + "contents": "{\"package\": \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\", \"files\": {}}", + "dest": "cargo/vendor/winapi-util-0.1.11", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/winapi-x86_64-pc-windows-gnu-0.4.0.crate", + "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + "dest": "cargo/vendor/winapi-x86_64-pc-windows-gnu-0.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\", \"files\": {}}", + "dest": "cargo/vendor/winapi-x86_64-pc-windows-gnu-0.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/window-vibrancy/window-vibrancy-0.6.0.crate", + "sha256": "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c", + "dest": "cargo/vendor/window-vibrancy-0.6.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c\", \"files\": {}}", + "dest": "cargo/vendor/window-vibrancy-0.6.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows/windows-0.57.0.crate", + "sha256": "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143", + "dest": "cargo/vendor/windows-0.57.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143\", \"files\": {}}", + "dest": "cargo/vendor/windows-0.57.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows/windows-0.61.3.crate", + "sha256": "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893", + "dest": "cargo/vendor/windows-0.61.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893\", \"files\": {}}", + "dest": "cargo/vendor/windows-0.61.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-collections/windows-collections-0.2.0.crate", + "sha256": "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8", + "dest": "cargo/vendor/windows-collections-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8\", \"files\": {}}", + "dest": "cargo/vendor/windows-collections-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-core/windows-core-0.57.0.crate", + "sha256": "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d", + "dest": "cargo/vendor/windows-core-0.57.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d\", \"files\": {}}", + "dest": "cargo/vendor/windows-core-0.57.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-core/windows-core-0.61.2.crate", + "sha256": "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3", + "dest": "cargo/vendor/windows-core-0.61.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3\", \"files\": {}}", + "dest": "cargo/vendor/windows-core-0.61.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-core/windows-core-0.62.2.crate", + "sha256": "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb", + "dest": "cargo/vendor/windows-core-0.62.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb\", \"files\": {}}", + "dest": "cargo/vendor/windows-core-0.62.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-future/windows-future-0.2.1.crate", + "sha256": "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e", + "dest": "cargo/vendor/windows-future-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e\", \"files\": {}}", + "dest": "cargo/vendor/windows-future-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-implement/windows-implement-0.57.0.crate", + "sha256": "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7", + "dest": "cargo/vendor/windows-implement-0.57.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7\", \"files\": {}}", + "dest": "cargo/vendor/windows-implement-0.57.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-implement/windows-implement-0.60.2.crate", + "sha256": "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf", + "dest": "cargo/vendor/windows-implement-0.60.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf\", \"files\": {}}", + "dest": "cargo/vendor/windows-implement-0.60.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-interface/windows-interface-0.57.0.crate", + "sha256": "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7", + "dest": "cargo/vendor/windows-interface-0.57.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7\", \"files\": {}}", + "dest": "cargo/vendor/windows-interface-0.57.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-interface/windows-interface-0.59.3.crate", + "sha256": "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358", + "dest": "cargo/vendor/windows-interface-0.59.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358\", \"files\": {}}", + "dest": "cargo/vendor/windows-interface-0.59.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-link/windows-link-0.1.3.crate", + "sha256": "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a", + "dest": "cargo/vendor/windows-link-0.1.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a\", \"files\": {}}", + "dest": "cargo/vendor/windows-link-0.1.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-link/windows-link-0.2.1.crate", + "sha256": "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5", + "dest": "cargo/vendor/windows-link-0.2.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\", \"files\": {}}", + "dest": "cargo/vendor/windows-link-0.2.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-numerics/windows-numerics-0.2.0.crate", + "sha256": "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1", + "dest": "cargo/vendor/windows-numerics-0.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1\", \"files\": {}}", + "dest": "cargo/vendor/windows-numerics-0.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-registry/windows-registry-0.6.1.crate", + "sha256": "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720", + "dest": "cargo/vendor/windows-registry-0.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720\", \"files\": {}}", + "dest": "cargo/vendor/windows-registry-0.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-result/windows-result-0.1.2.crate", + "sha256": "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8", + "dest": "cargo/vendor/windows-result-0.1.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8\", \"files\": {}}", + "dest": "cargo/vendor/windows-result-0.1.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-result/windows-result-0.3.4.crate", + "sha256": "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6", + "dest": "cargo/vendor/windows-result-0.3.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6\", \"files\": {}}", + "dest": "cargo/vendor/windows-result-0.3.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-result/windows-result-0.4.1.crate", + "sha256": "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5", + "dest": "cargo/vendor/windows-result-0.4.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5\", \"files\": {}}", + "dest": "cargo/vendor/windows-result-0.4.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-strings/windows-strings-0.4.2.crate", + "sha256": "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57", + "dest": "cargo/vendor/windows-strings-0.4.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57\", \"files\": {}}", + "dest": "cargo/vendor/windows-strings-0.4.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-strings/windows-strings-0.5.1.crate", + "sha256": "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091", + "dest": "cargo/vendor/windows-strings-0.5.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091\", \"files\": {}}", + "dest": "cargo/vendor/windows-strings-0.5.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.45.0.crate", + "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0", + "dest": "cargo/vendor/windows-sys-0.45.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.45.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.48.0.crate", + "sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", + "dest": "cargo/vendor/windows-sys-0.48.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.48.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.52.0.crate", + "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d", + "dest": "cargo/vendor/windows-sys-0.52.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.52.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.59.0.crate", + "sha256": "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b", + "dest": "cargo/vendor/windows-sys-0.59.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.59.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.60.2.crate", + "sha256": "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb", + "dest": "cargo/vendor/windows-sys-0.60.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.60.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-sys/windows-sys-0.61.2.crate", + "sha256": "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc", + "dest": "cargo/vendor/windows-sys-0.61.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\", \"files\": {}}", + "dest": "cargo/vendor/windows-sys-0.61.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.42.2.crate", + "sha256": "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071", + "dest": "cargo/vendor/windows-targets-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\", \"files\": {}}", + "dest": "cargo/vendor/windows-targets-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.48.5.crate", + "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c", + "dest": "cargo/vendor/windows-targets-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c\", \"files\": {}}", + "dest": "cargo/vendor/windows-targets-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.52.6.crate", + "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973", + "dest": "cargo/vendor/windows-targets-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973\", \"files\": {}}", + "dest": "cargo/vendor/windows-targets-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-targets/windows-targets-0.53.5.crate", + "sha256": "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3", + "dest": "cargo/vendor/windows-targets-0.53.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3\", \"files\": {}}", + "dest": "cargo/vendor/windows-targets-0.53.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-threading/windows-threading-0.1.0.crate", + "sha256": "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6", + "dest": "cargo/vendor/windows-threading-0.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6\", \"files\": {}}", + "dest": "cargo/vendor/windows-threading-0.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows-version/windows-version-0.1.7.crate", + "sha256": "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631", + "dest": "cargo/vendor/windows-version-0.1.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631\", \"files\": {}}", + "dest": "cargo/vendor/windows-version-0.1.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.42.2.crate", + "sha256": "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.48.5.crate", + "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.52.6.crate", + "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/windows_aarch64_gnullvm-0.53.1.crate", + "sha256": "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_gnullvm-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.42.2.crate", + "sha256": "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43", + "dest": "cargo/vendor/windows_aarch64_msvc-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_msvc-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.48.5.crate", + "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc", + "dest": "cargo/vendor/windows_aarch64_msvc-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_msvc-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.52.6.crate", + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469", + "dest": "cargo/vendor/windows_aarch64_msvc-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_msvc-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/windows_aarch64_msvc-0.53.1.crate", + "sha256": "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006", + "dest": "cargo/vendor/windows_aarch64_msvc-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006\", \"files\": {}}", + "dest": "cargo/vendor/windows_aarch64_msvc-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.42.2.crate", + "sha256": "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f", + "dest": "cargo/vendor/windows_i686_gnu-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnu-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.48.5.crate", + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e", + "dest": "cargo/vendor/windows_i686_gnu-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnu-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.52.6.crate", + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b", + "dest": "cargo/vendor/windows_i686_gnu-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnu-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnu/windows_i686_gnu-0.53.1.crate", + "sha256": "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3", + "dest": "cargo/vendor/windows_i686_gnu-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnu-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnullvm/windows_i686_gnullvm-0.52.6.crate", + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66", + "dest": "cargo/vendor/windows_i686_gnullvm-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnullvm-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_gnullvm/windows_i686_gnullvm-0.53.1.crate", + "sha256": "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c", + "dest": "cargo/vendor/windows_i686_gnullvm-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_gnullvm-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.42.2.crate", + "sha256": "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060", + "dest": "cargo/vendor/windows_i686_msvc-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_msvc-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.48.5.crate", + "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406", + "dest": "cargo/vendor/windows_i686_msvc-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_msvc-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.52.6.crate", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66", + "dest": "cargo/vendor/windows_i686_msvc-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_msvc-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_i686_msvc/windows_i686_msvc-0.53.1.crate", + "sha256": "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2", + "dest": "cargo/vendor/windows_i686_msvc-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2\", \"files\": {}}", + "dest": "cargo/vendor/windows_i686_msvc-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.42.2.crate", + "sha256": "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36", + "dest": "cargo/vendor/windows_x86_64_gnu-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnu-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.48.5.crate", + "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e", + "dest": "cargo/vendor/windows_x86_64_gnu-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnu-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.52.6.crate", + "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78", + "dest": "cargo/vendor/windows_x86_64_gnu-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnu-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/windows_x86_64_gnu-0.53.1.crate", + "sha256": "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499", + "dest": "cargo/vendor/windows_x86_64_gnu-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnu-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.42.2.crate", + "sha256": "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.48.5.crate", + "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.52.6.crate", + "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/windows_x86_64_gnullvm-0.53.1.crate", + "sha256": "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_gnullvm-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.42.2.crate", + "sha256": "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0", + "dest": "cargo/vendor/windows_x86_64_msvc-0.42.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_msvc-0.42.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.48.5.crate", + "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538", + "dest": "cargo/vendor/windows_x86_64_msvc-0.48.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_msvc-0.48.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.52.6.crate", + "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec", + "dest": "cargo/vendor/windows_x86_64_msvc-0.52.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_msvc-0.52.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/windows_x86_64_msvc-0.53.1.crate", + "sha256": "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650", + "dest": "cargo/vendor/windows_x86_64_msvc-0.53.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650\", \"files\": {}}", + "dest": "cargo/vendor/windows_x86_64_msvc-0.53.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winnow/winnow-0.5.40.crate", + "sha256": "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876", + "dest": "cargo/vendor/winnow-0.5.40" + }, + { + "type": "inline", + "contents": "{\"package\": \"f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876\", \"files\": {}}", + "dest": "cargo/vendor/winnow-0.5.40", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winnow/winnow-0.7.14.crate", + "sha256": "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829", + "dest": "cargo/vendor/winnow-0.7.14" + }, + { + "type": "inline", + "contents": "{\"package\": \"5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829\", \"files\": {}}", + "dest": "cargo/vendor/winnow-0.7.14", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/winreg/winreg-0.55.0.crate", + "sha256": "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97", + "dest": "cargo/vendor/winreg-0.55.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97\", \"files\": {}}", + "dest": "cargo/vendor/winreg-0.55.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-bindgen/wit-bindgen-0.51.0.crate", + "sha256": "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5", + "dest": "cargo/vendor/wit-bindgen-0.51.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\", \"files\": {}}", + "dest": "cargo/vendor/wit-bindgen-0.51.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-bindgen-core/wit-bindgen-core-0.51.0.crate", + "sha256": "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc", + "dest": "cargo/vendor/wit-bindgen-core-0.51.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\", \"files\": {}}", + "dest": "cargo/vendor/wit-bindgen-core-0.51.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-bindgen-rust/wit-bindgen-rust-0.51.0.crate", + "sha256": "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21", + "dest": "cargo/vendor/wit-bindgen-rust-0.51.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\", \"files\": {}}", + "dest": "cargo/vendor/wit-bindgen-rust-0.51.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-bindgen-rust-macro/wit-bindgen-rust-macro-0.51.0.crate", + "sha256": "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a", + "dest": "cargo/vendor/wit-bindgen-rust-macro-0.51.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\", \"files\": {}}", + "dest": "cargo/vendor/wit-bindgen-rust-macro-0.51.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-component/wit-component-0.244.0.crate", + "sha256": "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2", + "dest": "cargo/vendor/wit-component-0.244.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\", \"files\": {}}", + "dest": "cargo/vendor/wit-component-0.244.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wit-parser/wit-parser-0.244.0.crate", + "sha256": "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736", + "dest": "cargo/vendor/wit-parser-0.244.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\", \"files\": {}}", + "dest": "cargo/vendor/wit-parser-0.244.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wl-clipboard-rs/wl-clipboard-rs-0.9.3.crate", + "sha256": "e9651471a32e87d96ef3a127715382b2d11cc7c8bb9822ded8a7cc94072eb0a3", + "dest": "cargo/vendor/wl-clipboard-rs-0.9.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"e9651471a32e87d96ef3a127715382b2d11cc7c8bb9822ded8a7cc94072eb0a3\", \"files\": {}}", + "dest": "cargo/vendor/wl-clipboard-rs-0.9.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/writeable/writeable-0.6.2.crate", + "sha256": "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9", + "dest": "cargo/vendor/writeable-0.6.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9\", \"files\": {}}", + "dest": "cargo/vendor/writeable-0.6.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wry/wry-0.54.2.crate", + "sha256": "bb26159b420aa77684589a744ae9a9461a95395b848764ad12290a14d960a11a", + "dest": "cargo/vendor/wry-0.54.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"bb26159b420aa77684589a744ae9a9461a95395b848764ad12290a14d960a11a\", \"files\": {}}", + "dest": "cargo/vendor/wry-0.54.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/wyz/wyz-0.5.1.crate", + "sha256": "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed", + "dest": "cargo/vendor/wyz-0.5.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed\", \"files\": {}}", + "dest": "cargo/vendor/wyz-0.5.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/x11/x11-2.21.0.crate", + "sha256": "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e", + "dest": "cargo/vendor/x11-2.21.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e\", \"files\": {}}", + "dest": "cargo/vendor/x11-2.21.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/x11-dl/x11-dl-2.21.0.crate", + "sha256": "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f", + "dest": "cargo/vendor/x11-dl-2.21.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f\", \"files\": {}}", + "dest": "cargo/vendor/x11-dl-2.21.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/x11rb/x11rb-0.13.2.crate", + "sha256": "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414", + "dest": "cargo/vendor/x11rb-0.13.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414\", \"files\": {}}", + "dest": "cargo/vendor/x11rb-0.13.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/x11rb-protocol/x11rb-protocol-0.13.2.crate", + "sha256": "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd", + "dest": "cargo/vendor/x11rb-protocol-0.13.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd\", \"files\": {}}", + "dest": "cargo/vendor/x11rb-protocol-0.13.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/x509-cert/x509-cert-0.2.5.crate", + "sha256": "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94", + "dest": "cargo/vendor/x509-cert-0.2.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94\", \"files\": {}}", + "dest": "cargo/vendor/x509-cert-0.2.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/xattr/xattr-1.6.1.crate", + "sha256": "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156", + "dest": "cargo/vendor/xattr-1.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156\", \"files\": {}}", + "dest": "cargo/vendor/xattr-1.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/xdg-home/xdg-home-1.3.0.crate", + "sha256": "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6", + "dest": "cargo/vendor/xdg-home-1.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6\", \"files\": {}}", + "dest": "cargo/vendor/xdg-home-1.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/yasna/yasna-0.5.2.crate", + "sha256": "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd", + "dest": "cargo/vendor/yasna-0.5.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd\", \"files\": {}}", + "dest": "cargo/vendor/yasna-0.5.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/yoke/yoke-0.8.1.crate", + "sha256": "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954", + "dest": "cargo/vendor/yoke-0.8.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954\", \"files\": {}}", + "dest": "cargo/vendor/yoke-0.8.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/yoke-derive/yoke-derive-0.8.1.crate", + "sha256": "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d", + "dest": "cargo/vendor/yoke-derive-0.8.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d\", \"files\": {}}", + "dest": "cargo/vendor/yoke-derive-0.8.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus/zbus-4.4.0.crate", + "sha256": "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725", + "dest": "cargo/vendor/zbus-4.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725\", \"files\": {}}", + "dest": "cargo/vendor/zbus-4.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus/zbus-5.14.0.crate", + "sha256": "ca82f95dbd3943a40a53cfded6c2d0a2ca26192011846a1810c4256ef92c60bc", + "dest": "cargo/vendor/zbus-5.14.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"ca82f95dbd3943a40a53cfded6c2d0a2ca26192011846a1810c4256ef92c60bc\", \"files\": {}}", + "dest": "cargo/vendor/zbus-5.14.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus_macros/zbus_macros-4.4.0.crate", + "sha256": "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e", + "dest": "cargo/vendor/zbus_macros-4.4.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e\", \"files\": {}}", + "dest": "cargo/vendor/zbus_macros-4.4.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus_macros/zbus_macros-5.14.0.crate", + "sha256": "897e79616e84aac4b2c46e9132a4f63b93105d54fe8c0e8f6bffc21fa8d49222", + "dest": "cargo/vendor/zbus_macros-5.14.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"897e79616e84aac4b2c46e9132a4f63b93105d54fe8c0e8f6bffc21fa8d49222\", \"files\": {}}", + "dest": "cargo/vendor/zbus_macros-5.14.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus_names/zbus_names-3.0.0.crate", + "sha256": "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c", + "dest": "cargo/vendor/zbus_names-3.0.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c\", \"files\": {}}", + "dest": "cargo/vendor/zbus_names-3.0.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zbus_names/zbus_names-4.3.1.crate", + "sha256": "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f", + "dest": "cargo/vendor/zbus_names-4.3.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f\", \"files\": {}}", + "dest": "cargo/vendor/zbus_names-4.3.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerocopy/zerocopy-0.8.40.crate", + "sha256": "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5", + "dest": "cargo/vendor/zerocopy-0.8.40" + }, + { + "type": "inline", + "contents": "{\"package\": \"a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5\", \"files\": {}}", + "dest": "cargo/vendor/zerocopy-0.8.40", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerocopy-derive/zerocopy-derive-0.8.40.crate", + "sha256": "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953", + "dest": "cargo/vendor/zerocopy-derive-0.8.40" + }, + { + "type": "inline", + "contents": "{\"package\": \"f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953\", \"files\": {}}", + "dest": "cargo/vendor/zerocopy-derive-0.8.40", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerofrom/zerofrom-0.1.6.crate", + "sha256": "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5", + "dest": "cargo/vendor/zerofrom-0.1.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5\", \"files\": {}}", + "dest": "cargo/vendor/zerofrom-0.1.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerofrom-derive/zerofrom-derive-0.1.6.crate", + "sha256": "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502", + "dest": "cargo/vendor/zerofrom-derive-0.1.6" + }, + { + "type": "inline", + "contents": "{\"package\": \"d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502\", \"files\": {}}", + "dest": "cargo/vendor/zerofrom-derive-0.1.6", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zeroize/zeroize-1.8.2.crate", + "sha256": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0", + "dest": "cargo/vendor/zeroize-1.8.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\", \"files\": {}}", + "dest": "cargo/vendor/zeroize-1.8.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zeroize_derive/zeroize_derive-1.4.3.crate", + "sha256": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e", + "dest": "cargo/vendor/zeroize_derive-1.4.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e\", \"files\": {}}", + "dest": "cargo/vendor/zeroize_derive-1.4.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerotrie/zerotrie-0.2.3.crate", + "sha256": "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851", + "dest": "cargo/vendor/zerotrie-0.2.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851\", \"files\": {}}", + "dest": "cargo/vendor/zerotrie-0.2.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerovec/zerovec-0.11.5.crate", + "sha256": "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002", + "dest": "cargo/vendor/zerovec-0.11.5" + }, + { + "type": "inline", + "contents": "{\"package\": \"6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002\", \"files\": {}}", + "dest": "cargo/vendor/zerovec-0.11.5", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zerovec-derive/zerovec-derive-0.11.2.crate", + "sha256": "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3", + "dest": "cargo/vendor/zerovec-derive-0.11.2" + }, + { + "type": "inline", + "contents": "{\"package\": \"eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3\", \"files\": {}}", + "dest": "cargo/vendor/zerovec-derive-0.11.2", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zip/zip-4.6.1.crate", + "sha256": "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1", + "dest": "cargo/vendor/zip-4.6.1" + }, + { + "type": "inline", + "contents": "{\"package\": \"caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1\", \"files\": {}}", + "dest": "cargo/vendor/zip-4.6.1", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zlib-rs/zlib-rs-0.6.3.crate", + "sha256": "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513", + "dest": "cargo/vendor/zlib-rs-0.6.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513\", \"files\": {}}", + "dest": "cargo/vendor/zlib-rs-0.6.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zmij/zmij-1.0.21.crate", + "sha256": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa", + "dest": "cargo/vendor/zmij-1.0.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\", \"files\": {}}", + "dest": "cargo/vendor/zmij-1.0.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zopfli/zopfli-0.8.3.crate", + "sha256": "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249", + "dest": "cargo/vendor/zopfli-0.8.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249\", \"files\": {}}", + "dest": "cargo/vendor/zopfli-0.8.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zstd/zstd-0.13.3.crate", + "sha256": "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a", + "dest": "cargo/vendor/zstd-0.13.3" + }, + { + "type": "inline", + "contents": "{\"package\": \"e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a\", \"files\": {}}", + "dest": "cargo/vendor/zstd-0.13.3", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zstd-safe/zstd-safe-7.2.4.crate", + "sha256": "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d", + "dest": "cargo/vendor/zstd-safe-7.2.4" + }, + { + "type": "inline", + "contents": "{\"package\": \"8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d\", \"files\": {}}", + "dest": "cargo/vendor/zstd-safe-7.2.4", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zstd-sys/zstd-sys-2.0.16+zstd.1.5.7.crate", + "sha256": "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748", + "dest": "cargo/vendor/zstd-sys-2.0.16+zstd.1.5.7" + }, + { + "type": "inline", + "contents": "{\"package\": \"91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748\", \"files\": {}}", + "dest": "cargo/vendor/zstd-sys-2.0.16+zstd.1.5.7", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zune-core/zune-core-0.4.12.crate", + "sha256": "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a", + "dest": "cargo/vendor/zune-core-0.4.12" + }, + { + "type": "inline", + "contents": "{\"package\": \"3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a\", \"files\": {}}", + "dest": "cargo/vendor/zune-core-0.4.12", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zune-jpeg/zune-jpeg-0.4.21.crate", + "sha256": "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713", + "dest": "cargo/vendor/zune-jpeg-0.4.21" + }, + { + "type": "inline", + "contents": "{\"package\": \"29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713\", \"files\": {}}", + "dest": "cargo/vendor/zune-jpeg-0.4.21", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant/zvariant-4.2.0.crate", + "sha256": "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe", + "dest": "cargo/vendor/zvariant-4.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe\", \"files\": {}}", + "dest": "cargo/vendor/zvariant-4.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant/zvariant-5.10.0.crate", + "sha256": "5708299b21903bbe348e94729f22c49c55d04720a004aa350f1f9c122fd2540b", + "dest": "cargo/vendor/zvariant-5.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5708299b21903bbe348e94729f22c49c55d04720a004aa350f1f9c122fd2540b\", \"files\": {}}", + "dest": "cargo/vendor/zvariant-5.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant_derive/zvariant_derive-4.2.0.crate", + "sha256": "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449", + "dest": "cargo/vendor/zvariant_derive-4.2.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449\", \"files\": {}}", + "dest": "cargo/vendor/zvariant_derive-4.2.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant_derive/zvariant_derive-5.10.0.crate", + "sha256": "5b59b012ebe9c46656f9cc08d8da8b4c726510aef12559da3e5f1bf72780752c", + "dest": "cargo/vendor/zvariant_derive-5.10.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"5b59b012ebe9c46656f9cc08d8da8b4c726510aef12559da3e5f1bf72780752c\", \"files\": {}}", + "dest": "cargo/vendor/zvariant_derive-5.10.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant_utils/zvariant_utils-2.1.0.crate", + "sha256": "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340", + "dest": "cargo/vendor/zvariant_utils-2.1.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340\", \"files\": {}}", + "dest": "cargo/vendor/zvariant_utils-2.1.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "archive", + "archive-type": "tar-gzip", + "url": "https://static.crates.io/crates/zvariant_utils/zvariant_utils-3.3.0.crate", + "sha256": "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9", + "dest": "cargo/vendor/zvariant_utils-3.3.0" + }, + { + "type": "inline", + "contents": "{\"package\": \"f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9\", \"files\": {}}", + "dest": "cargo/vendor/zvariant_utils-3.3.0", + "dest-filename": ".cargo-checksum.json" + }, + { + "type": "inline", + "contents": "[source.vendored-sources]\ndirectory = \"cargo/vendor\"\n\n[source.crates-io]\nreplace-with = \"vendored-sources\"\n", + "dest": "cargo", + "dest-filename": "config" + } +] \ No newline at end of file diff --git a/flatpak/generate-sources.sh b/flatpak/generate-sources.sh new file mode 100755 index 00000000..407f25f9 --- /dev/null +++ b/flatpak/generate-sources.sh @@ -0,0 +1,49 @@ +#!/usr/bin/env bash +# +# Regenerate the vendored Flatpak sources for offline builds: +# - flatpak/cargo-sources.json (from src-tauri/Cargo.lock) +# - flatpak/node-sources.json (from pnpm-lock.yaml) +# +# Run this whenever Cargo.lock or pnpm-lock.yaml changes. Requires network +# access (it downloads crate/npm metadata) but the resulting build is fully +# offline, as Flathub requires. +# +# Usage: +# flatpak/generate-sources.sh +# +# Optional env: +# FLATPAK_BUILDER_TOOLS Path to an existing flatpak-builder-tools checkout +# (otherwise a shallow clone is made in a temp dir). +# +set -euo pipefail + +REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +OUT_DIR="$REPO_ROOT/flatpak" + +TOOLS_DIR="${FLATPAK_BUILDER_TOOLS:-}" +if [ -z "$TOOLS_DIR" ]; then + TOOLS_DIR="$(mktemp -d)/flatpak-builder-tools" + echo "==> Cloning flatpak-builder-tools into $TOOLS_DIR" + git clone --depth 1 https://github.com/flatpak/flatpak-builder-tools.git "$TOOLS_DIR" +fi + +echo "==> Setting up Python environment" +python3 -m venv "$TOOLS_DIR/.venv" +# shellcheck disable=SC1091 +source "$TOOLS_DIR/.venv/bin/activate" +pip install --quiet --upgrade pip +pip install --quiet "aiohttp>=3.9.5" "PyYAML>=6.0.2" "tomlkit>=0.13.3" + +echo "==> Generating cargo-sources.json" +python3 "$TOOLS_DIR/cargo/flatpak-cargo-generator.py" \ + "$REPO_ROOT/src-tauri/Cargo.lock" \ + -o "$OUT_DIR/cargo-sources.json" + +echo "==> Generating node-sources.json (pnpm)" +( cd "$TOOLS_DIR/node" && python3 -m flatpak_node_generator pnpm \ + "$REPO_ROOT/pnpm-lock.yaml" \ + -o "$OUT_DIR/node-sources.json" ) + +echo "==> Done. Updated:" +echo " $OUT_DIR/cargo-sources.json" +echo " $OUT_DIR/node-sources.json" diff --git a/flatpak/io.github.tabularisdb.Tabularis.desktop b/flatpak/io.github.tabularisdb.Tabularis.desktop new file mode 100644 index 00000000..d8e0ab2f --- /dev/null +++ b/flatpak/io.github.tabularisdb.Tabularis.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=Application +Name=Tabularis +GenericName=Database Client +Comment=Open-source database client with AI, notebooks, and plugins +Exec=tabularis %U +Icon=io.github.tabularisdb.Tabularis +Terminal=false +Categories=Development;Database; +Keywords=SQL;PostgreSQL;MySQL;MariaDB;SQLite;Database;Query;Notebook; +StartupNotify=true +StartupWMClass=tabularis diff --git a/flatpak/io.github.tabularisdb.Tabularis.metainfo.xml b/flatpak/io.github.tabularisdb.Tabularis.metainfo.xml new file mode 100644 index 00000000..a2311d59 --- /dev/null +++ b/flatpak/io.github.tabularisdb.Tabularis.metainfo.xml @@ -0,0 +1,67 @@ + + + io.github.tabularisdb.Tabularis + + Tabularis + Open-source database client with AI, notebooks, and plugins + + CC0-1.0 + Apache-2.0 + + + Tabularis + + + +

+ Tabularis is a free, open-source desktop database client for PostgreSQL, + MySQL/MariaDB, and SQLite. Built with Rust (Tauri v2) and React, it is + fast, lightweight, and designed for everyday SQL work. +

+

Key features:

+
    +
  • SQL Notebooks: combine SQL and Markdown cells with inline charts, cross-cell variables, parameters, and export to HTML/CSV/JSON.
  • +
  • AI-powered SQL assistant: generate SQL from natural language, explain queries, and get optimization suggestions. Works with OpenAI, Claude, Ollama (local), OpenRouter, and any OpenAI-compatible API.
  • +
  • Built-in MCP server for AI agent integration with Claude Desktop, Claude Code, Cursor, and Windsurf.
  • +
  • Visual query builder with drag-and-drop JOINs, filters, aggregates, and real-time SQL generation.
  • +
  • Plugin system to add any database driver (DuckDB, ClickHouse, MongoDB, and more) using JSON-RPC plugins in any language.
  • +
  • Monaco-based SQL editor with smart autocomplete, a high-performance virtualized data grid with inline editing, ER diagram visualization, SSH tunneling, system keychain credential storage, split view, SQL dump/import, 10+ themes, and multi-language support.
  • +
+
+ + io.github.tabularisdb.Tabularis.desktop + + https://tabularis.dev + https://github.com/TabularisDB/tabularis/issues + https://github.com/TabularisDB/tabularis + + + + https://tabularis.dev/img/overview.png + Overview of the Tabularis workspace + + + https://tabularis.dev/img/tabularis-split-view.png + Split view for working on multiple queries side by side + + + https://tabularis.dev/img/tabularis-query-history-sidebar.png + Query history sidebar + + + https://tabularis.dev/img/tabularis-favorites-sidebar.png + Favorites sidebar for quick access to saved queries + + + + + + + #020617 + #e2e8f0 + + + + + +
diff --git a/flatpak/io.github.tabularisdb.Tabularis.yml b/flatpak/io.github.tabularisdb.Tabularis.yml new file mode 100644 index 00000000..81d205b1 --- /dev/null +++ b/flatpak/io.github.tabularisdb.Tabularis.yml @@ -0,0 +1,94 @@ +id: io.github.tabularisdb.Tabularis +runtime: org.gnome.Platform +runtime-version: '50' +sdk: org.gnome.Sdk +sdk-extensions: + - org.freedesktop.Sdk.Extension.node22 + - org.freedesktop.Sdk.Extension.rust-stable +command: tabularis + +finish-args: + # Windowing / rendering + - --share=ipc + - --socket=wayland + - --socket=fallback-x11 + - --device=dri + # Network: database connections, AI providers, plugin registry, MCP server + - --share=network + # SSH tunneling via the user's ssh-agent + - --socket=ssh-auth + # System keychain for credential storage (libsecret) + - --talk-name=org.freedesktop.secrets + # Open SQLite files and import/export SQL dumps from the user's home + - --filesystem=home + # Avoid a black window with the WebKit DMABUF renderer on some GPUs/drivers + - --env=WEBKIT_DISABLE_DMABUF_RENDERER=1 + +cleanup: + - '*.a' + - '*.h' + - /include + - /lib/pkgconfig + - /lib/cmake + +modules: + - name: tabularis + buildsystem: simple + build-options: + append-path: /usr/lib/sdk/node22/bin:/usr/lib/sdk/rust-stable/bin + env: + # cargo reads cargo/config (vendored-sources) from CARGO_HOME + CARGO_HOME: /run/build/tabularis/cargo + CARGO_NET_OFFLINE: 'true' + # node-gyp headers are symlinked here by setup_sdk_node_headers.sh + XDG_CACHE_HOME: /run/build/tabularis/flatpak-node/cache + build-commands: + # 1. Install JS deps from the vendored pnpm store (fully offline) + - node pnpm/bin/pnpm.cjs install --offline --frozen-lockfile --ignore-scripts=false + # 2. Build the React frontend into ../dist (embedded by tauri-build) + - node pnpm/bin/pnpm.cjs run build + # 3. Compile the Rust binary against the vendored crate registry. + # `tauri/custom-protocol` is required for production builds: without it + # the app runs in dev mode and tries to load the dev server on + # localhost (blank window). `tauri build` sets this automatically; + # a raw `cargo build` must pass it explicitly. + - cargo build --offline --release --features tauri/custom-protocol + --manifest-path src-tauri/Cargo.toml + # 4. Install binary, desktop entry, AppStream metadata and icons + - install -Dm755 src-tauri/target/release/tabularis /app/bin/tabularis + - install -Dm644 io.github.tabularisdb.Tabularis.desktop + /app/share/applications/io.github.tabularisdb.Tabularis.desktop + - install -Dm644 io.github.tabularisdb.Tabularis.metainfo.xml + /app/share/metainfo/io.github.tabularisdb.Tabularis.metainfo.xml + - install -Dm644 src-tauri/icons/128x128.png + /app/share/icons/hicolor/128x128/apps/io.github.tabularisdb.Tabularis.png + - install -Dm644 src-tauri/icons/128x128@2x.png + /app/share/icons/hicolor/256x256/apps/io.github.tabularisdb.Tabularis.png + - install -Dm644 src-tauri/icons/icon.png + /app/share/icons/hicolor/512x512/apps/io.github.tabularisdb.Tabularis.png + sources: + # Application source — pinned to a tag + commit at release time. + # The flathub.yml workflow rewrites `tag` and `commit` on every release. + - type: git + url: https://github.com/TabularisDB/tabularis.git + tag: vVERSION + commit: COMMIT + + # Desktop entry + AppStream metadata (installed by build-commands) + - type: file + path: io.github.tabularisdb.Tabularis.desktop + - type: file + path: io.github.tabularisdb.Tabularis.metainfo.xml + + # pnpm itself (not shipped by the node SDK extension). Downloaded by + # flatpak-builder before the offline build; extracted to ./pnpm. + - type: archive + url: https://registry.npmjs.org/pnpm/-/pnpm-10.30.3.tgz + sha256: ff0a72140f6a6d66c0b284f6c9560aff605518e28c29aeac25fb262b74331588 + dest: pnpm + + # Vendored Rust crates (generated from src-tauri/Cargo.lock) + - cargo-sources.json + + # Vendored npm packages + pnpm store (generated from pnpm-lock.yaml) + - node-sources.json diff --git a/flatpak/node-sources.json b/flatpak/node-sources.json new file mode 100644 index 00000000..cd9c2e09 --- /dev/null +++ b/flatpak/node-sources.json @@ -0,0 +1,4609 @@ +[ + { + "type": "archive", + "url": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz", + "strip-components": 1, + "sha512": "681620708c57ff07799f6cacd3211219e60c185fa9bfa8340e166bdc6d591b88cc7ebb94f539758b667e5a78fdfca8c6cf59532c2728aea136be278f66a8f812", + "dest": "flatpak-node/cache/esbuild/.package/@esbuild/linux-arm@0.27.4", + "only-arches": [ + "arm" + ] + }, + { + "type": "archive", + "url": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz", + "strip-components": 1, + "sha512": "ee740eb6d773546b61d62cf9ee4c60f6e0b3e7b77140b1d6c68a4bea662e62d86884f2842b4bd4d02dcedb509c04ae8a0e591855c9c35d8d3df477020d777d74", + "dest": "flatpak-node/cache/esbuild/.package/@esbuild/linux-arm64@0.27.4", + "only-arches": [ + "aarch64" + ] + }, + { + "type": "archive", + "url": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz", + "strip-components": 1, + "sha512": "a0fb62c6d008ce0bf361c28140cfea67747ef5311477568d250bb41e11b2aadc7aa12eea4e9be385e21605b7ace3eaaed5b365a3657871b9084abf2aea044114", + "dest": "flatpak-node/cache/esbuild/.package/@esbuild/linux-ia32@0.27.4", + "only-arches": [ + "i386" + ] + }, + { + "type": "archive", + "url": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz", + "strip-components": 1, + "sha512": "4b9a8e5eb295f01404cc93d5c40c27af28b6f88ab9a41e348131084faf4140e36a47b247d443c8710fd48aff660a79f4e637dff6e9aaff99eacf196a4ce83d34", + "dest": "flatpak-node/cache/esbuild/.package/@esbuild/linux-x64@0.27.4", + "only-arches": [ + "x86_64" + ] + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@acemir/cssom/-/cssom-0.9.31.tgz", + "sha512": "667477192687fbfbc9d189476aedb51637cb6233296152334c3f0cf2f20442f206c5e397c97773088d78d2bac263ceb6a7f0bf05bcd6b237357609ccf669284c", + "dest-filename": "@acemir__cssom-0.9.31.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz", + "sha512": "125a7e8b0531e6b379f98f312ede7f191a06db4586a03090ff515bfb52e21adbf06c36afb929348e10ff79975c90702ecdc0f371c9e4bfeac48f259f471d7c82", + "dest-filename": "@adobe__css-tools-4.4.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "sha512": "52b700041fb86d4ac5001c1b96e4c8044ad7c2f6ec53f57b4d959f99b8097db930881bb3892f60c5d383532ba279c7dd190f398e094c5ba8ee4b7fb3e53b0a2f", + "dest-filename": "@alloc__quick-lru-5.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-5.1.1.tgz", + "sha512": "88658df04e395acd175b1dc3e38435b7abd7d8baa108a7307e6c016020ec16b6054ba9b8abf2aceb52f6bde11368bbfe7240c2ebe75311326868001bed58cb8b", + "dest-filename": "@asamuzakjp__css-color-5.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.8.1.tgz", + "sha512": "32f473d670aa5b47eccbc433e1d9cb22f84e94ccea0d505a6d9c7a947f98cb01437635e1318dfb4a6a55d57157dc9cc6e465879fade3e875fa40faf79595c7bd", + "dest-filename": "@asamuzakjp__dom-selector-6.8.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz", + "sha512": "9fc1ae612ac8f5b17b14567f4a38707af94773cc5a5656ffec79877a59dcfcf657043d99478f4d9cdf6c30cb8374418f79e450e5dd21aa54a51298025f75a5d1", + "dest-filename": "@asamuzakjp__nwsapi-2.3.9.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "sha512": "f4d8427988eaf7edeec6076da76d0b4a225726f37415e0ad346a49c6e3056752afddc59435be833a127052f7150b328647ae9cc389e3c0cea1ac92ea80ec1b73", + "dest-filename": "@babel__code-frame-7.29.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "sha512": "4f534226a4ff8fdf9c9fc7ef92dee3b706cb05f2c2ff5cb573b36d09e5c5460cc64ec69f8baf0c46ff32ce46126a9067140e8bdd4d9549cd367220f3a0026126", + "dest-filename": "@babel__compat-data-7.29.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "sha512": "08639f389a968e0daa5bf31beb336c0e6faee6f150f03c577db334f73ebda7967afa61358a43f68d45f0fa3e363dfd574d8103d919e2e5ff799e961ebb030340", + "dest-filename": "@babel__core-7.29.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "sha512": "aac685fbd41c9b642ff1244830cb1c02f1b83b7949d05d46b8ca391d1fc1a74d8ba293609d9042fc491b7af1c5786b3896cfe83f3f6ff81b26cdb91b7bed1d53", + "dest-filename": "@babel__generator-7.29.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "sha512": "258b65b3786a8b5e5f731e4669234bed209327630d9a3ae41d7838152a4e03f82bc4af0ac326796ee6c7b02abc1570a4b9aeb186e69a062b7eddbefe55945f70", + "dest-filename": "@babel__helper-compilation-targets-7.28.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "sha512": "f96e9c21291715ad635ec0c475803c1de7af413fc550b871cd1f7da71a6196d65c55aba0a6ce774c709e89603c4a0bb1c694a9de028f8ae61f496a2990b43887", + "dest-filename": "@babel__helper-globals-7.28.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "sha512": "9795e464aeebef06bd2ee706c3d2f0672c8252c71be31dfb2564cfcfbb30c0513fd05310006a62594667f2ef43ce448158470adb98e6bee6dfa70d9d9c031d6f", + "dest-filename": "@babel__helper-module-imports-7.28.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "sha512": "ebba1714062bd9c0cb0d518b5d3100063741259e9dac4954488ed62a9ef436ba72212b28de9946f52006105eb2ef36e16bfc0ecd40725964c9bc40d534850670", + "dest-filename": "@babel__helper-module-transforms-7.28.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "sha512": "4bd83367f6f3f37191cac23b8000f8c0f4ff008dee0a763ef719fe331fca3ecd89c07248cf55bc3d9920d9cab2b7744d38133c7a3717855eb2f0e83b972fc3ba", + "dest-filename": "@babel__helper-plugin-utils-7.28.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "sha512": "a8c952c4a6e946502b89d0c4c64f769d2a1bc837693e28d4ab60d6ea80e752a77488e1b19908f2aa13088a123dfb3bf82cfc997518ded9c6af58f6c26d69b778", + "dest-filename": "@babel__helper-string-parser-7.27.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "sha512": "a92b3889fc33289495dfdb9c363b2f73a5951ece9bed2d37b0e87639c1c5f541df54fa965802d4b0d515ce1481888b63459a0b1f1ee721aad58ea295bac519d5", + "dest-filename": "@babel__helper-validator-identifier-7.28.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "sha512": "62f8c9a30f45c5b84514a0d2b859d509ed96c57935cd6736d9f15e3d5344696244bbc22b65595d6ba374b87c3366b50cd6297b342f4c969e0c68961b61df494a", + "dest-filename": "@babel__helper-validator-option-7.27.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "sha512": "1e81ae52ce2c09935ecd510a755730aa664df06a078ab2d470b69854d04ad89d0369d1ad75caa0af70426ef1fcf97528e0d1a3365dd53ad4a310a373a9f1602b", + "dest-filename": "@babel__helpers-7.29.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "sha512": "e06811cf2ffe7ec05aef6fd165526618a3e666ef41ca7f28e0ca0ba6635ed66f197d89f3e5e9872d0cf753880bb9de99c25d1164872088b0fb52aef2485b832c", + "dest-filename": "@babel__parser-7.29.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "sha512": "e94ce40acf9e8c6759e661450bf38252bbf4dbc69bd9fa75ce76660998c03812a204ada35c3d4ef813d27d7f17daa8c9ef97d904c4a7427dd1ab69ab0492b69b", + "dest-filename": "@babel__plugin-transform-react-jsx-self-7.27.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "sha512": "cdbc284ec06bb9378a07d852abbde16baea215e247b9a16451bc2fa84967ca0a0d6e3fe31d1b127a8928c1914ddc267ae08bc4a9c9a69157bcf4e3d773b95d03", + "dest-filename": "@babel__plugin-transform-react-jsx-source-7.27.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz", + "sha512": "2620d2847e39cca1d6c867b864d551ac28c1cfc361f53326646d648784132bc8420535818bc0dafa2eecd5f270eff958a4ce1c71ea5235fab367f42f001062e6", + "dest-filename": "@babel__runtime-7.29.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "sha512": "600e8c6b62ac09d19bf960ba5290551491972f9f0c0c0ea8c8e35b8f217ffb9b0183163f7709212e881b313d865d7c94f38fc8851c3fd83d4eb3507f822cfe05", + "dest-filename": "@babel__template-7.28.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "sha512": "e073e242bd17efec1a1dfc973d9a563df58bfc9edd70dd66c7d80be9675054c6cf9c5dfe66148cb3cb42c4dee81dd74913d7e1344efe9717679727a629f251b8", + "dest-filename": "@babel__traverse-7.29.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "sha512": "2f07591e949c338433f17c3688a4b34be71f825673246be87d0202cbb5bbbf871aaeee046809b252e3ba046adbc90da6615d755b453c8f998185dd7875ddc1d0", + "dest-filename": "@babel__types-7.29.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz", + "sha512": "eb300193f10203f418482435346895c306d07ab50267e4d06e9eb843702099f36fbab1c7d23f13b576b5a9b4a15c0eaaaa4a408f85795bca4fea62ded6670ca8", + "dest-filename": "@bcoe__v8-coverage-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@bramus/specificity/-/specificity-2.4.2.tgz", + "sha512": "72dc6d27f780fadfbaab6fbebe3e63ec5617de746edf5d6ad707d81f7c6394b3ac733865871020d8558d5178691af030dc15a8d7105cbce57afd82dcdabe4527", + "dest-filename": "@bramus__specificity-2.4.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@conventional-changelog/git-client/-/git-client-2.6.0.tgz", + "sha512": "4feb8f0dc88a7f4fe2a0d343a4c19cf050ec7a12429593f4c91dd0e4c37ac04fd8ff5419ec5fbcd0e8339e74c23a53041b8015d0bbc7d94262dc2fe706768152", + "dest-filename": "@conventional-changelog__git-client-2.6.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "sha512": "2cc1902d2f44b800e5a04164713051dc1c15fc218757bcf20f1551b550d3c1d23609ae22b740825534fdc029314a0a248c4e47a38d6110f81bf0e114c285ebe9", + "dest-filename": "@csstools__color-helpers-6.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.1.1.tgz", + "sha512": "1c9dba67fbe6b1942ab3fa376ba6e02ac95718502e9e05c66e29d42d93b778cb0ec8d2477810597eea791626489ce8218283381f09e6c3e3a06c908d835c3051", + "dest-filename": "@csstools__css-calc-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.0.2.tgz", + "sha512": "d0611f6c12e64c57f4749969b0d53bcf0c51207d3f04610cb972d30af158c6e2f5b4d86acd36ed9c5202c892d334ae1af9179c84a3fbe5eef0e360a55d29c943", + "dest-filename": "@csstools__css-color-parser-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "sha512": "f81f3ba92edf206dcbe61deac09fc815b8e856839efdba4e761f610235dbbf1d28f08984994b065cdd229c53a79360a108582a92418543e4e9339adb86429ee3", + "dest-filename": "@csstools__css-parser-algorithms-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.2.tgz", + "sha512": "e4690bcf3e29ad3229a32794888bb7895e82486dcf968ef14553853ca23b155109de667403c4b02b45d4dc697bc4092243e983c9a9be34da7cef9fc2e72fa348", + "dest-filename": "@csstools__css-syntax-patches-for-csstree-1.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "sha512": "43150b1c09bb70dbbbdb0f7b25434204538315a5e96c383e74ff1bfe8585019d8c4d1a69037534d18d8bd47a9a4b827ac81ab1c1afd8de73016b154a6c1fcdb0", + "dest-filename": "@csstools__css-tokenizer-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz", + "sha512": "7103f02f69a9da74a61c72650b2a178071a16c43ccac4114e71864732dc7b3f3bb9c666a129676b14b4b68bf4c3912ed0df46f565dbfdcf02e1246191f44f2f1", + "dest-filename": "@esbuild__aix-ppc64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz", + "sha512": "5fd6d482fc620bc087006298b9f2c81c65cf2569ebd0e09d4746a70f67b6d6f76f80223c9487ea15b9e878ecfb9418ddac019486a2d92dc428e8c2e14ced8329", + "dest-filename": "@esbuild__android-arm-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz", + "sha512": "81d2ec701eefef9c117eeed04a6ff383a471dbd54b772f5e4ebdade38b1f4d6ec2c7002d420859e199ea1e4dffa20cfbc5aa3440082b92b69d6c1cdca853dab3", + "dest-filename": "@esbuild__android-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz", + "sha512": "3f33c59c1355176f76b1fa5f862ca25c21929fd1d983905c033fa2bc1b92b25e9193881ad6811701a9a1397445c8c723c2bd8356d9b8d06eb937718b787d4bbf", + "dest-filename": "@esbuild__android-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz", + "sha512": "6fbc5a188c1d26586df19142bcc9290cdeae8929a7c712b9e8dd860d33183ebdbf833bdf75037cad37c1b2f54a988558fd7ec433efe124a1086db1ecf68038b5", + "dest-filename": "@esbuild__darwin-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz", + "sha512": "b11f8e88a2f0775e6798276aa57327b89f56da4a72d0a8a0cea49ca872371eac2bec85f1069dd8bdafb2270a2a87bac4f15efbb5da2179161ab5a34a2f842b3f", + "dest-filename": "@esbuild__darwin-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz", + "sha512": "8e77e929efa9efdb429e6e0655abfaf00eed50578a4304322e0112c04014cf2c64fd326be10746a20f6ca9635c51baff6d9b7f3bf1d7a2eb29b900ddf49c454b", + "dest-filename": "@esbuild__freebsd-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz", + "sha512": "da46f871e03f0a97d4ac8713525d70acfffd69df40b6ba7927de0babaf70ed4c0e32894f206adf2d2bc0289a74453be43cfca7e82216acdcb5de4c8b8a465165", + "dest-filename": "@esbuild__freebsd-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz", + "sha512": "681620708c57ff07799f6cacd3211219e60c185fa9bfa8340e166bdc6d591b88cc7ebb94f539758b667e5a78fdfca8c6cf59532c2728aea136be278f66a8f812", + "dest-filename": "@esbuild__linux-arm-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz", + "sha512": "ee740eb6d773546b61d62cf9ee4c60f6e0b3e7b77140b1d6c68a4bea662e62d86884f2842b4bd4d02dcedb509c04ae8a0e591855c9c35d8d3df477020d777d74", + "dest-filename": "@esbuild__linux-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz", + "sha512": "a0fb62c6d008ce0bf361c28140cfea67747ef5311477568d250bb41e11b2aadc7aa12eea4e9be385e21605b7ace3eaaed5b365a3657871b9084abf2aea044114", + "dest-filename": "@esbuild__linux-ia32-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz", + "sha512": "f262ffbe1f2a782a117051f69ccf309b9b893fe65c5581866b231abe2f06991263b88de0d6fe99ecd8b4249280256fa6d04b54b8045be8b9a9e21323cc2056cc", + "dest-filename": "@esbuild__linux-loong64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz", + "sha512": "d5176b58516288b216ecb42af50d8d112f87883e0dc93f08b63f4051e0a5d08542038e7d5a73e14442a0c2ba5a21f4ce7beff6add9ed8ac7a088f5a7febfda03", + "dest-filename": "@esbuild__linux-mips64el-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz", + "sha512": "b4b0b0346e3b977b1df65a5fcb1f4b00610622d094791096780c7ac762666dabfae67030a0f5df7b0b4076d6ed8adfe92452d458e869bf41694ba1900263eb1c", + "dest-filename": "@esbuild__linux-ppc64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz", + "sha512": "067012ca9a696d45b2aa3775288a54e00501888855afa6251f1fdc9cf82a12436854e84783e622495c4cd512df8b2e2df5c02e95b4464cd08a39ca87ac440b23", + "dest-filename": "@esbuild__linux-riscv64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz", + "sha512": "f9e52a81bfd9eefc552decc6f1b541f527c189ef3d80cb9e4be234c58876b49770defa80ff4226649d9139e5b0549379f62841799ed3bbdd9d17fe5dcb916db4", + "dest-filename": "@esbuild__linux-s390x-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz", + "sha512": "4b9a8e5eb295f01404cc93d5c40c27af28b6f88ab9a41e348131084faf4140e36a47b247d443c8710fd48aff660a79f4e637dff6e9aaff99eacf196a4ce83d34", + "dest-filename": "@esbuild__linux-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz", + "sha512": "c474fc5f8b1bd064bca93aa2c331eaa58d340bde433c0abb9c0c17df921efecf8b3bdf37d21acc777a17d1930a2efcbbbeca2779eef7c7496671d3955c5cdde9", + "dest-filename": "@esbuild__netbsd-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz", + "sha512": "46e80ebce7577ddca2e53cafe349204272346f2bfae8116002a8dd82d00aa87a194db4c5d90a9f42b1706bb70710e4497fa5f686dfa5f4004b30fd1d9ca62c82", + "dest-filename": "@esbuild__netbsd-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz", + "sha512": "d8cc8bdc801a4d7fb5fea3f43b54b0b24c1cc02a0e238915d88057d716270c3aad866ab902bad6f78a9220a080b91ada3203ce986d110d303be26cd835003da3", + "dest-filename": "@esbuild__openbsd-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz", + "sha512": "bbc7e0fe34396900dfb27215ebe2b02ce7f50a62677eed52869c2a7700b4b80ed93f0170b39e4d81cd76bc175e51d9ee5a8418c7f48e40b18371d95f5e16265d", + "dest-filename": "@esbuild__openbsd-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz", + "sha512": "2644d9ae5e956f23bc94340edf2bf6ea736bd91336c99ccdacd1c4b23f5b9ba74ec30bbd398376f028f36641f9edb878c3423617b22876942f50011dd666d65e", + "dest-filename": "@esbuild__openharmony-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz", + "sha512": "fe03b381a7b06497de25396c5a1bd4126506e2d5846364a9a79336d08358460d992a5f503cedd010480f791b4b8c45925bc16295135a70f3a0f11d6e698900ea", + "dest-filename": "@esbuild__sunos-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz", + "sha512": "67d484c41836cb7dac9a80d075fd474701d1b7abc01cb5dcc43dae1a03bfbf68caed8ef5f08c789ddb1b34c53ffb54227a6f4e88e75aaa2b62a19c318af85762", + "dest-filename": "@esbuild__win32-arm64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz", + "sha512": "0c0c862d2d09cf91b98a2c446cc1e2e4a762029a87056306cd3b4c889ef664e2e16eefdbcf18007bc51ef024d2de7dc76c8507433fcbe75c8c74631ea315cd27", + "dest-filename": "@esbuild__win32-ia32-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz", + "sha512": "fa49e86b4043a1e5e090dbef575bef6d95f8fa18b37a5ae4c2618905d4f5eedf0534fc06da529e9a6b8c66599a350df0b370ca282c696f8cd1644229dd4c450a", + "dest-filename": "@esbuild__win32-x64-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "sha512": "a61ad898d898a6947bce714476a81f5875d1e8d0a46442bb8705831d95238adff6fd4d2be97be40e5d12627a0ce751eaec584219d2c34facf1082398d617b1b1", + "dest-filename": "@eslint-community__eslint-utils-4.9.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "sha512": "12b8924e5b79382f7fed25e445208085f4b1c684948019b7dce1fe224c1b769828aac4ac520ef2dee87e208088fd08380415abdd4da2dfd4699b271bc4cab87b", + "dest-filename": "@eslint-community__regexpp-4.12.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "sha512": "9c99762864e5adff468cb8a6808aeef95fe6ce048ad000420d046fc70e418d444bed67c7e6ea169a2cdb1fb401e8c9a730177c7080bdb9c7969deccbd556565b", + "dest-filename": "@eslint__config-array-0.21.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "sha512": "801af137cf203887f747b8dae4af6c97035ac9571980ae923943919b6b81cd378811f79568884ea42b53a31dcfe91ee8da32c5c0b1532e70bb914fd119c60483", + "dest-filename": "@eslint__config-helpers-0.4.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "sha512": "c8bfec2eba66b43685122523d68b113f84c8d8c0f3d4075d24bfa367b292aaf06e962378c6a618e7821f74df2a0fc4e86ba8358a5a298757f140d9233b1aeba5", + "dest-filename": "@eslint__core-0.17.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "sha512": "e08949c745f4a9fb55b0de44fbfbc6ba34d1205b70b8b6cdb1551eed33bacd83c34753ba9c5c2fc2120a10a4ab97a7597219980484dacf12a85183a376d8e546", + "dest-filename": "@eslint__eslintrc-3.3.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "sha512": "9c4ec3108721bed8854f0070e0b7dbbb9f4f1be902a1f863b0a6825b3c53a6de257d18d132a1bab8c073297b847325e1387a14a7dae2026eff69660685767d73", + "dest-filename": "@eslint__js-9.39.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "sha512": "56d00e6b299655f65c9996e9e84da6ca6a43207bf28d7b3fd762ea5988d5c3aaa3adf17e54af9fc86df7902873de79caf92539fcd7873aaad31074bcb173b738", + "dest-filename": "@eslint__object-schema-2.1.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "sha512": "e37feab6b0d4a24afb2c9aa8176737f91227bbfb78cdfae961da120df632860e76af02d5e939cebdd1b87d79bb224481df012b91c9894bd88486356d3921238c", + "dest-filename": "@eslint__plugin-kit-0.4.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@exodus/bytes/-/bytes-1.15.0.tgz", + "sha512": "518d27940f9f787f35506487bfddac2c43cb09e6458d73ae1e1ac8a341d0c9d49cb9073cb3403b90bfd4760c200eaf20f22964b26ba8177e58553369855d9a05", + "dest-filename": "@exodus__bytes-1.15.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "sha512": "e43c90e3ed49114cde8de2b524620272275ec9f51b1a2c604bd8cd81ec799ea916f9c63b59987106282689e379427c3d668b123550bd2902b26fe194686c8a50", + "dest-filename": "@humanfs__core-0.19.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "sha512": "ff3531fb23ac22b1b8638dc4876a5e0de282c6546dfe0113e9a1df68aa6eab6ebba977580c55625477cc68bcb28193a79749065b114882c072f1016e4cb51711", + "dest-filename": "@humanfs__node-0.16.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "sha512": "6f1bde57857cbf961be277054d3deb3d281904ea429237cad32e28555549c08b8354144c0d7acfc9744bf7cf22e5aa7d9bd6e7c8412359f9b95a4066b5f7cb7c", + "dest-filename": "@humanwhocodes__module-importer-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "sha512": "6d5d13828f4ae217cf09e93e68c027f35469a452afdb248341e328499baf4c04b2c0d4e7549080ac2644d855aaa6f21ab4abbb54c44b5a547511acef5610f285", + "dest-filename": "@humanwhocodes__retry-0.4.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "sha512": "da492dffb9e227a32010fc45d1b61d43a7ad65a03e7d0bc370b29c921cb5c8840ecdaa0a8c10634a3eb7fda2d58d8137aa146de5dbccfae5327c283a50a0816c", + "dest-filename": "@jridgewell__gen-mapping-0.3.13.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "sha512": "2c8f6effe95a606e03b354c3292256d983eb22571560ec22d9f502eb1078de5b9e0a383157895f7ce0990ad605887e9334e5feb50297c7ded3e082876e1c8711", + "dest-filename": "@jridgewell__remapping-2.3.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "sha512": "6d12128022233f6d3fb5b5923d63048b9e1054f45913192e0fd9492fe508c542adc15240f305b54eb6f58ccb354455e8d42053359ff98690bd42f98a59da292b", + "dest-filename": "@jridgewell__resolve-uri-3.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "sha512": "71843ddf5d20aeac6e7966e5f96b885086a251a0dc8fb58eab97d58449633558117ce52163d7f2db34ef7e8a96b2779b87c4a5ef45527056c80af2672ca0743a", + "dest-filename": "@jridgewell__sourcemap-codec-1.5.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "sha512": "cf3351f9275048327373c8e869e3fc410a0242bf0db98c76748232b65d507811191c9f6e5ba85e6ecad881bcfc849c1441aa374d608cb667d5f0dbb5b7038b03", + "dest-filename": "@jridgewell__trace-mapping-0.3.31.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.7.0.tgz", + "sha512": "808c11d47ac9aebc7ebdfc8e858982674fc9716a86e646df1bbf9dddffc2d4b5e4d84bf301b1d2837310e653b6b0c968f62ce8019d38b21a217ca2d54fa72b54", + "dest-filename": "@monaco-editor__loader-1.7.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.7.0.tgz", + "sha512": "732cd7402b4ee3bc9dcf1a50b42192406382f069376547815c50310fe0965d8168e4ea99c995289c59740f05254f201f4479ed05fc36a77c38b3d47aa1ed5e08", + "dest-filename": "@monaco-editor__react-4.7.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.11.2.tgz", + "sha512": "29dea40074c0ebf9d4a69f26c923ea8f77a7ddd9b4b5d30881bb6d9d0d7114c569b9fa23f800e2f295cb06c778c734d11d06bbb7f26ff16e549c2b96e24b9631", + "dest-filename": "@reduxjs__toolkit-2.11.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz", + "sha512": "7b26e4dd38f3cf357dec3963e5cf97ac1156e7b793361ce877aeb2f47ac197327a36c0ab582a7fda468f4b72bdc099aeac10b44ddc38c8f8d7299aa5ce78a6dd", + "dest-filename": "@rolldown__pluginutils-1.0.0-rc.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz", + "sha512": "77a1629c404b74888afb5b80094b6d24a7e0651117ac5d107364a62c823b5b6003f057e267d5a377eac3fe246e7f9b39756aebd468305c2bcfa8eb83aae3a8c0", + "dest-filename": "@rollup__rollup-android-arm-eabi-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz", + "sha512": "6231bf130203bef608d58bd86c7bc3cff0581ed918e328142171e74dd2e11be84a2101418a8b1f5a20025a8aedb0a3ca53ff9d53041008a40cdeaac37bc73d04", + "dest-filename": "@rollup__rollup-android-arm64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz", + "sha512": "9a30a917b1a6911b52270a27f91ab537cfa923ef25ef0e60f59def5a3e13eda6e0b82e02cf08b762efe915a2ef0374d378c5639eeddcb6282eb2a5947e3673bf", + "dest-filename": "@rollup__rollup-darwin-arm64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz", + "sha512": "85a67b849d494f87bd86a9284fd47fd7d5d6d902aa8df255bfe8b9006839ed2fa72e4f6542727517f79996844ede8f52732f42337c10f65f9d917b5c06037913", + "dest-filename": "@rollup__rollup-darwin-x64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz", + "sha512": "733c3dd30a50ab766c0150658a76630184ca76e3a34f2c251bb7c479629403ba029a903cc5d4e4c59665c0d24a5aa20b96ad307a1a1970961f06f3b284f4d0eb", + "dest-filename": "@rollup__rollup-freebsd-arm64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz", + "sha512": "295076aeab314c7b81b5f39ec92132cc4381ee5b6507fbb1dfc8aedab050ce48dbc115659210062040e28989ceda414e909a7e67ba545cacab45116e1542adfa", + "dest-filename": "@rollup__rollup-freebsd-x64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz", + "sha512": "2fedf842a8a5fafe6e0b4cc4b9b5bbb81ca8efc58e088ac1bdc8baf44eec1404919745fb6ff301e82a9dd65932fc2b5c4954f27566b6599c05b967b18d2e68ea", + "dest-filename": "@rollup__rollup-linux-arm-gnueabihf-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz", + "sha512": "9fcdcef2bb78bf7e21805ce591bd7272788987b211e51088aadea6cf5551243ea99a1462d025dd99f9cbbbd748512e9bbb387ad08bc008cf38d857dbdf177a1a", + "dest-filename": "@rollup__rollup-linux-arm-musleabihf-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz", + "sha512": "36a97bb13780ce14c08dadd05de008e3cfbff868c127e426007d77b279f400948d2f9d09b03aa8b72b9d1f231b3b645b264b246cc6c525f20929603a4752c225", + "dest-filename": "@rollup__rollup-linux-arm64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz", + "sha512": "fa953298385dd32b3d19c2993cf5a516267aeec4d6579514eb33896add36335f8f8ae4860f38b246e23fa4fb9ede1a14c26dae19fc5d2feb6b4fa67daf19e530", + "dest-filename": "@rollup__rollup-linux-arm64-musl-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz", + "sha512": "552be0bd078872c12f6386ca0c710359ca56e18c3b06d94a1b51944f81730549442902b4ad61d806a42de859b6b5a5d2fb56d7bc94fa9080aee59c2a2829ef95", + "dest-filename": "@rollup__rollup-linux-loong64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz", + "sha512": "e0baa1528989ab07bae3582c3e9eb12df86a58c6d0574e0ab4fa7bfdd229d27ccfc4090d63501bc0be56d0c42971a94b624d3bbda5bd2a9d4f06176965861c13", + "dest-filename": "@rollup__rollup-linux-loong64-musl-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz", + "sha512": "b4b410f5a3ef901c4e73f1144fa8f7a7278c0fa1dbf1017605306709058ffeebb596173d008ac88ca9cb60c12ba08cff26fb4662023d745dc0c4764d6841f4af", + "dest-filename": "@rollup__rollup-linux-ppc64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz", + "sha512": "44cc45849c1cf5f4973fa3ea980cf871bbf7900caf0f57ad2458d3c7838da853fd0e44e45ec00c538bf7572739060cc2f9a9f3ee74bff6da78a1bb0a7ea9031e", + "dest-filename": "@rollup__rollup-linux-ppc64-musl-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz", + "sha512": "40a80597e61cd5e124e8c98e05f447605ea54f18a2895dffcff051adb4a25b623b0054d7a0116f74c132825a213e3fffda6652e210cea9e0741f5002877b016e", + "dest-filename": "@rollup__rollup-linux-riscv64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz", + "sha512": "4408d78cfffc73a66dcdab59700d51690afa3b54d18730be69d9fc6190e70a1962647be2a888e6bc5c077318b824a3d20c0b7a5217ffeefa9c073409cb43c326", + "dest-filename": "@rollup__rollup-linux-riscv64-musl-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz", + "sha512": "c1cba872968e95a2f508e058880f3d3bac9f8e5a77470283793200d2133b3a99a1475063a3d8f7d46d6e415a43953bf0c469f69d0b3ae5f0452f950577be8571", + "dest-filename": "@rollup__rollup-linux-s390x-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz", + "sha512": "efb3e9b0541408e89947df8b404160f460a5c9f90d5e3d4c3fac119f362cd047966cf707b34d805eee31b946ccd738709f7c2a6a2ce57b7004620e5a7a8a2186", + "dest-filename": "@rollup__rollup-linux-x64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz", + "sha512": "e5c2004db939bf29c08eaaa6c818e5722309975f91fc2c17f682e4fc4ca21570d677de4aa4776b3894fffeb9d497871472c92b7748c20b0df0a599e1207743f7", + "dest-filename": "@rollup__rollup-linux-x64-musl-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz", + "sha512": "725d30d3d5ac0a2d7b99c996aaa8257b3f4693c8ac81e5afa146775a2245612477ce3050736279fe28528e997e54b8cfaa343fd6125172a05f2e3b2c4444082f", + "dest-filename": "@rollup__rollup-openbsd-x64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz", + "sha512": "e02bf6dd9ace3516cdb5b65adfb98b4ae797502b4decc5dc70286d2a952740d805d35d2b8eb8df1f1dd0c644b63c8ecba864f9c57c98b356bb2dbcc0c13d2208", + "dest-filename": "@rollup__rollup-openharmony-arm64-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz", + "sha512": "8b5a24598900e052480adafb2a96331694531e0cb98dd0db66259fbe7cb6d6220a932e581318835cffb36d7ce6ddd51c169904798347810e5fb86db7e893ead2", + "dest-filename": "@rollup__rollup-win32-arm64-msvc-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz", + "sha512": "bb4f66dc2bb02f34a103411828c3621607238f3c2ab5430b9ae0892de6568e3398037213d838b4f4a6b11814cff71573b56c885a355db01d84f60a0c8d9bd342", + "dest-filename": "@rollup__rollup-win32-ia32-msvc-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz", + "sha512": "93eeb4d15f5997508cede6712603324d4ce6ae6841ff45d99c5e29472a4a025020c6679d500fb5bfd47e5ce16fe7a5b84a51c4cdf78cb73ba32c90f6d94cf9ce", + "dest-filename": "@rollup__rollup-win32-x64-gnu-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz", + "sha512": "9563278b1abf433c7285357a363409e12168d49e8fbce5fcbd4c7959be1b04fb046fef3167cf41cfa90e5e97d78fd6a4f401d3415433960cc111cd52c8cdbbc5", + "dest-filename": "@rollup__rollup-win32-x64-msvc-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@simple-libs/child-process-utils/-/child-process-utils-1.0.2.tgz", + "sha512": "ff847c40a9ddffc6a02729e435d266370d8c071b854d170d1671394a0fc6fa3912b15f3f5018142ccce18b35965b8da9f0be47edf948995d804e2efd3af7b64f", + "dest-filename": "@simple-libs__child-process-utils-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@simple-libs/hosted-git-info/-/hosted-git-info-1.0.2.tgz", + "sha512": "68098641d307f998a7cad2ae036f37daed004de385358364e26781117b41e7168fa2d52082060d86ae6d614fefd7bc046e64d6e4ff621cda8dac5cab867a8102", + "dest-filename": "@simple-libs__hosted-git-info-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@simple-libs/stream-utils/-/stream-utils-1.2.0.tgz", + "sha512": "2b15ef7daa5c8b1a73eab54407a1cf8ce5194f6db237abf4bc8d2ead04a4d4bf0c94458f0c5099921c36c66932a13198785c3bb564d977b7b7955cd165137f10", + "dest-filename": "@simple-libs__stream-utils-1.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", + "sha512": "976685cb98c02e19e21b91e0aab0fa8d72e2feb516acabea37fa89c7aca826c80a85b95577e8aaa94e110976af9bf8cf8adc83a394c2bca327a632a73ab8b2d3", + "dest-filename": "@standard-schema__spec-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz", + "sha512": "7bb31ec3af3aa3031a3c954d34bb39e4f52f833dfbd672a0c2c738bf1138f73b0e0e92449f1831468db2fce2abaae79abd781934c0d58f70dd1c595a480794f2", + "dest-filename": "@standard-schema__utils-0.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", + "sha512": "a574bec09da0669557a85694123a23abb8f33294c67fcad4ea2a49cf9a2f255e8f5069a527e8ef2301abcdd1dd43cd1283ec26431505ba85b55000301cd11d14", + "dest-filename": "@tailwindcss__node-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", + "sha512": "757191d67f8fdc1ebbe3c8d93bf4af1d9abba813aaab343ec85ad7a683965802d69dd17d32848a013dd0d1f6200336331a1c4d60ea32b11bd89698b14410680e", + "dest-filename": "@tailwindcss__oxide-android-arm64-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", + "sha512": "8aaf508ebea49df3296478f9e7fdfba2e65eca4c1b0ea176d603c5b5f9e10822860dc3c8ff6d45282f5774c3bf5f204ceea28e471e942211a083a8cb97b05996", + "dest-filename": "@tailwindcss__oxide-darwin-arm64-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", + "sha512": "06547ed9cde7cdcf1fd86eb7f4ba4bf3d618e1b75c21d52688e3a4bf6190bf8ff8334bc99695c46b42573478421d4ed558e2964ff0a3a877533fc694b83264bb", + "dest-filename": "@tailwindcss__oxide-darwin-x64-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", + "sha512": "614a9482b18c4aed820cef36873950e6a49be719b1dd152b91efd0827a04c7b2af99124742e6476666532d2bae1f015fd0324fc9b14c5cc61ff9625dc47cbf9d", + "dest-filename": "@tailwindcss__oxide-freebsd-x64-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", + "sha512": "14f761bec5ba834e93f41593d2a4f0895658136588168d9d6396824a98c6fd2feed6d6f2fb05e8b255d2d24977fca5e750b94baf513734f451c3483bb7692069", + "dest-filename": "@tailwindcss__oxide-linux-arm-gnueabihf-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", + "sha512": "e2883557e7ed10f5c6b6d38eede0a65bb5480a6cf325680cc7e417009440863ad28ee982c16a8c7e40eb36ed4b5c4433340c33dbc342529b9c8103eb4784b6cb", + "dest-filename": "@tailwindcss__oxide-linux-arm64-gnu-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", + "sha512": "a027c6fe64beffe5d19703639ec34b5709cc5981fbb67fe460fb0d3e1f8948e3259edf77998342287633ca5461239d57f936d1fae7cd86128ace6e9092a5fc6a", + "dest-filename": "@tailwindcss__oxide-linux-arm64-musl-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", + "sha512": "ad30060240e0a9b5c7369ff15b48ae80b5665fadb03a9d8fa04dfd0530862a3bf722871fe8015b44fff0653fe4b82c42f50061f4fbbc5cf92fff309907699c32", + "dest-filename": "@tailwindcss__oxide-linux-x64-gnu-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", + "sha512": "5d6deddeac1b230892c910a081e3b6cf17b72966846ccd3f916f5ef3ed17a41832294e004d8cdc55230ab5e649d62ba42771e01c18db83d3f960f442554c659d", + "dest-filename": "@tailwindcss__oxide-linux-x64-musl-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", + "sha512": "78a4b3b4ab2612c9f53b9949e1901fca7e3535f1bbbf30a0e3de98886b4c0d5f3a8f3d6afe2ae19ace4ed15ad8e99c13524172fc4286dd17d6831488dd56d9f1", + "dest-filename": "@tailwindcss__oxide-wasm32-wasi-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", + "sha512": "a8f99a40ce222aee66c69b2b59930e651819bf5b4e669526fb37618503f456125fc8618edda50a75b87780365cfdd3cb4305b8792a961abadc58d05959459a5d", + "dest-filename": "@tailwindcss__oxide-win32-arm64-msvc-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", + "sha512": "d53ff7ed5bc8ed6c87eba6febea1e3fdc2f09c2c6ded0b77585bb943c864eb968ebe5c0086ceeb029d5592e941270fcde2d322ad78d59f295347bdae2341c670", + "dest-filename": "@tailwindcss__oxide-win32-x64-msvc-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", + "sha512": "a84500d3bf84e647a1c58a7d055329abd13cbe726e0477c9102d2f3c2e5eee22ff870ec747ad5a0caa15a0aceb1be40aa79eaf84d65ee2ac24466302d330cbbe", + "dest-filename": "@tailwindcss__oxide-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.2.tgz", + "sha512": "9f88282906d6f1155721b34a441ff8e4bcf252a378e7575e40ad27cc879ab9512a8e5238f6c95496029824cd90c94cdaa7f3dca674bb93349498f6f5b0246f61", + "dest-filename": "@tailwindcss__postcss-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.21.3.tgz", + "sha512": "e6734c4d21133f8ca419e826564863712f2d4cb5ba565e1ac5f10640ddefd3374761b2b851fa2a7cf0a17254eb2781282bd4329ea02ef6851ff15126ae96795b", + "dest-filename": "@tanstack__react-table-8.21.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.13.23.tgz", + "sha512": "5e73119c7436de988e563d9bcc9a87ad1acb838afe17ce9fb81730b5e29f6c88c9aed1b16f8cfbb48bcf5407b807ee14570a3d1b81a2bb3e5f99aa5cae767439", + "dest-filename": "@tanstack__react-virtual-3.13.23.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz", + "sha512": "95d6571213816fc22cef12ecd357d1dd811cdc31118b3e6c8a58fcb671a4159cadb7569b12f97f1a1526084d0f30b68c3d36b7264e076ca9919479aefa009fb6", + "dest-filename": "@tanstack__table-core-8.21.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.23.tgz", + "sha512": "cd2cf66761cdc8b8c2a6500d4c3ca5dc171d409736935fb2c85a0a84d4660abed5edd63ca3cab99bcb854c8d7f3e0d642fe1e0af3eaedd7a3a785501ee5eba72", + "dest-filename": "@tanstack__virtual-core-3.13.23.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.10.1.tgz", + "sha512": "84a2ff8d67f6f77503494374f6b47af61ad3a3221705bf028c66960bb81f8a7be742b055be72ebd3c15e162dfc831b6e80057255c4dae7f143fd79e46f5b2207", + "dest-filename": "@tauri-apps__api-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.10.1.tgz", + "sha512": "6763a3097899f9f6d8672ecf98fdd64673a933df85cbea289ca0c499413a330378206698aa071e4e3c07b9c73f904118668b391880af7b7e5fed98a2ce0a849d", + "dest-filename": "@tauri-apps__cli-darwin-arm64-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.10.1.tgz", + "sha512": "57f8ab415be33cc18e4d0a8d8f9e4f9d03d5b87e1524ff2f64237b6a39e3f994bc2a89b5b44336851dea6db211a12ddd04ab3999b1bcca0d560bef7b76ad7b3f", + "dest-filename": "@tauri-apps__cli-darwin-x64-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.10.1.tgz", + "sha512": "1f2cf0b1be159c258a19f4f0fb04add79676a4bc367f425d1417eadaf1c138186f83ba22eae84a885f3b8666d73815d465a1a4c910e4087b1dcc97087e8242db", + "dest-filename": "@tauri-apps__cli-linux-arm-gnueabihf-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.10.1.tgz", + "sha512": "3b2398b36b791a4048bf25a3035fa1e026714dc773d4e64f09600fcf90d811f0747275871114e743f48b6b24339dcad3d24c11a127d2cfd2b17a79322684de94", + "dest-filename": "@tauri-apps__cli-linux-arm64-gnu-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.10.1.tgz", + "sha512": "3088fbf0f0c31a3920dcda86a6d0ce1a07d792ced2609c2188c87c481a194bebdf773ef23f98cdd7c6cd68b9c386c5483c045c0211354e5b197bff18c68db3aa", + "dest-filename": "@tauri-apps__cli-linux-arm64-musl-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.10.1.tgz", + "sha512": "5f496f395520f0f0956a812d1009e9c669e4c2513581c3034ea7e16de7c808a0e739327912cb77a8bd12ad6c62cc369c90838a05cbeda5e8eb4a2569b8923593", + "dest-filename": "@tauri-apps__cli-linux-riscv64-gnu-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.10.1.tgz", + "sha512": "dbfd766c4cec252f5f00ac9bc6089c083171603d56108f643beb650f05f9ce7586d86c0c05a896726846959f1f8be0cc7bd09795c55aacc4d87342f7444211c7", + "dest-filename": "@tauri-apps__cli-linux-x64-gnu-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.10.1.tgz", + "sha512": "63c274673b303f3e7451c18e16e5c610caf16e3c0a48f8177edc79aa792e32cdab9b0401e6cb2f2dbead9f9e300d26317bb4babe52e86fdbedd152ae34e68221", + "dest-filename": "@tauri-apps__cli-linux-x64-musl-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.10.1.tgz", + "sha512": "892b7907cea31d800f25afc8958c3ef925ed14f1a75ad149ae21e7ed7d0d14156e9c5eb3bbdfbfcce9fc3a0a8859297c460ce12c65d0104b4605d478c33a5582", + "dest-filename": "@tauri-apps__cli-win32-arm64-msvc-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.10.1.tgz", + "sha512": "817cb1804cec15e8269d6cb0614e6910151191c14dfcea38e44030bd9ac7321fb3512100bcee44f135ec80f003626df5775bbb3905373b71ec61f5417f69a81f", + "dest-filename": "@tauri-apps__cli-win32-ia32-msvc-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.10.1.tgz", + "sha512": "e829fb6293c5c330a1cb4111cfa7632849947a15ab62533ec5368dcc63e0668730dc10fb39fc1f5872955b15f3763116d8a7ca90775d7ddc4ad575d362a0512e", + "dest-filename": "@tauri-apps__cli-win32-x64-msvc-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.10.1.tgz", + "sha512": "8d034617fe6abb03917594922ed4e5bb2290fa8e9231afc050809f85fe1e80218574c1ea5acb00a5581849b83e8e6ad9a1cf1ed43b1c36f8d39d7b651cb4b5d6", + "dest-filename": "@tauri-apps__cli-2.10.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/plugin-clipboard-manager/-/plugin-clipboard-manager-2.3.2.tgz", + "sha512": "09495be47aa2da865b7197f8554c941f9dd758f3ddb69c38dc45290b36b91d6649c311280e8c05ccd503b75b5151703c52af973e7d7b62c7e9b62a77dec1b879", + "dest-filename": "@tauri-apps__plugin-clipboard-manager-2.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/plugin-dialog/-/plugin-dialog-2.6.0.tgz", + "sha512": "ab852adde63ced375c6335c00a26123e19a9040efab2182642cc06912562a380bcd92cf65b889e85ef539ca6306eaef078788bf3c630d7d5d99bbbf6f3e32272", + "dest-filename": "@tauri-apps__plugin-dialog-2.6.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/plugin-fs/-/plugin-fs-2.4.5.tgz", + "sha512": "755c5658613a56b3b10bbfe3961c84f8e37f09cd9110994cdf94773c95f752f170d97c1884b190540232ade85e9c374a8e8b62a6360455ce188ce977aaaf747c", + "dest-filename": "@tauri-apps__plugin-fs-2.4.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.3.tgz", + "sha512": "08271496d5cc39f50402b6dfddd6f790213b1a0cb5131044065e752a8d8e0c9e860d81d1a759d2365426e6e342158e64effb9f68ae486f70eefd98abd7d21841", + "dest-filename": "@tauri-apps__plugin-opener-2.5.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@tauri-apps/plugin-updater/-/plugin-updater-2.10.0.tgz", + "sha512": "96337c8cf9674f46929fc79c621b8189bf386a5c5f331e8773cbc948a309cb319b4cf159002e384f623540d159b2c8162ab025a1fbc9a820ba46be3bd8959f91", + "dest-filename": "@tauri-apps__plugin-updater-2.10.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", + "sha512": "a383d725089da8997cd9c90569751ea005be5f2b0f2dab98238dc06e48b984005df39de23218ada2873ace73a773381b4d89843fa53aff2d59c8a008b2f30a1a", + "dest-filename": "@testing-library__dom-10.4.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", + "sha512": "cc870e35afa156d55249ea7d513de3679ae2ce8d81b318320d853b5850f978808113b9e8dfcf351c679bfd09067ec26ce894e4635690853eeb20f0bb7bed279c", + "dest-filename": "@testing-library__jest-dom-6.9.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", + "sha512": "5d4e7f4b2b5033eca4a8c9c09ef076ba66893483ac2c5dcf56ffffd44c38093729cf4fc1472cbf69fe34aaaaeded28caa43753d6c68131ce36094a24e606b0fa", + "dest-filename": "@testing-library__react-16.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "sha512": "adf4fddee8f9b343d12fb13371c18cb376eba6585cae08670e8576e8da8a842012d61568f9674db0fbc4ff26fa8a57ebe618b630493a77911625329dc60f2357", + "dest-filename": "@types__aria-query-5.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "sha512": "aa8429ad9bf3e70405270303a9eb1e4575afdeba8cbe18296d715f5725a16f1f57e3b3ce200ea2ffe75779f12664aa0080e69375a22035232a30853ad72472cc", + "dest-filename": "@types__babel__core-7.20.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "sha512": "b9f15dd978bdd8e0153d8b32f8fe27eff53b7baf1f7b1d3e11ef20486f4a5fb7a8d3ce025a2438b1dc64b6f765d1b38fba95ed5493d8d7dce4e84c16a9443c96", + "dest-filename": "@types__babel__generator-7.27.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "sha512": "87f354692c86e44cb1048a7c611c68e1131edbfa9082fca8c11c1533385884108e35b5bc3d4b20e2590532b86066151ee73dcbdcc88b0eebf227f09a3dad80f0", + "dest-filename": "@types__babel__template-7.4.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "sha512": "f0fbdc5dfef48130d9060b7da6dc49f1e9417818dc2ce01c3ada0efe63c98ed8e2d7e09d19b1e09bbee89b51abb0fc6c884fae5c8a4d48aeb8518688c105dde1", + "dest-filename": "@types__babel__traverse-7.28.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "sha512": "330e79f28780f5f15bbfae7fcb8987b570ecf5b3e714c6402ff8f174f154a4e1c72175fdd667201076d2e4b6a1afea7064547c03b19095e456788e9c1850b650", + "dest-filename": "@types__chai-5.2.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz", + "sha512": "84e2d655b9bbb91cdad01617a48216e69c5faca7b45be0f996b162004611fa96fac373764b048c6896d77547d212ff9d4f831f1c12ed9f98ecd0b01668eea8b7", + "dest-filename": "@types__d3-array-3.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "sha512": "88ef74b1cb61f5601b9a0bfba20a2ae7b3bd6292a61416e6a04a021c3076c4c058d3efca56ba806820f2084d7a754b2978ebc8c4515123ed2c12da83ab2d9be0", + "dest-filename": "@types__d3-color-3.1.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "sha512": "1c4de354a97353d01a31accdb9fa28449e59a5698b22873dd00dfb594d893267aadbcc35150a8266cc07677c51f92bb161fb731eae9653a2891efab12b34f1c5", + "dest-filename": "@types__d3-drag-3.0.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "sha512": "35c5752633b9a03ce82b6ea83336c82c4e875bbb955ce1cb42f1ec841516e1431d6467e263abf905e43087d6bdb42ceff8279e7d940726de524602b5e7846d88", + "dest-filename": "@types__d3-ease-3.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "sha512": "9a02cf11396ba55575611248825af8133e3b83b6318e5d658fb60ab223026f6ed5247f56f0d54ce816fd77c924a46fee0104b90266c0e3cab6200a2528aa3530", + "dest-filename": "@types__d3-interpolate-3.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz", + "sha512": "54c64163242f6c6996c9655e6b4107b3f0702e0c5cf8c2a2d732c308e364b28cc8e1824c713b7c644b8847849bd4c31313c30c5b8f6fd08c08e7e6fb4667d696", + "dest-filename": "@types__d3-path-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "sha512": "74b9adc01f3390078efe3b8031f9d5fac22d2a396cc3694a759555cba2d1af470199e8314800622c4a4656648927c3b4f22e3eb0647aa90b5be96b6ec0976f57", + "dest-filename": "@types__d3-scale-4.0.9.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "sha512": "6e1017bb6dc3256b2b238e7169f629910e0db5c28cc169c00bfbcaaddda5fa7c4c16ebce4f75cc613223da8a6ff2fabc00ee5887b41a73f9d278fff7ce34cad3", + "dest-filename": "@types__d3-selection-3.0.11.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz", + "sha512": "95a7b48967dc0de47baadeeb03cf01362a9dbcf4b9a4554fa68e4e7e3125c0d693db2c9e91b3340bdbcafb2a81a84987afa9439119d83684c162502025aedae3", + "dest-filename": "@types__d3-shape-3.1.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "sha512": "caecd9ba0d6790001a0650418a42994e0cc2780fa4d6ecb8645c1600d39f2b0e73e4b46157480d03b80d90a9bb1e82be1d1374c17dc49311a4d1fa5b5a1981ee", + "dest-filename": "@types__d3-time-3.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "sha512": "3ecdd3f04f1d6436a6e9f5323623247a42b75d4b1a5048a4fa274ef7f6233ed7e3daaaee17cb450574bb5e1b44e2221704bc6198b8cfdd25e92e155fdb523d2f", + "dest-filename": "@types__d3-timer-3.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "sha512": "b994b9b217f1ccedeb1a5bb4702ddb8e63052ac5eff9299965c829d0a0f6dadb38b865e9e445581b3bbfd1877065e2a675d85c01c718b511092a43df5e466e0a", + "dest-filename": "@types__d3-transition-3.0.9.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "sha512": "8aa302e3f6251424a53bcfb6222d461869620806385dd786ef8f30e6f4146debe56c3bb4cd28c7ffe8e88e8ad05412bfb1ed23e8350534f0464aa0f76166270f", + "dest-filename": "@types__d3-zoom-3.0.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/dagre/-/dagre-0.7.54.tgz", + "sha512": "42371163e69d19b62f0454bb730bf9b718552305f55d7214b305a5fa44904db23a363819c9dad9904297fdeb7355dee2f9b0ac09be3467fc65058e5ea05baf59", + "dest-filename": "@types__dagre-0.7.54.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "sha512": "2925609909b33303e59ad9633a899aca847cf56e05ca70808b713c3cfb3bbe60d53def38853faf18f2a425f4e19265ecd31d2301a6bd53cb96f1b6dfc92d9f5b", + "dest-filename": "@types__debug-4.1.13.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "sha512": "73d87d75554c8a030f7386f04ef0b9771aada8967040f78fb168cf96948e9e88dba2bea91aa764e78d657c0ec0a8542be6907505176ad23b98f5d6fcd41c3217", + "dest-filename": "@types__deep-eql-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "sha512": "e7609c515345c9f6f503600ba1c430fc377505014d992764b82dc1919ea2aa174c7d0cfb25638546e2459683b38e4fba5a28d4e7a9bda0a5c501773ba374e8c2", + "dest-filename": "@types__estree-jsx-1.0.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "sha512": "7561f31dad96a845c8fced44f4e8eba1c313289976992ac4a258752289abbfa53e26e3706875ec5f1f5b2eee601bb05458520dd2c90840943f2f5ac87b1e17eb", + "dest-filename": "@types__estree-1.0.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "sha512": "58fb3e6db430e5a0a3fb1ea568d1962c7df0be21eda02bff3f7fa8b4185b3a12601bcaada5d00c9530b12edb13580ecb1f53a1fdb1421ec067d133d2e66df411", + "dest-filename": "@types__hast-3.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "sha512": "e7e7cff0ff0c14d0be0326420f1ac1da991914f1b3a90594ce949ebae54bbe6f1531ca2b3586af06aa057312bc6d0cf842c6e7e2850411e9b8c032df732b061c", + "dest-filename": "@types__json-schema-7.0.15.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "sha512": "90668d6cf87593b005ce0a6e77f80c76f226e71b840b291147e26758a427a3d4c05d56ba5885421933ef6067a42032f8bb009941261b53134149bd5a528efda0", + "dest-filename": "@types__mdast-4.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "sha512": "1ac0822190c4fe9de2f7abed12ac7eedd054197adcef37922b7c303c721a453852fbd3a15885d1ab3b3877a93549553c83dd43acd456c56506869e4a5d06f654", + "dest-filename": "@types__ms-2.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz", + "sha512": "1980f1b198b70a1826724453f473d4d1612128b3f4f1ebff61f72ad80b2d8eb0c048e6024977b28c3b07838bf9b788ce8fb7320d7def9a9ada7ca956206f4c5d", + "dest-filename": "@types__node-24.12.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "sha512": "dfb8be39a59387da9e2b82d21cfb32442ecd6a19c6a2d36e66f8cb4a070fcdb9691c1debac227100e808e6009d2a6edca289ec697d4e7f420b8937276636dfc4", + "dest-filename": "@types__normalize-package-data-2.4.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "sha512": "8e9d8bfde63a7e7f8a81555000ea9822d6c5d1563f600a5ee4ccf61746b29123bc831df56d8099caf49e6310872afcc71b97998dcfb3c9a4b906b056c9adbe91", + "dest-filename": "@types__react-dom-19.2.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "sha512": "8a57131ff52788290c76d7b192808dd1b23ba4c7090ef99014fbee3ef98469803f3527c54c081d5122c0a158da4499bbfba3ef70cfaad7360ec12e304d8305f7", + "dest-filename": "@types__react-19.2.14.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "sha512": "49c68f767d5d41cce06e5d101537933a65471542eddfde17260390368c95859eabdaf2e730b25f04f779dd2079d93ff71b7e95235fe0d8c65a5f47300ee5ec7f", + "dest-filename": "@types__trusted-types-2.0.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "sha512": "0a604a88be8d368fceaa098c9fde4593d5a1969da6b6f22ff8a36940a3761784a3beb11eb2e6d34561984a0f819d664e9e509a493535b0ca6c04ece06d8867b0", + "dest-filename": "@types__unist-2.0.11.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "sha512": "928fe0205251bf5efb5e066c65c0709ea24de71fc689e9fca8d3a7d03e5b414ff303355ff59b7706571488baa157dcb801193419b4f7b675223cd8274d7cdcfd", + "dest-filename": "@types__unist-3.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz", + "sha512": "cc50c00feb65a5fdabe1ab2e1c48f45c7ea963a8b483935e0073e7fb5e70937055e8903af5e1111570b58321938439156b5cc2c8aaf98e8c75fb62db57f00c2e", + "dest-filename": "@types__use-sync-external-store-0.0.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz", + "sha512": "44b9154a236e50fd42d9138859fa97f987147cb6929f1184ffc33e639ee5a2957083d5536187e1bb3d7961fd48cc22a0663ebfac86d84e6242512aabefaaf45a", + "dest-filename": "@typescript-eslint__eslint-plugin-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.0.tgz", + "sha512": "acba066487fd69f691058b0f50cb6f9035b29305f050f2fad0779b4782604c8f26c5f15ed9c413bb70068ad00da786fd07642556bbba5b38e007623324a88248", + "dest-filename": "@typescript-eslint__parser-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.0.tgz", + "sha512": "f10ff004f58b40fd63d7a371a0f3482a90d914c6b197bc96228a975987963be05b7769a382fa05d1dc4fda3299839fb1e3dae029d7fb0a4e3bdccf0f0b757d96", + "dest-filename": "@typescript-eslint__project-service-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz", + "sha512": "5b52eeaf5a05e741714a735d1a9dd5b3a3fec814529998b0e0822311e63177c5102708541748038030ff5bf4e09a1ef79b1804537a97d01cdd97f346b923c4a5", + "dest-filename": "@typescript-eslint__scope-manager-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz", + "sha512": "768352644549b1612ee21b62542f8f47a36933ea5af9ae02947f4835158e58253332cb7f540f5ce205eaf7617c1940f5af084dbd12e48237d8b455de817405ec", + "dest-filename": "@typescript-eslint__tsconfig-utils-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz", + "sha512": "686b024089a40c8a8ccb1d6ee0fad595b8bf92b983b1052ce3301c095e8cef23dc3debfe46a5659ddb09cbd909f132e2856f5367491b0c0cdcb692e7e68fa53a", + "dest-filename": "@typescript-eslint__type-utils-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.0.tgz", + "sha512": "3bd0a3c72a434fcf5f6c7c517c44cda009c78ff8ba22944ad02bdb54ddea89bc652dda39a7985c2e652e082ac7329c62592c0ac88f2608feea44d62e389d14c3", + "dest-filename": "@typescript-eslint__types-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz", + "sha512": "eefbf95166c7a9ec3f76fb3e0f77b546f2efd6fd9e799f6dc511cf9c410152048d2f1e6085dce31dad2c80b59854ab2c1fe958995d09696768b9ba349dc1982c", + "dest-filename": "@typescript-eslint__typescript-estree-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.0.tgz", + "sha512": "45f792a9c15e1cc1e5016cede1306358e02da16f659ec00688fdc66da5fdb95813618acc6d59c638d11f502892b2cfb1307165f9e1d98a2a6603c5a443b16e34", + "dest-filename": "@typescript-eslint__utils-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz", + "sha512": "5c9f540fdf9b6c3a386b87a9ada4f01b74ec34f7a207d69286b527780557cbcab82eec28c0dfaabbcf7fe81c8b30836abc831e23d1fd84e1d0b60fe28eb617cd", + "dest-filename": "@typescript-eslint__visitor-keys-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "sha512": "5a6a0df2a688028ed64d859b019b86f0f604867e5f933edd66ba93059eddb6dfff94bd86c26b3521c9d0e721ea8c37d7f05b798f86330ccdb77fcef305f0def6", + "dest-filename": "@ungap__structured-clone-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.2.0.tgz", + "sha512": "6262a47e13808b7c2c0753e126ae52723dc65cc9f75afb50fc90b4c68a29b87a1749d9ad752b4ea45ad8693d6489ed9880505c21eeb844eccc6118c2ad839d63", + "dest-filename": "@vitejs__plugin-react-5.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-4.1.2.tgz", + "sha512": "b0f2bffcf1cefa402449c6fc5c84de0756dfedfb24f392a6efeaede1e7ae451dd54b5fdcac3e3b726579c22722b099a335d7dea244d9c23324e0c8f6779f0c82", + "dest-filename": "@vitest__coverage-v8-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.2.tgz", + "sha512": "81bbbeec1d188142769e476c449ac5156e97ecd4cfe385a58627251e78948710034091f94b3b7d999f615a724f27c63038ae7350e492952bf2cd17f4bb50d205", + "dest-filename": "@vitest__expect-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.2.tgz", + "sha512": "2337b8890b4400b1c3b6d3d10a637e14aa8e976bf14e2354873a1b40516dfc13359515131bbcd108b3b2906ffa568e04e219d475f54ba39fdea8a3ee91c596ed", + "dest-filename": "@vitest__mocker-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.2.tgz", + "sha512": "7704206bc69e8ea7ae07e4ef5c23334907a6bd5f61344b430e9814283cce98d41aca5d8e1b6e353d259e2702911f70a20beb044ab9a815de3dadf9eaed3e119c", + "dest-filename": "@vitest__pretty-format-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.2.tgz", + "sha512": "1abf8541a9f7e02762600c291899901bc3e093215598044af3fc528a389adde4c58157e9729ced58bb8fe85b6d18d7cf2c985a6553ff7aebee8de3586abdfa39", + "dest-filename": "@vitest__runner-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.2.tgz", + "sha512": "83bc9f526c584b898dc64df5a9b398b12b761789b5134d8b16a3b9dd7a73837cca3212c03d90238dfca5f5eeb3ec7ad6e8bbd4753c00411dc71df2e3a64a35e8", + "dest-filename": "@vitest__snapshot-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.2.tgz", + "sha512": "0d4e1f0676d508918d070540eb1493a0d5eb9193528b0e7d1fcb5cb94b2954cb010c1493e277efb0fb041c31c6b564519ea04444142eed3ad32ac9268ea4d728", + "dest-filename": "@vitest__spy-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.2.tgz", + "sha512": "c70dbf4e25fcda5407034e9c81ba912856f9942032ddac50e07e12a1416152c83ec33b627adf9ca3ce8800c0ed17a566d6173b27a8f4f6887fae00e7f8974a21", + "dest-filename": "@vitest__utils-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@xyflow/react/-/react-12.10.2.tgz", + "sha512": "0a0222e87c257075f09644e9af47f12efff4b1154d67c21dc0a2f3cde0ac71a601c29bdf707d5014e09e6930ae127d45404b3f07c0a39d34a386cf2e76098181", + "dest-filename": "@xyflow__react-12.10.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.76.tgz", + "sha512": "86fc2f9d14b5077444c150e559ec6cabb61068f65e1b7fe62a8d63bf7f149a7a569b18a1a75e1b5ba56d10eb87130257d85bf3170f24efb2f229293fc2265534", + "dest-filename": "@xyflow__system-0.0.76.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "sha512": "aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781", + "dest-filename": "acorn-jsx-5.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "sha512": "51527213d32db4eb014080cac35b246fd9c0c10b91e70b860f7fbcd8ae89809966fd8f8a23dda836c30d199098743b15b511d26a4d29715e439e8e7ee2387db3", + "dest-filename": "acorn-8.16.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "sha512": "32703e613f1fc1f24f801c779bad0c36a6a49b7d173a4c88a07d72ea1b9342f0b43f0646ee48bc35a70b05cacf6cda28f2f119cbb269ba4efe8cc3be094a2f4d", + "dest-filename": "agent-base-7.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "sha512": "216ae8b26ff2ae7e377a22aa91f9078aced08a80e579a5d01dd0d53ca834152c3077f0eebf25fbf5366714e9d8a41edd72c140326b45ced66e5cf0ef49e3e417", + "dest-filename": "ajv-6.14.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "sha512": "aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15", + "dest-filename": "ansi-regex-5.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "sha512": "cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212", + "dest-filename": "ansi-styles-4.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "sha512": "0b1c29b7649f4f34ed5dc7ce97318479ef0ef9cf8c994806acd8817179ee5b1b852477ba6b91f3eeac21c1ee4e81a498234209be42ea597d40486f9c24e90488", + "dest-filename": "ansi-styles-5.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "sha512": "ed4be629a95646dd708232f546b1b1a12256ff44191487a0a5e1af646f648e9f2fad1bb9e574c76f09eaab61a95e6f6e2db72e8719b722a5fd381e0c651d5bd8", + "dest-filename": "any-promise-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "sha512": "f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd", + "dest-filename": "argparse-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "sha512": "6f43f4b193cab72bbc1e479101f0aad087d44592be4aec0c8d8d545c6054dbbc290224f0400225ab9e886c83becad93f2634b57cc475e1e7b958105f2a2e49e8", + "dest-filename": "aria-query-5.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "sha512": "08e44ea676a86a9d44d85d34d12eb6afa03ad2e1d99e696fa2685fc93d8395372b6353ab04a9f65211fbaa7e704c2f7332f0f4018edcb1d3d237028ffbb5a243", + "dest-filename": "aria-query-5.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "sha512": "73900c7f7e1b29dbcf850eed04686a92028d53332be1652cf960ed0b665418e52771bc4a313beac5872d8ac796dfe2f86c0f1e73e19c67afc0fc55b89bcba49e", + "dest-filename": "array-ify-1.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "sha512": "2338bc45071f7ea09e3558058a02a58b5b2c92521ba479c261ce809275c662807a82b26ac9e6f2ee3bf5d895108264c09c80e76dc935bb192c4f87733773d604", + "dest-filename": "assertion-error-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ast-v8-to-istanbul/-/ast-v8-to-istanbul-1.0.0.tgz", + "sha512": "d5f49f230b83202140e0b2a40b344f3bb17487315fd01efe5eaae5dbbca741a6be461d1ed44b34bfa9161cfa2db77954d7403202bee82876bae4ea698cb9f746", + "dest-filename": "ast-v8-to-istanbul-1.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz", + "sha512": "34ff403c4fad3be2ee2469fbffdf9ca21925ba726c5d689a5847d5dec8b81a2fd71c3c15360930af527745060522f3f2efa1a627dfdb5bcbf2a14d4b731c0a1c", + "dest-filename": "autoprefixer-10.4.27.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "sha512": "c2f52306d48637bfbb4a3369abff4cd93837e745190f7abad881592db4404756d23250a8d5969e5be049f83d3dd1ee2120864b05c4c359ee0c8788ef5036a3cd", + "dest-filename": "available-typed-arrays-1.0.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "sha512": "d313ba99877b241d987acc432a995a7d1a6c88eccfb7d574d9d74f08b6d8d716063ce5f6e0d4f2379d2a9d4c6008f712a183212a902e0538d0a1164202450347", + "dest-filename": "bail-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "sha512": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f", + "dest-filename": "balanced-match-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "sha512": "04bae011c453c17da8ea01b118e08dc8cbc64a9df96287ee633c3d87520c4d198aaadb40659554ebb6dd6fd3ebdaf50703cfa3de2dad25f8cee82ebee26c864c", + "dest-filename": "balanced-match-4.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "sha512": "00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58", + "dest-filename": "base64-js-1.5.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.13.tgz", + "sha512": "04bdac4ee1ce772d184f595889e5314f0fd032d3c10b7a669490bac64f0105856feaf730dd219d29e990f97b31f6293617f9580cef6daac1501f5afd3c5b872b", + "dest-filename": "baseline-browser-mapping-2.10.13.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", + "sha512": "44ab21408d51dd843e9fd609cf6410d78ecfeba10ba5ad45404836d0393ca16f6dd8a80b6e90cb2e9f5a199ef2f161d2b210e49c6d1b927a86c39fedc82b39b7", + "dest-filename": "bidi-js-1.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz", + "sha512": "f592e9ad64ba1043668443a98c2616d9cf159263af72420965f92beeb056e9d39b99f809fcbd46a52616e47a68f650f3e03d7e9f40a4cfcad4ec5c070d0886ff", + "dest-filename": "brace-expansion-1.1.13.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "sha512": "559ce72e0b70867f8c69cb7db5f8b0c7ae1f03d7ab1c7fcc0971147c1ff46d7ffa173ea7cb91064d7625b4ca1caa0e31140419b673b70c75965e2f118ae37b71", + "dest-filename": "brace-expansion-5.0.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "sha512": "e3cc52ae2658620fbca979daf64c2a8c8573b90c62f8a616a76fb99c262760a3d3af42ef0fcf49aa4d8eaf9a20c73d0d50c7c88e1876948517fcbc97f41e2822", + "dest-filename": "browserslist-4.28.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "sha512": "153882a4dc6dc226591c465b71b4c87198c44552029fdcaafe90c591397de7f031cc3d6768172d37b60eebcae233f80b48363bb1dacc6f2f21a1f00362ebaa38", + "dest-filename": "buffer-6.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/bundle-require/-/bundle-require-5.1.0.tgz", + "sha512": "dd6aeb3ae662c9a6993d6884b781b7f887df212542f476255ae7891015840f8647e1a2000b63e791d9ee46b47de0cfb0eb21969f8020956b49b4123c62abe0a0", + "dest-filename": "bundle-require-5.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "sha512": "6fa225bacf9cdd1add0e4f8984b2940107f3ce02c43f2eb0717a92edfff17b51044efb033fa18e446ed216e3ace9c203e5892a7215bf2d765b5f96dcf23ed971", + "dest-filename": "cac-6.7.14.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "sha512": "4a9d5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31", + "dest-filename": "call-bind-apply-helpers-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "sha512": "a0a95214c70cc29520d9e767921438e78c1f5a253fba5dc29097bf3c41dc4caba25fa4696de854885317bb5dc76a5199c5f530090cd91bbe3b617067d629bdc3", + "dest-filename": "call-bind-1.0.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "sha512": "fb2b3df7b53dea9a382b1fc0069042aa103d12ec49690583420ef6f791f8841a61bf72198346e804abb0629b78617a7a319e4099942753fb72313951a5a49e8e", + "dest-filename": "call-bound-1.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "sha512": "3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69", + "dest-filename": "callsites-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001784.tgz", + "sha512": "594df8ea7053925515f587d497ad1fa916d4e59ab25e5aafa354a08a01353805cae5b14bf0b2fdab52bb69aa7737bdfd97806f36a9e49b762b187898f6c7d443", + "dest-filename": "caniuse-lite-1.0.30001784.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "sha512": "7b2ac5d23885a58fb776b4fadfcddfd6a8646c6b0b4a27cd02303ad4852366398b0968c8b58e8b07d7edf588680e0c1f99c941db386ee752dcefef796fc35102", + "dest-filename": "ccount-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz", + "sha512": "3543d196e39f3a24ca04abd63ed483e0f845bd60aa3a2d01192b4d5ace7b5fd8eced7193a6b4a6168cf9174b56851e163e335e47d8d7a9d0bbfd4a522539e546", + "dest-filename": "chai-6.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "sha512": "a0a9db845c91217a54b9ecfc881326c846b89db8f820e432ba173fc32f6463bfd654f73020ef5503aebc3eef1190eefed06efa48b44e7b2c3d0a9434eb58b898", + "dest-filename": "chalk-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "sha512": "d6fedf810463ea19d2c05a6ad44bb4ca7aff083130d2b5e8d81eb5a97acb35d1d998f2a06fb7ea4b56b6270174ac84a8f6aefb8c323c54c107a00a67f2a0e864", + "dest-filename": "character-entities-html4-2.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "sha512": "4693e9d1ab13ffab9f466fff009570a558996c633f3248d017125c710447988485ff6d8d06db07a805a62fefe99a43d6a08509756c9e565793975c3274701355", + "dest-filename": "character-entities-legacy-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "sha512": "b21c7ba10d00c1e9ff05121d92392fcf9e0f9c4108fc48f05c3488669f3afca29d6da7c78750dffd16060619f885b7b6fae282f459d3e540847723f3dda8bd85", + "dest-filename": "character-entities-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "sha512": "881678178c116f239156cbb48cf57b81790eb066231873e6032bfe1e21c6f208b93ed0bd288da3d7ebfcfed9626d1be3a165f4dbbca9986fe7d07b4ee6deee9f", + "dest-filename": "character-reference-invalid-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "sha512": "420ceef247c1be8f9c038f7ada39cfd4a912e83a29e4d4ba83b4792c5609af86fc51bf783cf417524b02c3d3ef5e87973d145d751342e42d4941447648c1ad9c", + "dest-filename": "chokidar-4.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz", + "sha512": "2616544fb245710cbf1335bad3993f92d1ed9dca28f6f9f25bfd86b29358c0594dd42fd69a3b95ff1b52d387bd48e90bdac4ddc3454067650609c43d951ea9eb", + "dest-filename": "classcat-5.0.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "sha512": "7989b441606d52b0566561b4777f3a386030d7a67df793e2395a3607b6e35926c779d1a5e5ed1959aabae6438681448d7ac1080e407d2126d383f24af5d84264", + "dest-filename": "clsx-2.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "sha512": "4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529", + "dest-filename": "color-convert-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "sha512": "74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40", + "dest-filename": "color-name-1.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "sha512": "16ee2125dbf37b29427d03e9f5219689da73accb3bb53ae5bba55bf1719a446724f1048d649269e77f16adbeb42dac787cfc11eb8562638ebc3885136d194666", + "dest-filename": "comma-separated-tokens-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "sha512": "34e2a6f31864cc08f3171f01dafe4e0074febb9a5141cd9409ad95abd8d82ffdf5a36c22f66c4103b2c816cdec5795520b8f73ea91217db3142ef4a12a3dba58", + "dest-filename": "commander-4.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "sha512": "cc78a0e4dfad3d6011a280676f4671d4c15c75fa7226b7d32776392fe205bd49bcaccef8847cfaeb3d20c34c78b628e1e42a2b2a42940a75bcd91daf9a978244", + "dest-filename": "compare-func-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "sha512": "fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa", + "dest-filename": "concat-map-0.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", + "sha512": "44cb66c3488591e478615f9f50e4ae72b88040d6fd83ccc5479d8c582b65f9c09938544d2facde077f79bcfcc58448e39f87ccc57b9d9842e797f285fd6acaeb", + "dest-filename": "confbox-0.1.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz", + "sha512": "e4829c757d279d86af8ba1bb4ed3a1c24633ca37c995ab5b8cc8ee2d27c4da4613e693033a2959e0ebcc862eb7ec27032024e6cf7c0044fa3286ac97d58f97bc", + "dest-filename": "consola-3.4.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.3.1.tgz", + "sha512": "ea07c8de8b572b93e1e437c2388d5d6e5afe90ddc5026e5af7b858a1092a359c4e6986b958a7d71fe027a6c992fa2507da68150b60a0d90c3d9b938a72636b22", + "dest-filename": "conventional-changelog-angular-8.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-5.0.0.tgz", + "sha512": "49eb434a7b572e4f0987534e025d46bb9b8b88235261e9c1e6d9b461579929e3d12200d6f654089aba264f02daddcfc669edbdf2db2038cfbf0984fd5c097434", + "dest-filename": "conventional-changelog-preset-loader-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.4.0.tgz", + "sha512": "1c7045924d44102c719828b8093bb4f758ae0e942fe7f39abee09402e666ae45a99987f20fcd7a9e89b50afb5f5c9fee61f0008dabe01ef5c75f6f75b522caf2", + "dest-filename": "conventional-changelog-writer-8.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-7.2.0.tgz", + "sha512": "0447601bebcf979dc45654d393db19f7a69a805a74010e69c3f820890332d920a52db4e8d6bd25fbc75283bf6090b38ee434b52ecc2e869e5f5a7e91c04fa2be", + "dest-filename": "conventional-changelog-7.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz", + "sha512": "b5031a802382e7d11580d65c0b9ce5ed7a8edf45a48bd8bd27769c6d4be46a8b024fa257dc4785c090fb42aa783028a4467cd2d7c59757704b210ebacadbbaf9", + "dest-filename": "conventional-commits-filter-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.4.0.tgz", + "sha512": "b6f460ec5201365c8fce3746f3059194f1d02491c8ec3ca586d446794f4babe26ea0f87904aa4f457f3765d2ebbd7b8e4aee44a3f7bb4b3390854e07776322bb", + "dest-filename": "conventional-commits-parser-6.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "sha512": "2afa78e7d1eb576144275080b22d4abbe318de46ac1f5f53172913cf6c5698c7aae9b936354dd75ef7c9f90eb59b4c64b56c2dfb51d261fdc966c4e6b3769126", + "dest-filename": "convert-source-map-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "sha512": "7a2f00a2cee36b4c1e469173267100f541c9ffb5d09aa8256d1c277f60138dc07d5aaf3be15287f647e38e2acce94854dbf1397c561a77297284595d72a4a275", + "dest-filename": "cookie-1.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "sha512": "b95d903963f69d6ceccb668ca7c69189b862f5d9731791e0879487681f4e893184c834e2249cb1d2ecb9d505ddc966ed00736e6b85c9cd429c6b73b3294777bc", + "dest-filename": "cross-spawn-7.0.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", + "sha512": "5fbb2343371e521bb5bbb63fca5ad1645536152e8b462155a7aaca2cf836df2df1ddcdc338a030b97183a7e3c01a387a0929c28d8780ba5f29713f1b025fa548", + "dest-filename": "css-tree-3.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "sha512": "61489fb175ee9271e552c9a58326343cace03ceafbfc58c278f7c736dd23c66f37c07662e38543310eff7c63648d8dff8d5d4c0bed429996da1f3ba0c9e46da6", + "dest-filename": "css.escape-1.5.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/cssstyle/-/cssstyle-6.2.0.tgz", + "sha512": "166e4dbe161ab614675cd56776452c082b91eb70c22d557018e3b0430efcd9ca17162e478645ddbb6f3d979f479576416b0b3235c7177d6458bcbcdc0c27438a", + "dest-filename": "cssstyle-6.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "sha512": "cf51c629c632db103c00641fc2b9f43c0cbe3c1ed7fc64a3dd45495bda8aca7e37c566be825e675e6538aaa2cc4735952c50bc2aeb145fc4ffd240a2398a4021", + "dest-filename": "csstype-3.2.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "sha512": "b5d4009b2035f22e09ef0a6ba58abc0a5731672dd20b7d5031e072c8217246dec1547751110679969ce87b998511865459efa8abc1c1be4f498e989bc8457826", + "dest-filename": "d3-array-3.2.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "sha512": "ce0fdc85b5f2781b4c4352db0ff592a16d83a42dc8d26a663dd5beca74538ffc760c0598ac863ba9e6481e2768cf0576e26e226afaf5e653702302f14663b184", + "dest-filename": "d3-color-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "sha512": "af35323d4fd2eebc147e53322dcd444c37818f4351b8728a01cbee928cf086c86bea0e9ce5df338787368108d8d9b6747577862d67353c5d7be0fdad56f2a17e", + "dest-filename": "d3-dispatch-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "sha512": "a566d424b7444d503c95034979c331a177c7eb1fa63b6510a3cad2999f90ab171bc80de17dea6b160213fff1d6da79470a159e2083304b616afa010046485392", + "dest-filename": "d3-drag-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "sha512": "c11fd72b70f75dc2c8670a5bbd0c10e5f2bef1891db358a9ec0d93c5ed32c6771749dab52fdb24706edb95c79d90e5fe65c83118098b5f516b4466c00f0ce2d3", + "dest-filename": "d3-ease-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz", + "sha512": "0090dd60e767c910d5e5be80ae297308f3f07357a3907728c856abaa53ea4fbcd162385abdc4f7b92aea70cbec821d828283db2b7442c321da572c5870fd80ae", + "dest-filename": "d3-format-3.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "sha512": "ddb62cd6b383df7ba8f1aa897ca3f72563c089b830f199b6f8bf6f04a107276460faf89347ba39326bf999972278df854586803965f94890135fa9353d6cfbda", + "dest-filename": "d3-interpolate-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "sha512": "a7728fe4709ffdbbe305248ab9789de99aa28f1ef021f356f89fe668fb3e8b0477e5ab792426cb513d0bcc5d5c9e36c21d686acd04c83762697bca5179b20415", + "dest-filename": "d3-path-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "sha512": "1995b8eb8835487eda83763b8578dff11a14b80148aa494e02adcc465e0e69669b4c5258f4f37f1356249615cb87e390ddf33dc92da73a40a84be58b67a92fc5", + "dest-filename": "d3-scale-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "sha512": "7e64d159b34c9ac996abac4957c0f5f54fe0c3f6f0ac77cd5f1ac837e1df6609f3a931e9f633a628c86c4d48d73899d939d658f50dbccb8c9e6cacea0ca97195", + "dest-filename": "d3-selection-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "sha512": "49a2c1bb01a6dcc395891ab600193778ba31c1910ba47eb3865dc56c0a09ed59b58287cac7a125d486f9cf6dcd504845f40b0697bcbe7732dee42c36000ac64c", + "dest-filename": "d3-shape-3.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "sha512": "749c4f065cc2ecdba00763c32f0a3d43c2624d1dccddee3f5c0364ade29253117cbef5caaa6d587eae10e5d97c6ee765ba745595451a0d4805b7b780f03e8d2e", + "dest-filename": "d3-time-format-4.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "sha512": "56a2a3cc12de8db48c4f82206e65600e3a6462b3565182676c21a8f3be2eecc30a216b082d15fe3a95ff81393c32a8e94f503f73a1d8d9d080efb64dd25910d9", + "dest-filename": "d3-time-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "sha512": "9dd7c9fc9c7131dde7c37d6ec8aa18da76a2bc5fabdbd57e2dcd2cbd9c5ed49bef2119a2f2152caccbdd3b0812d68eae0479a2cfdd60790d3294f3f46a3d5550", + "dest-filename": "d3-timer-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "sha512": "0292af7e3b1247ab60d3ac6b2f8df80b45b274bafb25ec0107757eff7f51307b1a5d3386d339adfce0177a78393392c19b4a239b126ba68990559d5a3ef04be3", + "dest-filename": "d3-transition-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "sha512": "6fc02657791f41aa9602e69c6cfb8d6cbeaf6a19ce25f94e85ec4bccc30d2e06badbefe7874273bc9d1a3bfe5ae4c560505192ec7bb53fd3f4de8ddf2640c2cb", + "dest-filename": "d3-zoom-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dagre/-/dagre-0.8.5.tgz", + "sha512": "fda4ea9a746d6bbc7b3020a913193b1d02f63b8a30093da1f0d4ffffd235390f6fb76f4f6b4073480911e65c0551c43be3dd72562ff709753d8d0e68d0c9f64b", + "dest-filename": "dagre-0.8.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/data-urls/-/data-urls-7.0.0.tgz", + "sha512": "db75c770217e7281987af8ab65c793543ecd7493aa567fb8f481f2c60b339be2488872e80764e498fb6c6243564f5a6f4521a4737e4be8d1ecd321e43764ae98", + "dest-filename": "data-urls-7.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "sha512": "446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8", + "dest-filename": "debug-4.4.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "sha512": "a88305a533199a7cbe30c222b4007a0fb8953c4a2b570e984115a4bdaad3913e2d05e48b2e21f37308faab4326612142895a62a8f253244608ae970fcd5108be", + "dest-filename": "decimal.js-light-2.5.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "sha512": "6298108884d6dc95c69edcdd526c9447557cd761e7f13d58557842bbec0edcea52e1e53d97861d0f7aa3ca229d57a9af576f736a990c783dfdd145447f696452", + "dest-filename": "decimal.js-10.6.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "sha512": "1ada50601dbcdcaacfa7a9d1c39d2add4f7f55f3aeb5939ed74dea94dec13cfe80776ef16273885afe253f3a3c1c200bfa6319a1f27d284cb7d1faba31f68ae9", + "dest-filename": "decode-named-character-reference-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "sha512": "a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d", + "dest-filename": "deep-is-0.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "sha512": "ac132f23396903cbfa13e489668a3ef87018aac2eb920ecc49f2229cc3c5866928af0ed7f9d39754942cf904faf731a4cccc9f0e720c3765a2775f8d6cbdd3f8", + "dest-filename": "define-data-property-1.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "sha512": "d237bea8f28710ca21bdf453084a370ab3c6e9c033018826ccacb1462612483912e9e1897725499bb59a600e4409a003f702c1d93e0411eca603968555c61708", + "dest-filename": "dequal-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "sha512": "06d8f604e38ef37a375b21f9f5ef0c817b3111055c6ab9143a9118aee6c1d2eaf09cdd74c90dfae2bb22072535d67665a966199b4e62fe87fb8a8e26ce2841b5", + "dest-filename": "detect-libc-2.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "sha512": "456988aa17057f5951601bcd9abeea4cdbb20adffbfe7b368dba69d7e3da96013fac341c053d1f8a848c52927dde2ae55210b986b838718a9ee94fb42265b4ac", + "dest-filename": "devlop-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "sha512": "5fb049db2125b27389df4a59178b882037c1115805e17101c4bf41c61cba767ae6e61933aa6b161c64e21ea46221336133214bc808969dd2093fb675353b5e0e", + "dest-filename": "dom-accessibility-api-0.5.16.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "sha512": "ed982881e4e78ee1dba3e72dd741bd15fa749a27f5ee2762d08c9635503fc1cc1c9bb34f383fd610754fde7ee7dcc857ab1a08626f1de8cb99a21616219e13df", + "dest-filename": "dom-accessibility-api-0.6.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.7.tgz", + "sha512": "5a12ff62ebdec865c969ead594c6065a1bd0b306bb9b20c6d7b3fb56eeb91160b4e68f2f7de35bbcd7f877f04ebc7f7df995be2e542c73518328c6b5bcd2ba77", + "dest-filename": "dompurify-3.2.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "sha512": "40cf2adf30dee7c86a52a8eb6903a6cd9d4b207f525902539442821f8909da842f2d993b45b417bed0ccd9712addfc2457d082bef1f82c0d0057ea2016c04cd9", + "dest-filename": "dot-prop-5.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "sha512": "28837f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8", + "dest-filename": "dunder-proto-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.330.tgz", + "sha512": "8c5372741e6416d614a1b8782245949d77b20db8dffebf607141177b5c5cadc5312067d37733d703e95deb30516f0be02065730e597f2d32220f3b44b5c9129c", + "dest-filename": "electron-to-chromium-1.5.330.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/emoji-picker-react/-/emoji-picker-react-4.19.1.tgz", + "sha512": "0660dda889ca155609a6feea4bd588e8bf7ae7a703002f85903bd48c976ce7a9ca1db6954c135e0e62f0281cad467ceedfbcd61ecf48b20ee0b793d3e37cbac4", + "dest-filename": "emoji-picker-react-4.19.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "sha512": "42885c99eed5d629db01fbe322d830d046b1557e6adab7551191d106b110751653b2c2c31ac2fc2f0af39e5f2843fea4b9324e34b6837068e434fdb8ed712170", + "dest-filename": "enhanced-resolve-5.20.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "sha512": "68df7b357585e805814da85f54e22b07f352864ce2e47ec5f6bd6cf660f77038f82a8e5fdaa86156860c89b5c5ec694bbde6ff0f68a859acbc97123ded57a7de", + "dest-filename": "entities-6.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "sha512": "7b79d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de", + "dest-filename": "es-define-property-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "sha512": "65fe47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3", + "dest-filename": "es-errors-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "sha512": "e4f384714b99c9b1fb21d986b03f3095fd00239e7031e70cf6b5414c8fea100cb67359133a6dc38c5623ac1748d8adc16898c961f605791b4cd2df6cb2746ec7", + "dest-filename": "es-module-lexer-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "sha512": "146807da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c", + "dest-filename": "es-object-atoms-1.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.45.1.tgz", + "sha512": "fe38683a3fc5c7e03e208c8334ebcedd322d1a694c2a1b57f084801ca13dd1ce1bfe4d6da9aa8467eb94a9fa54f033275b9720349bfad3acd2e798c6bf36b45f", + "dest-filename": "es-toolkit-1.45.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz", + "sha512": "46ae2f6c79d890ae5fc2ce4d17b3184d4ebc14f444d5a8d7ee1790ffc4175d6a8d82aa89fc69269b2c48cd49dfd92aff6da91ff25e78ef5e8270c18762132bad", + "dest-filename": "esbuild-0.27.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "sha512": "5948f6aa5c5a42d3b883a3eae5cdbd193716183c9df22b4bf334e58a98040b3dc97ac02288e2a8b5df0953aa2d0773c00a01bac64254c9585ba0c4be6e37bf8c", + "dest-filename": "escalade-3.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "sha512": "4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80", + "dest-filename": "escape-string-regexp-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "sha512": "3b47749b4e1ebda37310fa125bee7d31ecdff10b742277e01880499e90b4877347fd68d4011ec120a51fcac0bab68766b6267f034a14552f0671ed16841ac7b0", + "dest-filename": "eslint-plugin-react-hooks-7.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz", + "sha512": "d51113132961b763ba14cfccbe09f2bd3fbc2b6d702ea0cd838a83e75663de0ba18ede37dd76e79e456db47332695c80143d374125782cf4b9884dd54263bb5d", + "dest-filename": "eslint-plugin-react-refresh-0.4.26.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "sha512": "b0d5ce7ca0a7ef8aedf1120228cbc94bb5ca57f5e4f6403b0f226bf262629374bb0b0832dea964926c92dae401de388983a54d75977fa43049bb49ef1b63654e", + "dest-filename": "eslint-scope-8.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "sha512": "c2973e2d77a2ca28acc4f944914cd4eacbf24b57eb20edcc8318f57ddcbb3e6f1883382e6b1d8ddc56bf0ff6a0d56a9b3a9add23eb98eb031497cfdad86fa26a", + "dest-filename": "eslint-visitor-keys-3.4.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "sha512": "521764e6c7ea71e7bff47feb08e262918cfaee8d1ad93c3684644f386d98d51d9d83b6eb45ed6e1b4c9a3500c7bbe4cefee40f17fe5e09aa6f612987523b7b25", + "dest-filename": "eslint-visitor-keys-4.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "sha512": "b43e34787c40df98743c421935e223907a034786238c9a77e1b88cd260efa6505efff981f881c2a870c657ba7117eecc9254ef8a085c08f3d90bbca75b28dd4c", + "dest-filename": "eslint-visitor-keys-5.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "sha512": "5e83237413b07bf7ac56012f2e636c0f72111e49bb7db288506beb95e9682575198031e283620f58d9e2bfe1b08f2257cee36a56396be7ee32554663c9c2707d", + "dest-filename": "eslint-9.39.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "sha512": "8fa3c0436b94afbf4f6610633f90b97e197c7b7f459919ce8ec0f99469d6ac553c8b61bbefab412bbfa73fc2ae4144d3c80654c1f42a5c082b547e4c6c7f4261", + "dest-filename": "espree-10.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "sha512": "029e86d16430714fcb1ecbcbc0e3757c0417f59a7403663a63f709065f6bfc96d6f74672838ff36c6eb3cca6b639300b10b6ab60798abb41a1a4ce443beed3d2", + "dest-filename": "esquery-1.7.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "sha512": "2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a", + "dest-filename": "esrecurse-4.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "sha512": "30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004", + "dest-filename": "estraverse-5.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "sha512": "845b6a20365321467d0572dbf32e29606ca4ebec1e9088af3554dc9af93c3683a1f957919f9cba7041f36d446b59b7e9d5f22a7558a98a5ce3fa57da69d3599a", + "dest-filename": "estree-util-is-identifier-name-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "sha512": "ed150a7d781230c933b7a66e5e6a9aa4ebab2c63cf7e08fa97db9167b9511a896f934cb6ca871cdf92dd731282e4f419767d8332a8a8010d8da1672b4ca9a6ea", + "dest-filename": "estree-walker-3.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "sha512": "915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea", + "dest-filename": "esutils-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", + "sha512": "9a5b1347219a3c18cf79d93a06fc3e6aa6ec5c3b680320339b930eec9814fb2551c8c4393bc6c3e0a71c8bb052f397fddef79e81e08f90bf11e062c29678cb17", + "dest-filename": "eventemitter3-5.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "sha512": "927bf279ab9886a8ce62f43ae8cce748cb3cdf0987ac2c9c34437a028fb601e6047f150892e895c5d11ad6a94610f2be59ede7d131e20dc8984ac09c816fc3a0", + "dest-filename": "expect-type-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "sha512": "7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe", + "dest-filename": "extend-3.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "sha512": "7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1", + "dest-filename": "fast-deep-equal-3.1.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "sha512": "96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f", + "dest-filename": "fast-json-stable-stringify-2.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "sha512": "0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77", + "dest-filename": "fast-levenshtein-2.0.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fd-package-json/-/fd-package-json-2.0.0.tgz", + "sha512": "8ca9a6f58b6c35737bf3d452ff4992cce0b5354abd9a455deb9bdb49256c29d8c6bd85c1b84e2859ed90384a0579198983e94fb99c699ab7c5725361a1132779", + "dest-filename": "fd-package-json-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "sha512": "b486d8b596ee70eb340511aa3c992c84951874bf920c7edd54cf208f2f84469dd60148cb105244fb4da46a7c87b708d63a7c2b298062c0098cd29e242c90275e", + "dest-filename": "fdir-6.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "sha512": "5d74d4c02be2b1ae6869c34644ff527cdb5804d00c8be44fc011666e564417b37bb301d8412ebf65f93b491c31e03e63dc21f6d7560d45ca350c430d55f6429d", + "dest-filename": "file-entry-cache-8.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "sha512": "efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e", + "dest-filename": "find-up-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fix-dts-default-cjs-exports/-/fix-dts-default-cjs-exports-1.0.1.tgz", + "sha512": "a5520409a9d6142eb51f3976fa8382b68277175ee4825642ffa37de1e456c9c160047df9847c742e2eb4e1923386c7a1f7b99fda9d1cbfbbd5ace646a2a86512", + "dest-filename": "fix-dts-default-cjs-exports-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/flairup/-/flairup-1.0.0.tgz", + "sha512": "20a944fa936f2f647e9152f590485462a47156a7859e3888bc758330b15735aab251d15740cdb0b5ee3811f31824d1e45b5e97f7dd6dd9983c6a92a486fece04", + "dest-filename": "flairup-1.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "sha512": "7fb71c14f2b7497147a71d795081b2449fc525072db8a674cd5b8dddfac1a381e72b771acbd5445b447ac8f6051c2d0082a86e90fcca8eadb6b790e6032a86cb", + "dest-filename": "flat-cache-4.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "sha512": "3e30ec7bb47385c3e4209c32e6deca3d641267d7006f341771a7ec7ad4280fbb0e2514251a290d6f1ef2669d8ea2d0e7272ac371bc91ab74ed6f5f2260eaa4c4", + "dest-filename": "flatted-3.4.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "sha512": "74ac75d9e442548cea0b1146a65c8528930fbcb11682636d52ba53889211e6ef7bcc48511bcc92aed6e83c7657c7b75a2f1415ae5eb8ddc4f36da6f6b64423c6", + "dest-filename": "for-each-0.3.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "sha512": "d57d4d4ed889a61af29ffb8b433df086d63a8caddf4eaa04de884ab34b53f948ebd56e7da28a719a8121ecbbb9a7abc168f6e0a0cd1bcef7805b8422e51c960d", + "dest-filename": "fraction.js-5.3.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "sha512": "e71a037d7f9f2fb7da0139da82658fa5b16dc21fd1efb5a630caaa1c64bae42defbc1d181eb805f81d58999df8e35b4c8f99fade4d36d765cda09c339617df43", + "dest-filename": "fsevents-2.3.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "sha512": "ed71cdc47eea5fdc46e66230c6486e993a31fcc21135c3a00ebc56b0cb76a40af6dd61e9e8cad194dec50521690a9afea153b417be38894811f369c931f1b648", + "dest-filename": "function-bind-1.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "sha512": "485745988262fb26c2d2f8e51cdd191951877379601340f13c04f47638d583e9233a74aa725aa68f4290ef291338b3fa631a2a3afb8038319d707267fb8deade", + "dest-filename": "generator-function-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "sha512": "de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce", + "dest-filename": "gensync-1.0.0-beta.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "sha512": "f5f4a349aa2cfdf448548a7ec5226513a95fc21112ecb36d29a08121a987b23af69dad418800493e8d263a38f3f062435116ab9823c6a9a89583999f8dbf7c09", + "dest-filename": "get-intrinsic-1.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "sha512": "b1349f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2", + "dest-filename": "get-proto-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", + "sha512": "c936fef035f30d113382f62687ab3dbc7b125421de0b41b73c8e5b1173411ed9ac84f9cef92e4eeea80b10e9f423942f332ea4a5937c2b534a1b28a52dbf77c0", + "dest-filename": "get-tsconfig-4.14.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "sha512": "5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0", + "dest-filename": "glob-parent-6.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "sha512": "a1a846bee3064253f0fe2bc86018d54ab5807d62c17a4bb9b693c4d9f38f2e2f961df7c859bba1dad0a38724214c13cc7f913d8c3107e053a64d8818c1b2b0b5", + "dest-filename": "globals-14.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz", + "sha512": "73f735e62dba56b278211b7967cf439c8cc21839fd11c79b89b8403a3c3989ba841ec135c0b52090f9fd44398d7142b253cec679a2fadf79f227ea6994547665", + "dest-filename": "globals-16.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "sha512": "65429187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46", + "dest-filename": "gopd-1.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "sha512": "45b279fe398570d342703579a3d7939c12c9fc7b33595d0fef76dcf857f89d2feb263f98692e881b288e2f45680585fe9755ab97793ade1fcaac7fa7849d17bd", + "dest-filename": "graceful-fs-4.2.11.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", + "sha512": "8dc2cb7e4a68546987eff227302ff5848bce3d2521dfca09b4686face146ce2a04d4367ed185b5e918263898478ae593bc688943d675224e3726f9113d1bc4f8", + "dest-filename": "graphlib-2.1.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.9.tgz", + "sha512": "e04ef5134ae939a42e251d80df10d9f863351f2598bf5725479f2d0bc7a640d7907b7447ecc03349b6adf95d301bbf0b401a3a9ba6f3486fcbe2906e0ac82751", + "dest-filename": "handlebars-4.7.9.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "sha512": "1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d", + "dest-filename": "has-flag-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "sha512": "e7924d2ae216fafab829ed418ce4e333661cb5022f093ec61731f099f64f1a8e709eb82489dd1842d9c095e152aae9999b86b3de7d814be7ab6f2e62a49760ae", + "dest-filename": "has-property-descriptors-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "sha512": "d5c0cd77027625aa2199bdec8383a629a301c2e0b8f2c6278b91d4c360efb02f0b8c64cb2bd87e79bd57e91cae3877b8853d142c25baf22a26863528294aa53d", + "dest-filename": "has-symbols-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "sha512": "36a00307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397", + "dest-filename": "has-tostringtag-1.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "sha512": "d21254f5208fbe633320175916a34f5d66ba76a87b59d1f470823dcbe0b24bcac6de72f8f01725adaf4798a8555541f23d6347e58ef10f0001edb7e04a391431", + "dest-filename": "hasown-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "sha512": "ce5eacf0bc0dca8d4ff6ec3e5c91af66d74517519d0243a0f2e8cec3ee0fc9befaf3be1f2e9b38b9e1d70e15d6764e981d0e8e814b629e5886ed1b18bc26db06", + "dest-filename": "hast-util-to-jsx-runtime-2.3.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "sha512": "f3c254374ea2a4bc2c9eff9d567f8e2183af02ebc1332fd0a22e8eee6407c5d3d7a63cbe09deb14645b0bb1ec328efb8b1820bb4b05120a82c7694b681073bab", + "dest-filename": "hast-util-whitespace-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "sha512": "d3052809c2e9fb912fe690d6d8eae21c2d8c2426f02f0b91c7e800a8c4ce9062892620422e3b6bbf2e0f5941a7e8c21579f79c469ce8399fd457a88674eafe0b", + "dest-filename": "hermes-estree-0.25.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "sha512": "ea9123aae1f7aea688e9c6005d83dccfd312e2b63a4789e0460ae07c3b21469b54648737970d0c0882481838fdfbe99fc923ae3d31c1e27ad25bdf410af38f20", + "dest-filename": "hermes-parser-0.25.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", + "sha512": "470fc1d8335068f04808d5c49bc6da945cfd6ba5a966b9021a9716169cbb9c28fe37285276a5e2a667efb665adf7119fa74c199c1c41fa25692e640c62de3b4f", + "dest-filename": "hosted-git-info-8.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz", + "sha512": "095f535b76377fcff04f405115cd7f280550dd350789799a01be955bdbed88c15fed22e831dd4f7407385b728538511304951bf7429ab47aa5b1931657e47d1a", + "dest-filename": "html-encoding-sniffer-6.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "sha512": "1f688cb5dd08e0cb7979889aa517480e3a7e5f37a55d0d2d144e094bb605c057af5d73263a9f66c8dad4bc28340fac2cf22aa444f05f28781bc228354a694b7e", + "dest-filename": "html-escaper-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "sha512": "2a49c9e7491322727ba8849c1778de68546932913cfe57e24ddcdffedc17c8f04b006acb4539a4cf701d4e729e878d17f24f4bd9f758c04a7fe365865c844672", + "dest-filename": "html-parse-stringify-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "sha512": "a25e943f2056aacacee8427248fcf63bb652afce7a583ac4ccce7332aa7e14924b18c5b7e5c2d89a6667974bf3b40671454a0d6491530a885f8ee209f08e1005", + "dest-filename": "html-url-attributes-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "sha512": "4f58240226180d6631dd5e419b2bbb1dc7dcbcbee652b4d688ceb239f6b73c8a6156227f8053dbbe2750faf7aa48e1dc8bf3f105c0da6de50d0b3a4e3832598a", + "dest-filename": "http-proxy-agent-7.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "sha512": "bcaf4fe7f8947dd97de4023e255c94b88715b5de287efb6b3abdc736d336cb10bd6e731b11da77c74d4e8503678dbf082588b7f159531379815f071fbf2c2e4b", + "dest-filename": "https-proxy-agent-7.0.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-8.2.1.tgz", + "sha512": "6d983cfb86dd99a3a20290fb37b04f4fd5bc30b646fa73d338594b889893f2ecca5c58e1c70e2fda27ab0973b0079b050ccb6e0391b8920619d00ce767143f73", + "dest-filename": "i18next-browser-languagedetector-8.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/i18next/-/i18next-25.10.10.tgz", + "sha512": "72a516d99dc4911c7b36a4b2cb08e48022caeca2c22fa20554570e346ee7558209dde919d7f3798d4b2284757a06adfb35f860b5ccf125cc5db842ed8d3c24b9", + "dest-filename": "i18next-25.10.10.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "sha512": "75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68", + "dest-filename": "ieee754-1.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "sha512": "86c053354a904c3c245ad71d608da2d3a63f9d4044b0d10324a8d676280bbde832f240ee2404bcb91969924710a721172f467fa630f2e4706632344227682afa", + "dest-filename": "ignore-5.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "sha512": "1ece7dc4135f508ba730581601b197e5cabaf3ddc86d68382a7ae36d8c17dedc74ceda2b5604c303a076b317fc7a31c9e30cfc06a194318967ccd05eaf936f1a", + "dest-filename": "ignore-7.0.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz", + "sha512": "77ff974cddf37ce0f28ebf3d80cde63ead56357d81f2962cbbb78e462b5dc32036b01b9b9d397795a625064e2c5d8e4551ae6a4d91810cf2480956efab38e56f", + "dest-filename": "immer-10.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/immer/-/immer-11.1.4.tgz", + "sha512": "5d110508fa3a92cc55ccfe04d1e903e5a31d7fc58cc2674d6b3eafbafc60238d146848aeeaade9f17e76694e86772bcb6375d75fff11ec93935d2b73fe705b47", + "dest-filename": "immer-11.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "sha512": "4d1dca7eb4d94d82cf07a8d48dfc7a305f56716ac72fdb2ee5339b2b866462005d58a3ce1684a8408744b93b91f36a66b711f6b29586f61e9eb707ebd692c1a9", + "dest-filename": "import-fresh-3.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "sha512": "2665cc67ac2ebc398b88712697dca4cea3ba97015ba1fd061b822470668435d0910c398c5679f2eece47b0880709b6aad30d8cc8f843aa48535204b62d4d8f1c", + "dest-filename": "imurmurhash-0.1.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "sha512": "11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2", + "dest-filename": "indent-string-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "sha512": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1", + "dest-filename": "inherits-2.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "sha512": "35bd9cb4ec8d47c0ea4284743b0446f79b8d5880b40b594281fe4d6b3e47e898bbd8a67c39c1592f3d8fe6c360c25ca827c6227f5d6832e62ce690506bce9cb0", + "dest-filename": "inline-style-parser-0.2.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "sha512": "e4787b635c106ef639a281a03db0da2f98982c03f331352b8ccba5b241cb1fac27bff03ed6ae6b8046a2baa12307ea3119721566cd4517e47f28f37765241862", + "dest-filename": "internmap-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "sha512": "156cb263ad0c79337279246990cd88af2d06f61a6befff640f8d260ff706404ba295c6584b8a24cfc48dd90eab2c227c81b0ade9f37eac2fbab4c192f7d2dac5", + "dest-filename": "is-alphabetical-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "sha512": "8666d8857ffd314305e6e87bb4e5f22bf9f466f5a969de5c681035ec6b02eafcae0aa696962446e4ad6a4bd8a799484431a381216effc210274b0bde5bf2ed67", + "dest-filename": "is-alphanumerical-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "sha512": "edb55b8b486e8ffc2b2003b36fc5356acce0f64762dca37f0b2535f424c8eed028658119a0bf720835e96d737eb8fb2e5a73f4d9ccae8358257aaabe4d4f9808", + "dest-filename": "is-arguments-1.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "sha512": "d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c", + "dest-filename": "is-callable-1.2.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "sha512": "00007d862a2642ce435d6711075aeab31194b2d6d1ae814e3cf540a26364ff75c74792721190a13b24d67b6a1ac8a9ec4acaff91c1aa17ecfacae1fa1c7a4dd0", + "dest-filename": "is-decimal-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "sha512": "49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1", + "dest-filename": "is-extglob-2.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "sha512": "ba9aadd5290690e0d6f6db06346e66b574d7b440a2cf0b52da4035eb533e8093dcd7175bfc0c7adbd69fe98ad3c1c39e4076dec2b3cd944e43c7b933bd74e2cc", + "dest-filename": "is-generator-function-1.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "sha512": "c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a", + "dest-filename": "is-glob-4.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "sha512": "0e0650a76e3573ca0ee9c03549b4c45a25dea31578daf95c271807f81de18b5022aaa2abb9947764617c227ddf8f8fbfcbfeeb1ef94e64b66d809ff8b6d60666", + "dest-filename": "is-hexadecimal-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "sha512": "76ba831b771b733c7110946839770e8ed769d49fe5ca9d66367d316b39d1b3cfa6b8186041cae76eca68c795f97cec341e73276df0f3be710c12da83109128f3", + "dest-filename": "is-obj-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "sha512": "f8f822faf32e50d909c84c62301b792251683322a7af9ce127852ca73e7c58e841179428219905c8d1c86c102d1f0cd502093946d9dd54db0344deb5fe6983aa", + "dest-filename": "is-plain-obj-4.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "sha512": "6c261e440dab5626ca65dfacdbadb98069c617fb7b0d2a83b3874fec2acb0359bb8ca5b3ea9a6cd0ba582c937c43ae07b663ca27586b3779f33cd28510a39489", + "dest-filename": "is-potential-custom-element-name-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "sha512": "32362c2873b93bb982b26446c5670b5a1785a8df4327fd939a782f8ca5e285ee9e7d588fa9cdbbe3e171ff87d88ffaf4dfe112bc17535cad15ead037ae07b3d6", + "dest-filename": "is-regex-1.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "sha512": "a7711cb227178e2b7b49ab245c7b35840f75431813c38e85bfa10528a192e434452c3f322a7a218c5de1c688eef786ff39c319a10ba4ce93e9044f6e2d52b381", + "dest-filename": "is-typed-array-1.1.15.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "sha512": "447c4c2e9f659ca1c61d19e0f5016144231b600715a67ebdb2648672addfdfac638155564e18f8aaa2db4cb96aed2b23f01f9f210d44b8210623694ab3241e23", + "dest-filename": "isexe-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "sha512": "3bc769b05fabd1657ff0c35129f9e6aed09686e2a3c6bab6c3e8e9cc12f95192938b62de5569d63a6591c4595eb0938d99cfb02c01af29064439a9e4a342c54e", + "dest-filename": "istanbul-lib-coverage-3.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "sha512": "1827c4d66b6c1c63842c253c7bf67b616ce99b26ebc7ff9d4937cbaef63ca9199a63acd74ca5a7e964088da005c34ebd89c9ba19530d920bb437323888f65437", + "dest-filename": "istanbul-lib-report-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "sha512": "1c6616592fde86a4d5df1375d22db7b643e4a47e3a30b08830534269a28d6af0174c5d5192ac5ac043ed9e39c667a5ca4889c12a488e03904a4be699898dc0bc", + "dest-filename": "istanbul-reports-3.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "sha512": "7a48a50923758f046f21b81e83fe7b60587ca900cd6f00dbf714ffaaed830076c5159522708978ca055a02fcef78c84c56bdcb9e948a4cd9f0b7c3e839f98a85", + "dest-filename": "jiti-2.6.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "sha512": "df8c01fd8ecc5bb6f38ca46350a4dae3a23667b795eb646486f6be2a4a295bb42fbff392581aaf91263bbeeb0e3eb36e65c506ded029bdd560341f0f3a3dd23f", + "dest-filename": "joycon-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/js-tokens/-/js-tokens-10.0.0.tgz", + "sha512": "94cfd40734267c9468f400576cf59e9a2bdd096f15d86f051da1ddca941a232e76dec9d48e88345bbd5ac965d38e247e8b178cc951cdd977299d377f9623e0fd", + "dest-filename": "js-tokens-10.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "sha512": "45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29", + "dest-filename": "js-tokens-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "sha512": "a90293e334315e5f252f006d1cc5b06937067c5399be23897addcecbfc661a4da0647ebbec224cf44bed7dd4a48167004d9863ff9e49674ae6cb79b2093e65b0", + "dest-filename": "js-yaml-4.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/jsdom/-/jsdom-28.1.0.tgz", + "sha512": "d3e32840d632af6ac11ea3b5c62965b5f0e357d1bbca660694051ace07032d06947fc2431dbb86c2cc4de94f6a59a125678c35076afbc841882f719d796dd1ba", + "dest-filename": "jsdom-28.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "sha512": "fec33774ed853b35e3290849ba8d10d7bdf07f628ea3cb7823cbc7cba945f69a14a7b6ca4f4fcd1c4f1f3d7db73f07e19f291faa70b6c51c4e9d5c395ee18868", + "dest-filename": "jsesc-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "sha512": "e1b57905f4769aa7d04c99be579b4f3dd7fe669ba1888bd3b8007983c91cad7399a534ff430c15456072c17d68cebea512e3dd6c7c70689966f46ea6236b1f49", + "dest-filename": "json-buffer-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/json-edit-react/-/json-edit-react-1.29.1.tgz", + "sha512": "fd0dd9ae58dfe58519bd09e6fb61315c93e3122b4e35138d9a22d73cbbef9a1b49ece15dd1b0780b71c1914ea28c147d4c28560f1c3a72225fb3a77a52dc5976", + "dest-filename": "json-edit-react-1.29.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "sha512": "c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756", + "dest-filename": "json-schema-traverse-0.4.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "sha512": "05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f", + "dest-filename": "json-stable-stringify-without-jsonify-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "sha512": "5e63967bb7b21d81f5e1c2dd54fa3283e18e1f7ad85fef8aa73af2949c125bdf2ddcd93e53c5ce97c15628e830b7375bf255c67facd8c035337873167f16acca", + "dest-filename": "json5-2.2.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "sha512": "a3154790747f1097f608d5e75b144b5ba9a0ec9c82094706d03b441a62f672d528d4f3538a7d4f52297eafffb8af93295600bf7e7d648ecc7b9a34ae8caa88a7", + "dest-filename": "keyv-4.5.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "sha512": "a3e34efbc5ab462404138ffb9f044984dd475a9566266e75d690475313cbb69d015084b3941a653916129937250a726f42adad2aefec825df156991ced95ae41", + "dest-filename": "kleur-4.1.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "sha512": "f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029", + "dest-filename": "levn-0.4.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "sha512": "60aeff0a54ede2400ad2fa3ac375fe3e79b40f671fdaf3c76e139776836d8b519ad1a9753f84c1661c23013be33702c40429cabe325cda34201d71f4344c2502", + "dest-filename": "lightningcss-android-arm64-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "sha512": "473786f49bb96da83606fd7f97095526f044deae93b57b247592cb0b27e0e69b7e1cbcfd06a94808eecb64ced51cd4d39ffe4f4611c50528e4e65738726b1c3d", + "dest-filename": "lightningcss-darwin-arm64-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "sha512": "53e42c069da6fecdb0aa95184ffeb09e56a07596ed65d9dd4a6badfcd26a94270c2d35a9e66b82ac80fe2b9509ea3a83d8116c85e8c26179e23c36cd87bdd5f3", + "dest-filename": "lightningcss-darwin-x64-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "sha512": "2424e281e74492c664ded1d34ed86731d55f19feb5164cbc262d84e188d44c4417d78c62cbf953cd79eed6fc2265eddb61ed2af92a6c487fc24de0d72ba5878a", + "dest-filename": "lightningcss-freebsd-x64-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "sha512": "c7aae79e945ad862f4cd03a4b7aaedb376033f376e2e95afc0017a10c8571556570f8b4fac190416acc6a30cc2b085ac3e3a922beb723443835015de7951d293", + "dest-filename": "lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "sha512": "d279ccca8c8e2d12577db30e8a569245c2c7dc9c39cfd1c33467d3fe0c023e06838e7c748bcc3bbc1cc52c54757fa08c2ca17c8156de6e69143777dafe4409a5", + "dest-filename": "lightningcss-linux-arm64-gnu-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "sha512": "529424a1e9ebe14244ce054862923cd250c5bd198f560ea8a9ba0d1dfa07e024087cd03e1cead9ecca3b2993f4d9d0ba2e38213d025e06cbd7849a1dff09c806", + "dest-filename": "lightningcss-linux-arm64-musl-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "sha512": "57b42be7622166674a3d5afe56dc3ca3e58bb1025809377c96821fa4368c45619465f04e60425ec89224a862033193f03f1db8a5431fc12c7123ca61aff31b38", + "dest-filename": "lightningcss-linux-x64-gnu-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "sha512": "6d870ba7e55bd1ac2c89783ff34b8245ecc2607360d7f9779add20cc79d657d5cfd56e6c29ae7f4c274659a47fcc13363de17f1dbb10bff8f651134e895bb15a", + "dest-filename": "lightningcss-linux-x64-musl-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "sha512": "f126c2f01478d294ba6da08cf2c6ed6034b011541de099454ce95a0f78161877d385370006734305d6ba79365ea9ba1f6a5209845c74a8ace01c999c3d39c677", + "dest-filename": "lightningcss-win32-arm64-msvc-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "sha512": "026abd07f4a86587438b5905ae88e7a2a3cbc58850e16a395e22fc11526b56c07c011a02d4f596e951ad4f458a09e9a3cbc682fa5a2e2678d2ed4d7cc776f4e9", + "dest-filename": "lightningcss-win32-x64-msvc-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "sha512": "357601ce29cdadb95fada3c6cab6cfa03d7d0b587d95f23fd66ce0598bd75137b8d781b3fd7d450f65c165264ceeb453acc03c24bdceb4068689fac82a1439c9", + "dest-filename": "lightningcss-1.32.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "sha512": "fef945280a07e4282ddc87be24b8516f03ac09078f001894ded2757a01afc90fb7dd1fef730336665d9047f2f38ec05e22d3edde84955daa67fa6e27403be9cf", + "dest-filename": "lilconfig-3.1.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "sha512": "ef297295eb1943f3d5dbd8e110397751f8e8e995fb802a89af917b3caaea73ddefedfcd2ca6b75069c0453c9c0517b3cab3cefaa16e384ae50660e8cb7f1e406", + "dest-filename": "lines-and-columns-1.2.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.5.tgz", + "sha512": "2173ba382b3dca0f2d30acdf3d9d589a17896d90a212c9c175c074de5d0e71f2bda6b2a725bf7ab22b870abe45977effca8f439ca53e4cba71cd352ca70f6c86", + "dest-filename": "load-tsconfig-0.2.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "sha512": "88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553", + "dest-filename": "locate-path-6.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "sha512": "d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321", + "dest-filename": "lodash.merge-4.6.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "sha512": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a", + "dest-filename": "lodash-4.17.21.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "sha512": "f518bea3425881e8536950410e832a225f065ed6d683bd753b7b2b7ed707859d1daa7113a8b6a820ad31d7b7d4c3dac54a52bfd0d96c29ed00861ca5e695c4da", + "dest-filename": "longest-streak-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "sha512": "24d03365c5eb0ade365462ee633d337c0cc37c0bc9596e807d8943050c835790c2948da6e6c0262be3883bbb39f577ec46c587a74da3009ad169d3d1193b7a49", + "dest-filename": "lru-cache-10.4.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.7.tgz", + "sha512": "698fd1f9a12c45e9667b5eca1906bfd59488a4ba4d618ae172b7a929366013e5b758cd7a60c09a3f03872c7b26a2964710b5343a38a7d653d5c4a47432286770", + "dest-filename": "lru-cache-11.2.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "sha512": "2a9340450037230bfe8d3034bad51555bae1f8996baf516fd1ee7a186cc014e5cdedd93f16f89a0d6f0b1e62b9d8395c1f858fda7ea023cbcdd5a7ac045828f7", + "dest-filename": "lru-cache-5.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.563.0.tgz", + "sha512": "f1d5cf076188e1d23c8d5e0c8140c605e2dd1a4f1e91fa9567405d2dcad1ce8706806ef996d3449964be804eeea24285ff4a1252e7333434fe83d845276dc590", + "dest-filename": "lucide-react-0.563.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "sha512": "8796e0256a7124db306d4eea0ab574b4829009a4b76e53c3aea296c7e431ceeccbd73194ce28fd5c258bad22ec24fbb9b7e79603fc9c7adcd800ee4838c71601", + "dest-filename": "lz-string-1.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "sha512": "bddd85e1853211728670b1e8abe4c4c828f1b9e49e1e7171cb28cda7cd328345d5e2f5219c37abfe5bef96a33f6ab0796d740de4adbfde88a7c82472c7c4f609", + "dest-filename": "magic-string-0.30.21.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/magicast/-/magicast-0.5.2.tgz", + "sha512": "1376498782774bd29fc1d8d985ed9a7e3e91f651883793e17abd69177f541ab5d1aaafd50da195206375dc18c7776bbc07ad6102b0063a7b28ee704ea2e5b74d", + "dest-filename": "magicast-0.5.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "sha512": "8577544d960854eb75131fff8c0422fb04d9669529c018ffd10b0ecea7a06f7ac630c78989212ee712c79d87c1ad1578447dbe38248e3bde48b3fef1d562786f", + "dest-filename": "make-dir-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz", + "sha512": "b888f8f9f690f8c807830516d65d8fb0f82564b38b393d6e12bb74e9d00fb71da48ed78b0246ec77fd0589883f3064be8bb64a2dbef0d960a5c4793338ebabc9", + "dest-filename": "marked-14.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "sha512": "fc85ed6f0124e474cfc84c32297ea11a4617c4cf676e3eb807e8a55499c2fd1e81d291f91b85776f4a556cbec3063e2d921040a696d05257fa17a5e5f4b1eed6", + "dest-filename": "math-intrinsics-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "sha512": "5b8980593bd294abdff0be89f9537dc8b4aa43d00e000bc7ba80c098f933e1d1dfe79de6e60563d9e8da747261a0999c9b11273afe8f6bc5c9869c44f7791bf1", + "dest-filename": "mdast-util-from-markdown-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "sha512": "27a7fef61529fa575366a2914a0ed5c3957a32a8c04dcfb713881fdc214d72e64d583f1777223acd0f06a87edff35ebd30ce8fee13014435469e7ee81c1f645d", + "dest-filename": "mdast-util-mdx-expression-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "sha512": "963ff3f2fd2be99b6c37f70634db5e9a699fa0b0056678cc6cdc8bcc169f8f38a438cfa096b8cd1cf95fea540339371c8fd9f96f43cf8a11016e19de3321acd5", + "dest-filename": "mdast-util-mdx-jsx-3.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "sha512": "11c98ea71b19f7a0af94fd3736086d1f512c2edaf49fd4e6e253d425405c715f51c143a77aa4b2720d7d9f91c6cc27fed742e8ccc45239bb55af779ed56a07b6", + "dest-filename": "mdast-util-mdxjs-esm-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "sha512": "4ea202c32bc9269070bc600c6638f82769f45fc416a76d5bf65d28ede5f2549db960d5986c90d52320f56d95c4e96b55e9198a2556264002966b4cd6380073db", + "dest-filename": "mdast-util-phrasing-4.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "sha512": "71cb6cab6c29e6f4ec2c871aca66e552b8a24dc65dd02c16b426cbbeb3b36020d9a16c8c355f2c67b92b8f4f454a7b22262dd656c1cb33893a0eaff268fc825c", + "dest-filename": "mdast-util-to-hast-13.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "sha512": "c63ebcc0c4ef19754e2a89e6a20e8bc3224aad85d93ef97069b6abc938cb87d2eebe8bc1fca007fa4be2f068e3fbbac98ec162db79e4531450bf52aa4aba0ca8", + "dest-filename": "mdast-util-to-markdown-2.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "sha512": "d07e38bc38a69f9d45d18c2fc522529b47820ce25346598dd11d72061e072e3f70895d439f44285c66ef1405a3da1488b554e50a6045d61a8a948c9405514b3e", + "dest-filename": "mdast-util-to-string-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "sha512": "f58b9b9edddef00d0e2b0c58497ca12f29865b8b02b9f70b1ba55d88375419590f869a8bc65bcfe6f975f7cde0423265deda9baccef7d668da65a3faf00828b1", + "dest-filename": "mdn-data-2.27.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", + "sha512": "a7140943307a76318f5e1d3c75a704968305a29b0ea865512853d8bcf3adf570d9d476ac6e00d903be02246ade494e06dc093b105246a221f66aeabec9721280", + "dest-filename": "meow-13.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "sha512": "44306b1c4312c5514b83ac6f9d799bd40cabd96ccb0168de4804c0a31c0a60957de1378d6af82821d0346bdcadcc3495cc1cb660a14af9e9823ce1226cb782ae", + "dest-filename": "micromark-core-commonmark-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "sha512": "5deeab0dd2659266c5444c694ce9918fd37731a5a66c081da52ac142f085aa17b3527e001ea2476da1277db5586227b1552b3ffeda8e758fc3c618dd0a226720", + "dest-filename": "micromark-factory-destination-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "sha512": "54531e932404c6a216ef120285c5e7e28936f58137ae7bb2bde5b7c194165aa17836ff56939ae027df4accfbc78e498f5c5f7715721b069e98756dedef5ffb56", + "dest-filename": "micromark-factory-label-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "sha512": "cd19318ed071c4b77649cd1df9f6e712e9ec4e3e3a4965e05dc899987ab49036069dc93f6521a3f7fc142d357de6ea1e6222b98515cfda627df14a3872afcb42", + "dest-filename": "micromark-factory-space-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "sha512": "e5b67edc28e101df5e0a16131ec8f2e931b1a4e1522a028a24f271af6f778d36dfaf2d8a0e85a48416fa4dc3d5078366cda3e132cd45ae6f40647ece0f80a3cf", + "dest-filename": "micromark-factory-title-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "sha512": "39bd27b99dcf2adfe7d213911f2be80fdb9986bf996bcb05a0ff8e9cc72758ae659e04b300b81060a32bf512553962ea418bb29faba5a865925ddc1fe85f3495", + "dest-filename": "micromark-factory-whitespace-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "sha512": "c2ff2d7544c9ded8521451492ada5828e62218fdbebfde87be4e13bbc2a9080b1332ceb28be9d5986875b32bd20ac6b1cf8e49e896f0fbd0c3ea0f7bf8d57aed", + "dest-filename": "micromark-util-character-2.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "sha512": "41434510e3c42df9afbfee3188d836b1161e4bf3fce294d6d130a03f9cdcf45a577ad1d8d1a6fb4b12b201008d09cd5e2b4e39f6ea0b235cb9a0ee5573575b84", + "dest-filename": "micromark-util-chunked-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "sha512": "2b4907ccce9a7d6fcc6de59858b8e81d0bf5b2083643d11c707103cd293188ffc469a80dcc29bb4ff58c299deb8cc6ef229bc189983047774a33282d038986d5", + "dest-filename": "micromark-util-classify-character-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "sha512": "3a70271fc5239b2e7d25cc99c3c2526caf5c1a9755638e0d2a048cec4f4487b0e22d2d84f513507f474e35a183cc41bdca3125e6172a788b23e217d190b1ff06", + "dest-filename": "micromark-util-combine-extensions-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "sha512": "71c51b624e82c1576498240ccabeb8757cf8d847c71a43d09418f9a7b6151b3abc23b0ad8d7649aee6c061ecdfed1a7e6e33ec7a244ea9eec6e9fa0577e944bb", + "dest-filename": "micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "sha512": "9c357fefb163e9e1f5ca7c2c7184ceb1b2bbad1fff523d1b65707025945f68b109d6218147a9087cd9a536a6aa25feb8f443f417735635d7898b4dde96594d51", + "dest-filename": "micromark-util-decode-string-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "sha512": "737715c76cb82aa527c28a5c3bd6ff482768d8eebb2f0249fd4caa19f6e281a85f7a02fd9b2a041680d8660913edfdfa4f46cbaccf6165301a0321fe3c20178f", + "dest-filename": "micromark-util-encode-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "sha512": "d9c3448980e1096288f86b3d4f44e2cac935dfa4a7475de184ef325ba04637284e0b8a98167c05d6729f0f71c50085c0e5ce3946b206d6e6f5d46897798775c4", + "dest-filename": "micromark-util-html-tag-name-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "sha512": "b313ea9a8ef42f201126cd30d947250023d4504aa5b42909e8f84a74c203b89de049ffd0fbf1887b758a9742236ff1b21fd94ea5491100edb0a7419590bbd2f5", + "dest-filename": "micromark-util-normalize-identifier-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "sha512": "55d432c455854f6fc51898304272586ded638d0a0d4d2e118e09664a34d496950c6bde47b71f4d1de616e2b1832736e3bc2b25f5e2e3310c0678496caa6cdc1e", + "dest-filename": "micromark-util-resolve-all-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "sha512": "f4df48a2667f62e18665999079cd4c6e0c6d960a2e8314e8755c03cf3128b8f2a8dea156bf29851d67270e2dafcd5d5f7fa91ab3db9c5bea37cb324af5807501", + "dest-filename": "micromark-util-sanitize-uri-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "sha512": "5d02eee79da249cb6f9c47205f0ebe4b1ef919f9403cd103d6ac7b78127ec327416f62826d165ef8dc2f20410c33cdee9a5d7ed96497a4101ca7d2140a009858", + "dest-filename": "micromark-util-subtokenize-2.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "sha512": "bece6df00a5ab9df4ddbc9200ab45474479de1427ec1636f89c1cb3f109af4436562e018df5334113cb9cb5bc0df762834f0c54e08446e787a79f684f21e31d1", + "dest-filename": "micromark-util-symbol-2.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "sha512": "630d04092a49a15885d6a4d4e030ba370b42e1a586b75124cda401f0a3cfc82451f33f5359e5741db1051933be658d70076db39b19c9aa13f24e93950a97874c", + "dest-filename": "micromark-util-types-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "sha512": "ce97bdf10ea4bdabe90abd4d3d548231e6c229f0fb080d8da99fabca478d84e348241a5cd6d14ab7d86e70b1b085ade3353348f251e972d5895a88a6545e0f7c", + "dest-filename": "micromark-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "sha512": "23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02", + "dest-filename": "min-indent-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "sha512": "3142e454b7ca1980c561e8cfd3b40ebab0cb2d0a5c8e4ec5c3eee35d2d91d9ccd1433479eb21d1bde5393432443af887fa111364a4a4224e5cf93db71a315432", + "dest-filename": "minimatch-10.2.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "sha512": "5608d652c9e74fa9fe35493a799abbef37857695b62d60f33facc51ab09b1d789836e9790f3aa4d871d0e6e147d83356e576e9f3e8d5cda78db7de2cb04125e3", + "dest-filename": "minimatch-3.1.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "sha512": "db2c8047ca8190ddd8ba17896a7529582e54ddb6f9a2c0f2c0d07c4730d5943c031dba1c009bdeaaa8f5bbcf92543ee39164f8cafb070a95aaa96a80c5bd3308", + "dest-filename": "minimist-1.2.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mlly/-/mlly-1.8.2.tgz", + "sha512": "77e39bc4c40599bb75d2cadeb4d0f2b70b7ce55adb92185403f2411a6d4c3da589eb90a5e303a02da075358bc9499d047f4dcc30453fd31a4f317508436f547c", + "dest-filename": "mlly-1.8.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.55.1.tgz", + "sha512": "8f3e31f9324d147c07b70b95f6f03daccba371945bd021229531301b6ad14a97bf03b25d92e8fcc4f2adb4280e87ebff9641f2ec7b19eb8a23faadf1a00165f4", + "dest-filename": "monaco-editor-0.55.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "sha512": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394", + "dest-filename": "ms-2.1.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "sha512": "cfcd4634eee79d830486b1a1f4b7b29a8138f98af45a7e4c70721930ae5c7d00a5f8d0d7d3cb0266051cf7fe8c1e78bd216b852e6d59dc74c25eedb3f5f37ad9", + "dest-filename": "mz-2.7.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "sha512": "37c4a97cf527529d5b2be3cc616f2a496765f54fb0c0d588e102b13980f2f4902ba3758c5fba7639e55117dbfedf8ee99da90d7af3e688784d999d876c503beb", + "dest-filename": "nanoid-3.3.11.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "sha512": "396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b", + "dest-filename": "natural-compare-1.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "sha512": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb", + "dest-filename": "neo-async-2.6.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "sha512": "4dd0bc152807cfc330b70f60e4be2047f4a1f578523ffd031244317c41573a98ae9792221e01da9f65616186fa6a00d27e9e0abaf96d98602973c1cc814ac890", + "dest-filename": "node-releases-2.0.36.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-7.0.1.tgz", + "sha512": "9629f13404fa33479b11864ec76b4eeaf04416c5609cfa6ff80563934c091df69421bab7d499b74fabef65a6ab9ce7960e1f12867c17b9a03233b593dd1cc4ac", + "dest-filename": "normalize-package-data-7.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "sha512": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52", + "dest-filename": "object-assign-4.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/object-property-assigner/-/object-property-assigner-1.3.5.tgz", + "sha512": "0c8cc7ccd4939e9a06f103d008336b1dae8edef2cc864b4adc8822aeaa64e76dd460855ef0934229c9f90bd5b22d0c49739f041ac0088a212ed7482a3ebb9df3", + "dest-filename": "object-property-assigner-1.3.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/object-property-extractor/-/object-property-extractor-1.0.14.tgz", + "sha512": "7ae1b7310c23e350cc6df93591e82e63e8ca42f69ff6bdba35e102b5bdbc1bc8c006785956ac5512f205cb0582db5d3b712831f1d8a603e257b8201915f6ec4a", + "dest-filename": "object-property-extractor-1.0.14.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz", + "sha512": "b93a85f4cb8fada010f88b273dfdfae911b870ff51b548bb30b3b537728473ec1bd1aeb22a978bd259a4d880758d8e4a1cf0254dce93fc945d0bf62ac4737091", + "dest-filename": "obug-2.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "sha512": "e88a50ee6294c5171934b20e6d1d21cfb971b1aa5248860d649c173c6785d264d5a862852178f50d070ca13db64b744e70bc98febcf43d669667d6b25a669df6", + "dest-filename": "optionator-0.9.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "sha512": "4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945", + "dest-filename": "p-limit-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "sha512": "2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f", + "dest-filename": "p-locate-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "sha512": "190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa", + "dest-filename": "parent-module-1.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "sha512": "186d804185a82e02fcefb81020a7913c63b5c45f7e786d6e8c86f9b284b980fbcb435cb6a3c14bf74c3641635d7fd237eb5329a7bef6e9cfa58f7534a8ad6e1b", + "dest-filename": "parse-entities-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz", + "sha512": "f66e26e464a05e32f8023ba62b3ab51607e9dd9f2bb2f8d135b9e45707eed88991a84e43d0b9d8d907c37a7d7c15263d0b9ef7614e57c526a97476536765a894", + "dest-filename": "parse5-8.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "sha512": "6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff", + "dest-filename": "path-exists-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "sha512": "a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9", + "dest-filename": "path-key-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "sha512": "5948c6700a8fd6041a72841ef8e049b0503b2dde03c97b9422367971cef970b1ef27b76d36c4ee8298712000f0b294be02b68051e3c22ab495b4f2c58ff17cf3", + "dest-filename": "pathe-2.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "sha512": "c5c787dac9e1b5be4cf658aa0ec984c39ea57b7efa993664117fe311bfd1c4d1727a036e97b78db250973fd1438ff2dcbb45fc284c8c71e3f69eda5a1eb0c454", + "dest-filename": "picocolors-1.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "sha512": "40ff3c0402af31a9bfdcdc47eaf8f6a36d51e8c8f165401dea7970012fe99c6bcdf4854ba1c2c7c46608cc5860e9f510fb9b61e8fe1dbf8796f635f70d2223ec", + "dest-filename": "picomatch-4.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "sha512": "4dfc92aecff99e6f1f4090dc043b949e0dd53942ac77b4beceabdb3938865c77f15f8c0adf56ab77e86836ebe489c33fd981739690e000139ebca4ac0781bf14", + "dest-filename": "pirates-4.0.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz", + "sha512": "fc99b933846fb4115590a591bb604b51334ff3f3366be530b805fe69ee3bef4ab5a951ad7e31be5930aea68662c689239878abcbcb88f9d958f0a5d85791d555", + "dest-filename": "pkg-types-1.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "sha512": "ffee55153721243a158f76e1a2a8ba51eca6703d340c0c1bd672706a6ccfbc712ccc9e05a45e9234d6d46ce4bcc88e7aa87cdd57c78ad2a11f3928a87644ddc6", + "dest-filename": "possible-typed-array-names-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "sha512": "a0fb53338a1eacbf945e6c7ef77cad65537cd91ae563fc0f515f08783c45af32235ce2c5d6937e12628f2dbb9bbca1d3d870b6d315ec0801f667e08a57a3b3fe", + "dest-filename": "postcss-load-config-6.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "sha512": "d4d342b3abaeadf9156de5c6e12f09153f6dd7d9b8e480a789ff3358b779a0f499e74427c0c7caf87de3bf8d3c7788f0ffb06db6fe5ac52e48887a0b69534779", + "dest-filename": "postcss-value-parser-4.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "sha512": "396feb5fc3bf8d79e6f36132d64e38a4e6cfb5d6e57e2b969eb77c5fb189ede9889823acb6e9c66d7529a7b1dd06b1505faac9ce7dec3d3dfded6a79682c021e", + "dest-filename": "postcss-8.5.8.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "sha512": "be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6", + "dest-filename": "prelude-ls-1.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "sha512": "41bd60cb93ab3f9fb30dfd81be7cdd9778ec4dfd6a5d531acdbbc2a0a86d2aa56ce3f60ae28cd7e2029024957235ef9c6a334f9f42a80b4302dc552668758499", + "dest-filename": "pretty-format-27.5.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "sha512": "71d19e7ff76b585a32743d49b0ccee15ff35d349d997e193fb269c7366c471e7797fd463938cfe5ad1544c1bbd3e13a2f63fe37e604fbb498c118e3021d005f0", + "dest-filename": "process-0.11.10.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "sha512": "4f0119f97fb20899987cbed33d439cbc167841fa13e587a742226e5ffff4b61e770c4eb0d31c4b12d7cade2cabc9015d757baf908939d44120ac943458990e99", + "dest-filename": "property-information-7.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "sha512": "bd8b7b503d54f5683ad77f2c84bb4b3af740bbef03b02fe2945b44547707fb0c9d712a4d136d007d239db9fe8c91115a84be4563b5f5a14ee7295645b5fabc16", + "dest-filename": "punycode-2.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.7.0.tgz", + "sha512": "7ee7ac6087a6b6d6a1f7b5e6b081e6cf838e4431e2485cf273d1cc008ac21c9a2eda36914262fc70527be8ae33421863f23cf038194e8b805a1938e339909f4e", + "dest-filename": "react-colorful-5.7.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "sha512": "01725d2e8f2480c6e2998f793b668a42ab33da25a2f63320289851040c44084e081717dc6b30762e6ce5a08a226c92370b5d88958db4f8a15a2effbbd5b50979", + "dest-filename": "react-dom-19.2.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-i18next/-/react-i18next-16.6.6.tgz", + "sha512": "6602f61d4a16df850a524395eee490144d420e744f0feb42477cb04ae587eeeda26a99f3f3a53c062dd5aeceb6d2a343cc27f5178ecdc609421247210930ce1f", + "dest-filename": "react-i18next-16.6.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "sha512": "c361accae90beb62099e569f7ff9d17a03d047de02fd75da9af3169921d1278cbb4ecff8a1c1919931ef3acf0f484ea90777563ab0ff9ee7ae539b1db81b10e3", + "dest-filename": "react-is-17.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz", + "sha512": "a8ac55a292d3fd3c80e815f751ee4dc1a6ceb00ce6d10ee400fc2ae8bfb0583c22b18b3b47cbd9d27457aaaeab92e79ba31a648ef2c653d7d689f897fd9645c5", + "dest-filename": "react-markdown-10.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz", + "sha512": "44e63d7ef1e1c0e0fdc927eb174c26beefff6ca090e8079966ad6724db5b0c2fa49390ee4ae357fe7e9859817f498cbb6d26dae03e054b3f0325e298fd2febfa", + "dest-filename": "react-redux-9.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "sha512": "4204f9fff0f78df8c96fa1ac8f1bf44a5a63db78a9f87b4ea673609dbd92e73537081dba1bf2033c6a32e11241e36c33144e3a0d1b2cb5b5bab4a1e829b840c7", + "dest-filename": "react-refresh-0.18.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.2.tgz", + "sha512": "691ed250e4704ea016d090de896174edef52044f6a1a907247d23c9094f987f16b04ac4f312e93882eeb9953be802d2ae76071ec99e359ef19d6c47d7da37860", + "dest-filename": "react-router-dom-7.13.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react-router/-/react-router-7.13.2.tgz", + "sha512": "b57d4079ef80ae52903fe34851ded213a2e2f828862b042d6d2f857d1c4f5fa3dee2f1cea3a9ebf5dfbebb973083e67c2bfc7cb4ffbba8b9ae8c3b5fac0a1424", + "dest-filename": "react-router-7.13.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "sha512": "f677e9da16290b03a300dfbc4d914686d584c20bd61d7a84487f2a4fcf404ff956925a4b38ddb62dcf2912d9e9b19cfb5666b069b494d200a39e3f1a0b47ae1d", + "dest-filename": "react-19.2.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "sha512": "18387090b7f2c162f6b3abc48f286b8be79799f1fa8f52fb244dbb5a1a8b798ce887f0370c16981848f61ff1c56429ff90c7e29bbdc55f11094f0d3a5adc50c2", + "dest-filename": "readdirp-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/recharts/-/recharts-3.8.1.tgz", + "sha512": "9b0ce63b5b3db052f44ddb94a709ddc4250da17b01c37bb713fd3e03e70b72b49f422b521bad8bdf637af4686a52bad3e6a29c004de9086548342ea9aa404142", + "dest-filename": "recharts-3.8.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "sha512": "ead0c0f20f7c59ed337741af55e313f5aac43a74f0f6a334dcbf5c2576828eb8a9d4e3bbeb844304b05fac1e1cc333460e3e4e0398a8ca60bd1a48b381624352", + "dest-filename": "redent-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz", + "sha512": "356dabe53ea4b1429709a6f384bf73fa1db4e87430fcd26470b9b518f226450f08cdf5f0446aa356128919ab878ab4f40c0bb2cba863767319691a00732d0a97", + "dest-filename": "redux-thunk-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", + "sha512": "33dfc42ea17a7f2f05c269299c5d12dd828ea8cca8589e3e092e447e0d9cb77a18f5d690bddfcf73bd45a4666c56c6e5dc2a5bf8821c8c10d49e7c817506eae3", + "dest-filename": "redux-5.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "sha512": "142c6528b3469274b96daff5966a588a3314cd7d9eb315b9c50aa35b1c3678715f4b631275a1d520d166863a3ea8dd5685984d8a6ab475901337da47d080eba4", + "dest-filename": "remark-parse-11.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "sha512": "0e1ee5e7b89a9da128229cdba743c2f542807424959250fc139469c3b1137db4e5dc5a9c38e82ae6ad8b54386018291a06fee9db82578a43ddbe18661ef28cb3", + "dest-filename": "remark-rehype-11.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "sha512": "5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13", + "dest-filename": "require-from-string-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz", + "sha512": "2bf046e9e224cbf481a737c766ffdd77ef49045892e12595ec522e8d5c8946ec7a7b8e7eef745a5075cb9884757fb58e31a434535926eaac24951431a49258d3", + "dest-filename": "reselect-5.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "sha512": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2", + "dest-filename": "resolve-from-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "sha512": "a9883d28fdb8743e6a91af49e3b774695932d0df9be1f4d4f3d2cdf620e78c1e706a4b220b8f6bbcc0743eb509406a13987e745cf8aa3af0230df6a28c6c5867", + "dest-filename": "resolve-from-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "sha512": "b1e4b64e3dba4c154e0b6348736ace7b6cb664eede7f1213b4b65c1923a71c734e43b0a489405fc34230d9c93ac642213f02e128d2d2f013be844a6781096acf", + "dest-filename": "resolve-pkg-maps-1.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz", + "sha512": "566b41dab154fc6ae8678a0bf3e66a5e0480dfc3ba191f0a488bd698416feb7a50d06e8a6811fdb34ecf3bc5d35cfe2f23edd4254132a4e7e39067e6481051d3", + "dest-filename": "rollup-4.60.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "sha512": "c7ff82cf862b8a643141c7097f998a11b21ad4dcde091348e44725fde92695869a9a974d2cf6a557221c09934d1f732f9aa06e815e53318657bf4963b255256b", + "dest-filename": "safe-regex-test-1.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "sha512": "c4083b48e9c486b9b9cc8de9b8e38acb2d4e31c32520965834963bc4b0704b37b452384f2e759f8f6185d84a53d239b368928858a1cbb1a4926a37f7e5b7189c", + "dest-filename": "saxes-6.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "sha512": "78dbfe5ab55b2aed5fdef6d8253ff1b62179b320391cf20cb5ff48818fe72a0d2c5aacc0504bea63fc66ece71973fa9a7cbc7f88ef4580e99e480a78bf9b62fd", + "dest-filename": "scheduler-0.27.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "sha512": "051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc", + "dest-filename": "semver-6.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "sha512": "bc5282d8812d427561a53efc875629f30cf0adff0233e33328c1c62597c1b738593727111675ec1e4e84e53c4892432c80d4bb99d5f700607bc7640cd9d8b894", + "dest-filename": "semver-7.7.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", + "sha512": "a1e33596953f52f853c70fa0ddc21fc571f225173fba275ddf22b53f6e368331ddb34b9d401633b37cbc8f8802096f9927b69dd3272d95df1160ef9b76eae5bf", + "dest-filename": "set-cookie-parser-2.7.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "sha512": "a6045ce21278fec363582492f409a74b8d31ddb34c0d39271e02f951a3014ccc899d4f741205a1d51cfe302f5e16ee01b8dfd4c198ca42e63fd6fdeb33b1cc7e", + "dest-filename": "set-function-length-1.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "sha512": "907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c", + "dest-filename": "shebang-command-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "sha512": "efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4", + "dest-filename": "shebang-regex-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "sha512": "c9bc7458ed7ff1b4812c459766f11dee0316dd29f7245956dd3bd7d674446c32d135035a78d37c58ad26781c0f74068e23b4ed4514499ff12cd7386bac21eeee", + "dest-filename": "siginfo-2.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "sha512": "51758c2a12cec1529bef6f0852d40f5f17d853ebac7726ed52b2bff2e184f0240cbeb84ea70bf30c1c23d108522fb31073bbc8b084811bc550f3e203431a5f40", + "dest-filename": "source-map-js-1.2.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "sha512": "52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee", + "dest-filename": "source-map-0.6.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "sha512": "8b9bafb7c0b78a489678d65255935671f64f22d1503ac6135003a47143c677c0ea0f2d6e3948a48ede5d1beb91970caf475d3c15bf4339de06bd77d3d0ddbfb9", + "dest-filename": "source-map-0.7.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "sha512": "3c41a5030ac6f325c65d18d6df67c66e0eba24094e0306ce6eea95a09a6ffe6460a160d07e01f5c033efb735b25123405c119293c87be796036db704cb7487d9", + "dest-filename": "space-separated-tokens-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "sha512": "90df5d25bbe7c921d42c896e0c7cb7d961d152edce83b07db1b63bb6c14b72d42422a9cc877844ad881d3234d8baa99c5d7fa52b94f596752ddc6ef336cc2664", + "dest-filename": "spdx-correct-3.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "sha512": "3e2538dabfb13b851b512d5bba8dcb3c992394eef8df45e7e5254085da73cec3c7b236d855f9679c57404e069b9cbb9d7be0aabb6e69e8dfa0da5c3f3c5b1ae3", + "dest-filename": "spdx-exceptions-2.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "sha512": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1", + "dest-filename": "spdx-expression-parse-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz", + "sha512": "0962dc0821fb54bbb5dd380e1feafca753bf667c21aaffdd6dbea5a96cbaec6fa94f590799e0fff95dfa0156ffbeaf10308430552849e92b25e453e1d1fb9277", + "dest-filename": "spdx-license-ids-3.0.23.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "sha512": "d573091397d0a358c61fa63fede6e7c0f3811242049d3e10177d9de51d7e557757bde334201309b7ccdf6b15f53f7421570ad87bee7bebe8e400db524b69816f", + "dest-filename": "stackback-0.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", + "sha512": "1d310730d89e6a4127a1edf7b21058719ecd5fcdc00948c2bbc738d22386119b27823f7346792a4bd8f5a6a40f5f0a1b07465c553936ed111bec2390d14479f7", + "dest-filename": "state-local-1.0.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/std-env/-/std-env-4.0.0.tgz", + "sha512": "cd430fb50fc7058dffe7455ba64ba96076d1ae84d16493d12efade6a6804ac9572b3471ebb33240f8e09fd08ea8478ceccae36190dd06487851b53987ceb4aa9", + "dest-filename": "std-env-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "sha512": "2307c1a6d6ad94ef90089528d7d02abeb3cdaa554ca56f5810bd8b21563e469bf6aac8c21b16832cd460786b1058985f22d79bb8986c1922e36816cd490fa27a", + "dest-filename": "stringify-entities-4.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "sha512": "95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45", + "dest-filename": "strip-indent-3.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "sha512": "e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a", + "dest-filename": "strip-json-comments-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "sha512": "46341eb7126bad424b40f1db2e4bba53fa1c1adcf28db24c3fd94234aec083408d87af749d21fcc28a961fdbb5ea732360102893e8bb24ed4d3f6a4ecbc22c3d", + "dest-filename": "style-to-js-1.1.21.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "sha512": "2c837bad42c8d2306c716418692b30a6dc9d7ab95aac592343eb7bf67cedcbcb5c20071e5689845652f31f954fe029acbfa32d2a1b3ba9a022c25729f8c81ac7", + "dest-filename": "style-to-object-1.0.14.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "sha512": "0e1b939af656bb1e07d543a758c077b24d2c6da0953a84198eff2ed6b0e84d5d074dd19e9bd864019b65e09672f0fdb3e018349d3f9831e385c95af8cdc1b94f", + "dest-filename": "sucrase-3.35.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "sha512": "aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047", + "dest-filename": "supports-color-7.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "sha512": "f50364e4ac0317e06fcfe3f239b9264988c8e64b15518b635bb014db6af634a71f2c9717a7dea1903594dfe5e774eb146fe010f5085fcdf093d8ef823564f94f", + "dest-filename": "symbol-tree-3.2.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", + "sha512": "296048c6cd576fa3682dd315aa16e183065fd8f181a4f122c0eaa0238a452186cd4df05788a6325a84ec5e0050f56160fce9619ef1da63e004a56ef04a6168d9", + "dest-filename": "tailwindcss-4.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", + "sha512": "d4c3a9317ba11b318be534c264522dc4273400045fd446454241aa326ec444a8fcf8782be682ef24e545702fa546647c8427b64b78c2e13e43ed583f77bfdf84", + "dest-filename": "tapable-2.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "sha512": "44dc501ffa88f3fb77b615c90f072cb543b8cdeaa8eb8f94cbffac355441c785e7d8e5fe399f683fe8899cd16aa6516b6b665455e28249ada85568b74f8b9598", + "dest-filename": "thenify-all-1.6.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "sha512": "455652215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b", + "dest-filename": "thenify-3.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "sha512": "f856c13c4d68f50018bef89abbfa82e5213771ac36d6adf192f58a06d8dae6f82a3962071c9de2a1aab554f7e7fd2cea72dcf66d4fe861e29df7fcf904bf8f56", + "dest-filename": "tiny-invariant-1.3.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "sha512": "d3e0d4bea58c55a94b9a16ba96be240fc88030ad47cd5d3f68a9c2b566fdbfdeb8d539cffcc15becf7366f1a314234d7004aebc9756050e7efd98a8d965a867a", + "dest-filename": "tinybench-2.9.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "sha512": "290411f7237b479f8e4b068ad174288f6da9c07a1396062a994b1c3d8a249cea160967e3ff9fc00533118baf45aca5397df3d587941c16292958923f3f5a1c1c", + "dest-filename": "tinyexec-0.3.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.4.tgz", + "sha512": "bbdaf7b990b46dda46397b65c5421dc1ff69926be1a8976b5421fd7daa50b60cbf39e4d3319d67a87eda82dbc47e61ae8ba7b55f18dc76b971bf126f737b0cab", + "dest-filename": "tinyexec-1.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "sha512": "8f666ae0dc90606e573124f871bb34d8093c88951dc513345c8e50cb15ee64ecca3883665aeae9dec997bb7cb9c03709ae9b70a528e05c7cc8431474a265e58d", + "dest-filename": "tinyglobby-0.2.15.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz", + "sha512": "05ff882e6060adeb54add271cd73344a05cb6775df89a52e3a3fc82901ee4d78a9fb4e579febb21187558349180e2a5305c2eb095c94cc03f3ed0980adbd269b", + "dest-filename": "tinyrainbow-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.27.tgz", + "sha512": "610eee3e38165226c82ba0d6e65acaba31b050a84b7af53885c19b3f93ba4dc2146fea138c96095563d2e2766c207ac41041ba9b293fa2a009504426a59ac7b2", + "dest-filename": "tldts-core-7.0.27.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tldts/-/tldts-7.0.27.tgz", + "sha512": "23815971515ca8246e4f4a61e9d083a4fb8ee17833be1faca64713af580aee9788bf159aba896854ed2fbb2d454278a34fadecb3a02c1c1ebe3883386971db3e", + "dest-filename": "tldts-7.0.27.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz", + "sha512": "2e4b5941bdc87a851607d96a4791164c7816fd54c84c25e0e03db533e96fc9b45577294bad1327a9a20e34b55be666aff2f335f66e381c8706ab8a8049ebb643", + "dest-filename": "tough-cookie-6.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz", + "sha512": "6cb54c2cfb6cb6567888c407a451d347b1801a3da3c62f03834b3687631a7c0138b92585f7c142ff7328994e7589000c7fcfea0d46ca59fe46c6ebef55c5c487", + "dest-filename": "tr46-6.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "sha512": "2f43aba62f2a1a9446fff35df87f74bc507ede21e7b9ed734921a634e38287518b27bad4295c15d87be28e9846412d949a15197b04bd560bf1608760afe7c6d4", + "dest-filename": "tree-kill-1.2.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "sha512": "9118fc07e60764273d91061d59f241dbfa1497dac0f7da9ba3061806daf8ba2e26672010d89a6f54177fe94d989680137ea06105348c853a60047b54d0c7f746", + "dest-filename": "trim-lines-3.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "sha512": "b663292b4d018d9894c95cafac12bb9277ab3609a0bdc57f28b572ba66bf482f9340dd7aec6acc45c880353cf4f7e937cd6f0bf2deb48d63b51a97e465d8d36b", + "dest-filename": "trough-2.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "sha512": "389fe26f184f96aacc33452234727fd02290928285db8dff0049a996ddeaa518245bc546ec87ce4b8d61ed5f138c84ea741c87ceb8dc4bfdac8becb894887c34", + "dest-filename": "ts-api-utils-2.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "sha512": "63f6abbdb9feaebcf72422a5f42e2454d7d37d29b6fe6129e454b3e44b194803463d2950ae9448e4ce0f285fa6267139da338ef743e73d273752bddb4d0c3480", + "dest-filename": "ts-interface-checker-0.1.13.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tsup/-/tsup-8.5.1.tgz", + "sha512": "c6d824ab0761a4a5abded28f98292f6264bdc6740ade6dd7831647c12523bdf4e3a7b61f5dee6d4f71a05a2d05d8df9948cb0e796799161ed964583988f8629e", + "dest-filename": "tsup-8.5.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "sha512": "e42d6c838512b3595f1b41856f644b5ec7695ea05212101a03fd243cbd35c31ce932a2c82cdc48c4838a8882f3f9c760fe92e7394c4560e479ca11d4ebaeb06f", + "dest-filename": "tsx-4.21.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "sha512": "5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b", + "dest-filename": "type-check-0.4.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.0.tgz", + "sha512": "7b64d0cca7da23ce5f3be177432c2d5feb424ecbbf0f7596e4b554ea7cfc85314a159f32049ea64984695ea751de61633d698ed1e5ac4dae5ff94a4039efc530", + "dest-filename": "typescript-eslint-8.58.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "sha512": "8e5d6f6733c38a72ebf5e52ddc9feded5e8580d130f508ef04f772b33f4a7d00c3e357d0ac2d98e2f290762694a454f86d795bd511e12e9a7cc2d9ba3394e04b", + "dest-filename": "typescript-5.9.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/ufo/-/ufo-1.6.3.tgz", + "sha512": "c832539a1c9dbe5e65273066cbf87238003477e6aa081bb097cd7c85a55d60246b595f38a3b6327959b84255474ada8daeb2524dbea32ae14056a005b2bf8add", + "dest-filename": "ufo-1.6.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "sha512": "bf75eefb2bb00578aca7a4184dc1f851b1fec58257aa7ab69bf2ed41558a5b361cd627a16272e2c6840337d147ebf8fdfe8c9b7dde96f46870925f3e50c29329", + "dest-filename": "uglify-js-3.19.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "sha512": "673f9a6564a3f0b13ace8c43fb1ae387855f9081bc61ae8bbd8919aad5101893d98d8979df2a42694c16aa8ede234c7ae8a046791a3e9a504490c49e499dfc37", + "dest-filename": "undici-types-7.16.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/undici/-/undici-7.24.6.tgz", + "sha512": "5e2e1a8287026d1cedd3260c646300e80a43ee0bed5056b19b866679a716238719c5a17a0bef08f107e87c2db434078f881fc872f666ce427b5cf6b8ef5004b4", + "dest-filename": "undici-7.24.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "sha512": "c4abc684f5b0de4f3842387c6c8dd97898ea9f269d2be18416d6b349f66ffeb29e4e44e3389868ea616a87648cf7a888719a24c623a983bf066b34d283cf8a1c", + "dest-filename": "unified-11.0.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "sha512": "2ec8882dbb41113903cfc23da75750d2ec91516b9a43377f72e11e4b5868452c96e44e571a64f39706353ab373cda906a3023d0ebfc8f0755ac38853b67c72f2", + "dest-filename": "unist-util-is-6.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "sha512": "7ee72c0bb1e35ef901e51de44c23bb9148d176b4b4049b7733f14fc661cc04e9bc2508b606c1c01c5b32dbb13412894ff2ba743735ec27e8cd3f20d6bce2593c", + "dest-filename": "unist-util-position-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "sha512": "d00495d3a000a0a083912dbec70e515c9cb0aeebaba5b0b82594a6ee7afb30eb75a23033bf2c9a3be53165fd7c8fc14217a926cc264a70080dff2bb6826d9781", + "dest-filename": "unist-util-stringify-position-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "sha512": "828875b354c1aea4aaba449cf30ae3c1684bd21889c6003c9b8905c46950fbc1584370bf9b5d45713b386187a6ed5ebae0084756f82840b93cf744ac76caf621", + "dest-filename": "unist-util-visit-parents-6.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "sha512": "9bebc87727823a976bfd07900aed84cf15ffa21812f0a6e73c38059e2e1d42c7d20ada73f14a83c98e468d1aeef0f0cab989fb16ad7d8f5090fa7252b0628ece", + "dest-filename": "unist-util-visit-5.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "sha512": "26cd26f5cc7ea8e803c68d1e32214612e796cedcfe778f8cdeb1a598a3d3f93e084bf8cfe32970dcdc29bba7294d33fc4753000b5905e156dd2eddc045fdb4f7", + "dest-filename": "update-browserslist-db-1.2.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "sha512": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06", + "dest-filename": "uri-js-4.4.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "sha512": "3e9e864b018ffcdacf22bc551402243907b2c3c9457a73878a34169144eb0efac5e002eaca53f60bf28291e4bd76950cdcabd84508676b9bedec82fde7e650f7", + "dest-filename": "use-sync-external-store-1.6.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "sha512": "9197ff2ba84422b58723a5ea38552288c6beefdc04fc3f10f8d08d0167259328376f877693bb344067a936388005cf9a4773753c0c872fba7a51c2d8e8b9ab9c", + "dest-filename": "util-0.12.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "sha512": "0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13", + "dest-filename": "validate-npm-package-license-3.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "sha512": "4131f3b067751216d9b3802c436d095f5ac2ddc3a5b7f21626bba4f3ddc37cb46be7b95c9ce78c6961b82b426b46d6b89882592ad87602ede6337bb4dff2562b", + "dest-filename": "vfile-message-4.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "sha512": "2b321b1fff6d5dab76bb7d237feb26330142b27a38c0755d366cc5c8bf93fcbdd41aaaa4e8929f56a3853991296521c00c7d64e3469be8d5085d9ab8db6a2fdd", + "dest-filename": "vfile-6.0.3.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz", + "sha512": "49b3c33dd0c1629fb93091e104203223bc0a3377798af7a48a07360e4dacee981b67dc08808058195c38cc61c19a5fea4c56dec6ba1f5d6e86bb89e81b1acec1", + "dest-filename": "victory-vendor-37.3.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz", + "sha512": "c3e37b1e27e97378118d9eb7bd8057039e9dbef46535645ccd376608105af82a2d53300f7f96fb60c74c47ff024287981392d7dd6e308fa4584e0a279b56fd0c", + "dest-filename": "vite-7.3.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/vitest/-/vitest-4.1.2.tgz", + "sha512": "c6347574c4d51e514b87df091378bf7ff59e3ea26c6a1e00d052bd71cf04869f54764d00664e9c729219861d6a27fcb1556459f90e78a1c9c3f135e6921b291a", + "dest-filename": "vitest-4.1.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "sha512": "0e1c738791d9ba21d085bbd35bd00c7ad15f0470cc629a36dd4a3d6ed3d781d60ffb74f94bea7e8e0372eeca6b6bebde62104fd9d09283147f8b6634da1e7feb", + "dest-filename": "void-elements-3.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", + "sha512": "a3caa086523c3591d4d652cfae98b6f94abb69b8781863e96003656a5cd6c725ad789382b2bfcffa83c1038f5338bbb915364ee1ddc5f4c9d625f88ca3806498", + "dest-filename": "w3c-xmlserializer-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-4.0.0.tgz", + "sha512": "de1bbeb43f18cd22c6b8562d3d16f8f2f76128c8b4290579b27fae5abf3eedd304abfd86fddb4badd0e29e42e3aaae5321b2018d8278031fe7dd889a5bb40cf0", + "dest-filename": "walk-up-path-4.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.1.tgz", + "sha512": "04c84b0ff4b0f866c90b6d42fd48326995f8d673edf1b51383e8d6c837a0edeed8378c4e334e583d221771e0029d756dab2130fcb30295440cb4c67e3c61a9a9", + "dest-filename": "webidl-conversions-8.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-5.0.0.tgz", + "sha512": "b1770d707382e75b8f185d0ffc3e0d56dae48d25367cdb26f62a20e19bd926c2f7ae3a030335d98649b6316b75cbe3d476080a01856830021872cefcc09e750b", + "dest-filename": "whatwg-mimetype-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-16.0.1.tgz", + "sha512": "d6da38cd70719971d5dc8892484227aeb78896ed36bd43afae1c49247e6f731613043031e7572a66229dc93c6579c74a3528e3f04731181c4d7fa560fbde3983", + "dest-filename": "whatwg-url-16.0.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "sha512": "2d87e95249aac25d21f40d872f4f4c9ace36ed0d51656b8e1ecba47d570a46af6af79890c5dc348b1d4942ba9b70347d3c7d500f07f9428f0e65be6592c67c5e", + "dest-filename": "which-typed-array-1.1.20.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "sha512": "04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c", + "dest-filename": "which-2.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "sha512": "854ae669605d543731bd8aa7ca1d3dcee9cacd13968db65388dcbc741123912ede8440d089b5c9ed7be59ad6f0b9372552223237e0b25d00f8566928f1f366f3", + "dest-filename": "why-is-node-running-2.3.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", + "sha512": "5e783f77821c861f2e378974153a15ff6e7c12330653d306700d0757677d07f669641de5a909bb9e439d65d9b91a12ad2cb84013b3e2550c0de1e37ed9824952", + "dest-filename": "wkx-0.5.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "sha512": "04ddb607979a30c23d50cb63ac677983978260fa423c3532d052576d8b1a4f9cd8c6314e7244b9dd2403137a56915a16a475d56f706b61c10de13c1ae7907970", + "dest-filename": "word-wrap-1.2.5.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "sha512": "82f57324594fc9c29ce5d64de323e43fcc3b0dcdfb06d3f5c9ccc49de39be2eab7e295d972faed45399657c5be5267be5c2c4a81b8ccfa77af93214f3326dde1", + "dest-filename": "wordwrap-1.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", + "sha512": "12f18af042770e16877db465113396012e693bd31921379ab87289c9bf30c9a8d47d051e9e4220d8cbcb0d36784ff4e021c9b71d4d1314181659ba00677d141e", + "dest-filename": "xml-name-validator-5.0.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "sha512": "2599c328af01d11083c3ce0535d0c022964af89b89c3eb3b2f3f2792c23b488b94dd45c926c954b61b22fae5815183b03c5c16ed6ecf44b45f50aa718ed8c50b", + "dest-filename": "xmlchars-2.2.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "sha512": "6b850641a58f1f9f663975189c01b67b09dc412e22e05e374efdc9a0033eb365430264bd36c2bc1a90cc2eb0873e4b054fb8772ba4cea14367da96fb4685f1e2", + "dest-filename": "yallist-3.1.1.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "sha512": "ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9", + "dest-filename": "yocto-queue-0.1.0.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "sha512": "43afe764b7ba8f1b94f34a9bff8b89e2de6fd95119e389734233c385824dced450e30c9673a545dc3dca6ff7c0b8f7ad6509e14b78676a309ff42b167ac8212d", + "dest-filename": "zod-validation-error-4.0.2.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", + "sha512": "adfb65ae484764e7230f090696752d65992f68f1c2b03013a78a46a6e38e3036937430d717dd70b950c9a16a0fb0a5ffdd83d0e5f1ee1774938dc6322abf9086", + "dest-filename": "zod-4.3.6.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz", + "sha512": "087394cbb9aede56c3ea8e8b24b7e59698e4ce11d7481957f01f7ea8f75d52c21f785e52fd4679ab49260ac9d1a93d541c54197213450c3ccc6d0b2e7ac1d697", + "dest-filename": "zustand-4.5.7.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "file", + "url": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "sha512": "6d7138711fe455984a657fd18cf11f94768a56151597ce67a14defe9bf1aa5f404735c7803ecc1c6367894df0ba8677a599ddd97df29638a3bd7b5459a83e9f8", + "dest-filename": "zwitch-2.0.4.tgz", + "dest": "flatpak-node/pnpm-tarballs" + }, + { + "type": "inline", + "contents": "from __future__ import annotations\n\nimport base64\nimport contextlib\nimport hashlib\nimport json\nimport os\nimport re\nimport sqlite3\nimport struct\nimport sys\nimport tarfile\nimport time\nfrom collections.abc import Mapping\n\n_SANITIZE_RE = re.compile(r'[\\\\/:*?\"<>|]')\n_MAX_LENGTH_WITHOUT_HASH = 120\n\n\ndef _msgpack_pack(obj: object) -> bytes:\n \"\"\"Minimal msgpack packer matching msgpackr with useRecords: true.\n\n msgpackr reserves the byte range 0x40-0x7F for record IDs when useRecords\n is enabled (pnpm's config). Standard msgpack uses 0x00-0x7F for positive\n fixints, but this packer caps them at 0x3F and emits a uint 8 prefix (0xcc)\n for 64-255 to avoid aliasing with record ID bytes.\n \"\"\"\n\n def _pack_int(val: int) -> bytes:\n # Positive fixint capped at 0x3F \u2014 0x40-0x7F are msgpackr record IDs\n if 0 <= val <= 0x3F:\n return val.to_bytes(1, 'big')\n if -32 <= val < 0:\n return val.to_bytes(1, 'big', signed=True)\n if val >= 0:\n if val <= 0xFF:\n return b'\\xcc' + val.to_bytes(1, 'big')\n if val <= 0xFFFF:\n return b'\\xcd' + val.to_bytes(2, 'big')\n if val <= 0xFFFFFFFF:\n return b'\\xce' + val.to_bytes(4, 'big')\n return b'\\xcf' + val.to_bytes(8, 'big')\n if val >= -0x80:\n return b'\\xd0' + val.to_bytes(1, 'big', signed=True)\n if val >= -0x8000:\n return b'\\xd1' + val.to_bytes(2, 'big', signed=True)\n if val >= -0x80000000:\n return b'\\xd2' + val.to_bytes(4, 'big', signed=True)\n return b'\\xd3' + val.to_bytes(8, 'big', signed=True)\n\n def _pack_str(val: str) -> bytes:\n data = val.encode('utf-8')\n length = len(data)\n if length <= 0x1F:\n return (0xA0 | length).to_bytes(1, 'big') + data\n if length <= 0xFF:\n return b'\\xd9' + length.to_bytes(1, 'big') + data\n if length <= 0xFFFF:\n return b'\\xda' + length.to_bytes(2, 'big') + data\n return b'\\xdb' + length.to_bytes(4, 'big') + data\n\n if obj is None:\n return b'\\xc0'\n if isinstance(obj, bool):\n return b'\\xc3' if obj else b'\\xc2'\n if isinstance(obj, int):\n return _pack_int(obj)\n if isinstance(obj, float):\n return b'\\xcb' + struct.pack('>d', obj)\n if isinstance(obj, str):\n return _pack_str(obj)\n if isinstance(obj, dict):\n length = len(obj)\n if length <= 0x0F:\n result = (0x80 | length).to_bytes(1, 'big')\n elif length <= 0xFFFF:\n result = b'\\xde' + length.to_bytes(2, 'big')\n else:\n result = b'\\xdf' + length.to_bytes(4, 'big')\n for key, val in obj.items():\n result += _msgpack_pack(key) + _msgpack_pack(val)\n return result\n if isinstance(obj, (list, tuple)):\n length = len(obj)\n if length <= 0x0F:\n result = (0x90 | length).to_bytes(1, 'big')\n elif length <= 0xFFFF:\n result = b'\\xdc' + length.to_bytes(2, 'big')\n else:\n result = b'\\xdd' + length.to_bytes(4, 'big')\n for item in obj:\n result += _msgpack_pack(item)\n return result\n raise TypeError(f'Unsupported type for msgpack: {type(obj)}')\n\n\nRECORD_HEADER = b'\\xd4\\x72'\n\n\ndef _pack_v11_store_entry(\n files: dict[str, dict[str, object]],\n manifest: dict[str, str] | None = None,\n) -> bytes:\n \"\"\"Encode a store v11 entry using msgpackr-compatible record extensions.\n\n msgpackr with ``useRecords: true, moreTypes: true`` decodes:\n\n - standard msgpack maps (0x80/0xde/0xdf) as JavaScript ``Map`` objects\n (iterable, supports ``for..of``)\n - record extensions (0x72) as plain objects (dot-notation access)\n\n The ``files`` field must be a Map so pnpm can iterate it with ``for..of``.\n Everything else must use record extensions so dot-notation works\n (e.g. ``pkgIndex.algo``, ``info.digest``, ``manifest.name``).\n \"\"\"\n\n def _record(obj: Mapping[str, object], struct_id: int) -> bytes:\n keys = list(obj.keys())\n result = RECORD_HEADER + struct_id.to_bytes(1, 'big')\n result += _msgpack_pack(keys)\n for k in keys:\n result += _msgpack_pack(obj[k])\n return result\n\n def _fixmap(length: int) -> bytes:\n if length <= 0x0F:\n return (0x80 | length).to_bytes(1, 'big')\n if length <= 0xFFFF:\n return b'\\xde' + length.to_bytes(2, 'big')\n return b'\\xdf' + length.to_bytes(4, 'big')\n\n # Pack file entries as records, build files map as standard msgpack map\n files_map_bytes = _fixmap(len(files))\n for fname, finfo in files.items():\n files_map_bytes += _msgpack_pack(fname) + _record(finfo, 0x41)\n\n # Outer store_entry as record (struct_id 0x40)\n store_entry_keys = ['algo', 'requiresBuild', 'files']\n if manifest is not None:\n store_entry_keys.append('manifest')\n\n # Record with fixed entries\n result = RECORD_HEADER + b'\\x40' + _msgpack_pack(store_entry_keys)\n # This is hardcoded to use sha512 per pnpm's behavior, see @pnpm/store.cafs/index and\n # file digest logic below\n result += _msgpack_pack('sha512') # algo\n result += _msgpack_pack(False) # requiresBuild\n result += files_map_bytes # files (standard map \u2192 iterable Map in JS)\n\n if manifest is not None:\n result += _record(manifest, 0x42)\n return result\n\n\ndef populate_store(manifest_path: str, tarball_dir: str, store_dir: str) -> None:\n with open(manifest_path, encoding='utf-8') as f:\n manifest = json.load(f)\n\n store_version = manifest['store_version']\n packages = manifest['packages']\n\n index_db: sqlite3.Connection | None = None\n\n store = os.path.join(store_dir, store_version)\n os.makedirs(os.path.join(store, 'files'), exist_ok=True)\n if store_version == 'v11':\n index_db = sqlite3.connect(os.path.join(store, 'index.db'))\n index_db.execute('PRAGMA busy_timeout=5000')\n index_db.execute('PRAGMA journal_mode=WAL')\n index_db.execute('PRAGMA synchronous=NORMAL')\n index_db.execute('PRAGMA temp_store=MEMORY')\n index_db.execute(\n 'CREATE TABLE IF NOT EXISTS package_index ('\n ' key TEXT PRIMARY KEY,'\n ' data BLOB NOT NULL'\n ') WITHOUT ROWID'\n )\n else:\n os.makedirs(os.path.join(store, 'index'), exist_ok=True)\n\n now = int(time.time() * 1000)\n\n for tarball_name, info in packages.items():\n tarball_path = os.path.join(tarball_dir, tarball_name)\n if not os.path.isfile(tarball_path):\n raise FileNotFoundError(tarball_path)\n\n _process_tarball(\n tarball_path=tarball_path,\n pkg_name=info['name'],\n pkg_version=info['version'],\n integrity=info['integrity'],\n integrity_digest=info['integrity_digest'],\n integrity_algo=info['integrity_algo'],\n store=store,\n now=now,\n tarball_url=info.get('tarball_url'),\n store_version=store_version,\n index_db=index_db,\n )\n\n if index_db is not None:\n index_db.commit()\n index_db.close()\n\n\ndef _process_tarball(\n *,\n tarball_path: str,\n pkg_name: str,\n pkg_version: str,\n integrity: str,\n integrity_digest: str,\n integrity_algo: str,\n store: str,\n now: int,\n tarball_url: str | None = None,\n store_version: str = 'v3',\n index_db: sqlite3.Connection | None = None,\n) -> None:\n index_files: dict[str, dict[str, object]] = {}\n file_digests: dict[str, str] = {}\n real_pkg_name = pkg_name\n real_pkg_version = pkg_version\n\n with tarfile.open(tarball_path, 'r:gz') as tf:\n for member in tf.getmembers():\n if not member.isfile():\n continue\n fobj = tf.extractfile(member)\n if fobj is None:\n continue\n data = fobj.read()\n\n if member.name.endswith('package.json') and member.name.count('/') <= 1:\n with contextlib.suppress(ValueError, TypeError, UnicodeDecodeError):\n pkg_data = json.loads(data.decode('utf-8'))\n if isinstance(pkg_data, dict):\n if 'name' in pkg_data and isinstance(pkg_data['name'], str):\n real_pkg_name = pkg_data['name']\n if 'version' in pkg_data and isinstance(\n pkg_data['version'], str\n ):\n real_pkg_version = pkg_data['version']\n\n digest = hashlib.sha512(data).digest()\n file_hex = digest.hex()\n is_exec = bool(member.mode & 0o111)\n\n cas_dir = os.path.join(store, 'files', file_hex[:2])\n cas_name = file_hex[2:] + ('-exec' if is_exec else '')\n cas_path = os.path.join(cas_dir, cas_name)\n if not os.path.exists(cas_path):\n os.makedirs(cas_dir, exist_ok=True)\n with open(cas_path, 'wb') as out:\n out.write(data)\n if is_exec:\n os.chmod(cas_path, 0o755)\n\n rel_name = member.name\n if '/' in rel_name:\n rel_name = rel_name.split('/', 1)[1]\n\n b64 = base64.b64encode(digest).decode()\n index_files[rel_name] = {\n 'checkedAt': now,\n 'integrity': f'sha512-{b64}',\n 'mode': member.mode,\n 'size': len(data),\n }\n file_digests[rel_name] = file_hex\n\n if store_version == 'v11':\n assert index_db is not None\n # pnpm v11 store index keys use the raw package name (e.g. @scope/pkg),\n # not the filesystem-sanitized form (@scope+pkg), since keys are stored\n # in SQLite, not as filenames.\n raw_pkg_id = f'{pkg_name}@{pkg_version}'\n key = f'{integrity_algo}-{integrity}\\t{raw_pkg_id}'\n\n v11_files: dict[str, dict[str, object]] = {}\n for rel_name, finfo in index_files.items():\n checked_at = finfo['checkedAt']\n assert isinstance(checked_at, int)\n v11_files[rel_name] = {\n 'checkedAt': float(checked_at), # float64 avoids msgpackr BigInt\n 'digest': file_digests[rel_name],\n 'mode': finfo['mode'],\n 'size': finfo['size'],\n }\n\n manifest = None\n if real_pkg_name or real_pkg_version:\n manifest = {\n 'name': real_pkg_name,\n 'version': real_pkg_version,\n }\n\n entry_bytes = _pack_v11_store_entry(v11_files, manifest)\n\n # It's currently not possible to fully determine which store key pnpm will use,\n # so we insert multiple keys to ensure pnpm can find the entry it wants.\n\n index_db.execute(\n 'INSERT OR REPLACE INTO package_index (key, data) VALUES (?, ?)',\n (key, entry_bytes),\n )\n\n if tarball_url:\n url_key = f'{tarball_url}\\t{raw_pkg_id}'\n index_db.execute(\n 'INSERT OR REPLACE INTO package_index (key, data) VALUES (?, ?)',\n (url_key, entry_bytes),\n )\n\n # pnpm looks up git-hosted tarballs (codeload.github.com,\n # bitbucket.org, gitlab.com) and tarballs without integrity by\n # {tarball_url}\\tbuilt(not-built) \u2014 see pickStoreIndexKey in @pnpm/store.index.\n pkgid_key = f'{tarball_url}\\t'\n index_db.execute(\n 'INSERT OR REPLACE INTO package_index (key, data) VALUES (?, ?)',\n (pkgid_key + 'built', entry_bytes),\n )\n index_db.execute(\n 'INSERT OR REPLACE INTO package_index (key, data) VALUES (?, ?)',\n (pkgid_key + 'not-built', entry_bytes),\n )\n else:\n pkg_id = _SANITIZE_RE.sub('+', f'{pkg_name}@{pkg_version}')\n\n index_data = {\n 'name': real_pkg_name,\n 'version': real_pkg_version,\n 'requiresBuild': False,\n 'files': index_files,\n }\n\n idx_prefix = integrity_digest[:2]\n idx_rest = integrity_digest[2:64]\n idx_dir = os.path.join(store, 'index', idx_prefix)\n os.makedirs(idx_dir, exist_ok=True)\n idx_path = os.path.join(idx_dir, f'{idx_rest}-{pkg_id}.json')\n with open(idx_path, 'w', encoding='utf-8') as out:\n json.dump(index_data, out)\n\n # For tarball-URL packages, also create an index entry keyed by the URL hash\n # this is how pnpm looks up tarball deps without integrity\n if tarball_url:\n if store_version == 'v3':\n url_hash = hashlib.sha256(tarball_url.encode()).hexdigest()\n url_idx_prefix = url_hash[:2]\n url_idx_rest = url_hash[2:64]\n url_idx_dir = os.path.join(store, 'index', url_idx_prefix)\n os.makedirs(url_idx_dir, exist_ok=True)\n url_idx_path = os.path.join(\n url_idx_dir, f'{url_idx_rest}-{pkg_id}.json'\n )\n with open(url_idx_path, 'w', encoding='utf-8') as out:\n json.dump(index_data, out)\n else:\n url_dir_name = re.sub(r'[:/]', '+', tarball_url)\n if (\n len(url_dir_name) > _MAX_LENGTH_WITHOUT_HASH\n or url_dir_name != url_dir_name.lower()\n ):\n url_dir_name = f'{url_dir_name[: _MAX_LENGTH_WITHOUT_HASH - 33]}_{hashlib.sha256(url_dir_name.encode()).hexdigest()[:32]}'\n url_idx_dir = os.path.join(store, url_dir_name)\n os.makedirs(url_idx_dir, exist_ok=True)\n url_idx_path = os.path.join(url_idx_dir, 'integrity.json')\n with open(url_idx_path, 'w', encoding='utf-8') as out:\n json.dump(index_data, out)\n\n\nif __name__ == '__main__':\n if len(sys.argv) != 4:\n print(\n f'Usage: {sys.argv[0]} ',\n file=sys.stderr,\n )\n sys.exit(1)\n populate_store(sys.argv[1], sys.argv[2], sys.argv[3])\n", + "dest-filename": "populate_pnpm_store.py", + "dest": "flatpak-node" + }, + { + "type": "inline", + "contents": "{\"packages\":{\"@acemir__cssom-0.9.31.tgz\":{\"integrity\":\"ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"667477192687fbfbc9d189476aedb51637cb6233296152334c3f0cf2f20442f206c5e397c97773088d78d2bac263ceb6a7f0bf05bcd6b237357609ccf669284c\",\"name\":\"@acemir/cssom\",\"version\":\"0.9.31\"},\"@adobe__css-tools-4.4.4.tgz\":{\"integrity\":\"Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"125a7e8b0531e6b379f98f312ede7f191a06db4586a03090ff515bfb52e21adbf06c36afb929348e10ff79975c90702ecdc0f371c9e4bfeac48f259f471d7c82\",\"name\":\"@adobe/css-tools\",\"version\":\"4.4.4\"},\"@alloc__quick-lru-5.2.0.tgz\":{\"integrity\":\"UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"52b700041fb86d4ac5001c1b96e4c8044ad7c2f6ec53f57b4d959f99b8097db930881bb3892f60c5d383532ba279c7dd190f398e094c5ba8ee4b7fb3e53b0a2f\",\"name\":\"@alloc/quick-lru\",\"version\":\"5.2.0\"},\"@asamuzakjp__css-color-5.1.1.tgz\":{\"integrity\":\"iGWN8E45Ws0XWx3D44Q1t6vX2LqhCKcwfmwBYCDsFrYFS6m4q/Ks61L2veETaLv+ckDC6+dTETJoaAAb7VjLiw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"88658df04e395acd175b1dc3e38435b7abd7d8baa108a7307e6c016020ec16b6054ba9b8abf2aceb52f6bde11368bbfe7240c2ebe75311326868001bed58cb8b\",\"name\":\"@asamuzakjp/css-color\",\"version\":\"5.1.1\"},\"@asamuzakjp__dom-selector-6.8.1.tgz\":{\"integrity\":\"MvRz1nCqW0fsy8Qz4dnLIvhOlMzqDVBabZx6lH+YywFDdjXhMY37SmpV1XFX3JzG5GWHn63j6HX6QPr3lZXHvQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"32f473d670aa5b47eccbc433e1d9cb22f84e94ccea0d505a6d9c7a947f98cb01437635e1318dfb4a6a55d57157dc9cc6e465879fade3e875fa40faf79595c7bd\",\"name\":\"@asamuzakjp/dom-selector\",\"version\":\"6.8.1\"},\"@asamuzakjp__nwsapi-2.3.9.tgz\":{\"integrity\":\"n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9fc1ae612ac8f5b17b14567f4a38707af94773cc5a5656ffec79877a59dcfcf657043d99478f4d9cdf6c30cb8374418f79e450e5dd21aa54a51298025f75a5d1\",\"name\":\"@asamuzakjp/nwsapi\",\"version\":\"2.3.9\"},\"@babel__code-frame-7.29.0.tgz\":{\"integrity\":\"9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f4d8427988eaf7edeec6076da76d0b4a225726f37415e0ad346a49c6e3056752afddc59435be833a127052f7150b328647ae9cc389e3c0cea1ac92ea80ec1b73\",\"name\":\"@babel/code-frame\",\"version\":\"7.29.0\"},\"@babel__compat-data-7.29.0.tgz\":{\"integrity\":\"T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4f534226a4ff8fdf9c9fc7ef92dee3b706cb05f2c2ff5cb573b36d09e5c5460cc64ec69f8baf0c46ff32ce46126a9067140e8bdd4d9549cd367220f3a0026126\",\"name\":\"@babel/compat-data\",\"version\":\"7.29.0\"},\"@babel__core-7.29.0.tgz\":{\"integrity\":\"CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"08639f389a968e0daa5bf31beb336c0e6faee6f150f03c577db334f73ebda7967afa61358a43f68d45f0fa3e363dfd574d8103d919e2e5ff799e961ebb030340\",\"name\":\"@babel/core\",\"version\":\"7.29.0\"},\"@babel__generator-7.29.1.tgz\":{\"integrity\":\"qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"aac685fbd41c9b642ff1244830cb1c02f1b83b7949d05d46b8ca391d1fc1a74d8ba293609d9042fc491b7af1c5786b3896cfe83f3f6ff81b26cdb91b7bed1d53\",\"name\":\"@babel/generator\",\"version\":\"7.29.1\"},\"@babel__helper-compilation-targets-7.28.6.tgz\":{\"integrity\":\"JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"258b65b3786a8b5e5f731e4669234bed209327630d9a3ae41d7838152a4e03f82bc4af0ac326796ee6c7b02abc1570a4b9aeb186e69a062b7eddbefe55945f70\",\"name\":\"@babel/helper-compilation-targets\",\"version\":\"7.28.6\"},\"@babel__helper-globals-7.28.0.tgz\":{\"integrity\":\"+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f96e9c21291715ad635ec0c475803c1de7af413fc550b871cd1f7da71a6196d65c55aba0a6ce774c709e89603c4a0bb1c694a9de028f8ae61f496a2990b43887\",\"name\":\"@babel/helper-globals\",\"version\":\"7.28.0\"},\"@babel__helper-module-imports-7.28.6.tgz\":{\"integrity\":\"l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9795e464aeebef06bd2ee706c3d2f0672c8252c71be31dfb2564cfcfbb30c0513fd05310006a62594667f2ef43ce448158470adb98e6bee6dfa70d9d9c031d6f\",\"name\":\"@babel/helper-module-imports\",\"version\":\"7.28.6\"},\"@babel__helper-module-transforms-7.28.6.tgz\":{\"integrity\":\"67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ebba1714062bd9c0cb0d518b5d3100063741259e9dac4954488ed62a9ef436ba72212b28de9946f52006105eb2ef36e16bfc0ecd40725964c9bc40d534850670\",\"name\":\"@babel/helper-module-transforms\",\"version\":\"7.28.6\"},\"@babel__helper-plugin-utils-7.28.6.tgz\":{\"integrity\":\"S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4bd83367f6f3f37191cac23b8000f8c0f4ff008dee0a763ef719fe331fca3ecd89c07248cf55bc3d9920d9cab2b7744d38133c7a3717855eb2f0e83b972fc3ba\",\"name\":\"@babel/helper-plugin-utils\",\"version\":\"7.28.6\"},\"@babel__helper-string-parser-7.27.1.tgz\":{\"integrity\":\"qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a8c952c4a6e946502b89d0c4c64f769d2a1bc837693e28d4ab60d6ea80e752a77488e1b19908f2aa13088a123dfb3bf82cfc997518ded9c6af58f6c26d69b778\",\"name\":\"@babel/helper-string-parser\",\"version\":\"7.27.1\"},\"@babel__helper-validator-identifier-7.28.5.tgz\":{\"integrity\":\"qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a92b3889fc33289495dfdb9c363b2f73a5951ece9bed2d37b0e87639c1c5f541df54fa965802d4b0d515ce1481888b63459a0b1f1ee721aad58ea295bac519d5\",\"name\":\"@babel/helper-validator-identifier\",\"version\":\"7.28.5\"},\"@babel__helper-validator-option-7.27.1.tgz\":{\"integrity\":\"YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"62f8c9a30f45c5b84514a0d2b859d509ed96c57935cd6736d9f15e3d5344696244bbc22b65595d6ba374b87c3366b50cd6297b342f4c969e0c68961b61df494a\",\"name\":\"@babel/helper-validator-option\",\"version\":\"7.27.1\"},\"@babel__helpers-7.29.2.tgz\":{\"integrity\":\"HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1e81ae52ce2c09935ecd510a755730aa664df06a078ab2d470b69854d04ad89d0369d1ad75caa0af70426ef1fcf97528e0d1a3365dd53ad4a310a373a9f1602b\",\"name\":\"@babel/helpers\",\"version\":\"7.29.2\"},\"@babel__parser-7.29.2.tgz\":{\"integrity\":\"4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e06811cf2ffe7ec05aef6fd165526618a3e666ef41ca7f28e0ca0ba6635ed66f197d89f3e5e9872d0cf753880bb9de99c25d1164872088b0fb52aef2485b832c\",\"name\":\"@babel/parser\",\"version\":\"7.29.2\"},\"@babel__plugin-transform-react-jsx-self-7.27.1.tgz\":{\"integrity\":\"6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e94ce40acf9e8c6759e661450bf38252bbf4dbc69bd9fa75ce76660998c03812a204ada35c3d4ef813d27d7f17daa8c9ef97d904c4a7427dd1ab69ab0492b69b\",\"name\":\"@babel/plugin-transform-react-jsx-self\",\"version\":\"7.27.1\"},\"@babel__plugin-transform-react-jsx-source-7.27.1.tgz\":{\"integrity\":\"zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cdbc284ec06bb9378a07d852abbde16baea215e247b9a16451bc2fa84967ca0a0d6e3fe31d1b127a8928c1914ddc267ae08bc4a9c9a69157bcf4e3d773b95d03\",\"name\":\"@babel/plugin-transform-react-jsx-source\",\"version\":\"7.27.1\"},\"@babel__runtime-7.29.2.tgz\":{\"integrity\":\"JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2620d2847e39cca1d6c867b864d551ac28c1cfc361f53326646d648784132bc8420535818bc0dafa2eecd5f270eff958a4ce1c71ea5235fab367f42f001062e6\",\"name\":\"@babel/runtime\",\"version\":\"7.29.2\"},\"@babel__template-7.28.6.tgz\":{\"integrity\":\"YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"600e8c6b62ac09d19bf960ba5290551491972f9f0c0c0ea8c8e35b8f217ffb9b0183163f7709212e881b313d865d7c94f38fc8851c3fd83d4eb3507f822cfe05\",\"name\":\"@babel/template\",\"version\":\"7.28.6\"},\"@babel__traverse-7.29.0.tgz\":{\"integrity\":\"4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e073e242bd17efec1a1dfc973d9a563df58bfc9edd70dd66c7d80be9675054c6cf9c5dfe66148cb3cb42c4dee81dd74913d7e1344efe9717679727a629f251b8\",\"name\":\"@babel/traverse\",\"version\":\"7.29.0\"},\"@babel__types-7.29.0.tgz\":{\"integrity\":\"LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2f07591e949c338433f17c3688a4b34be71f825673246be87d0202cbb5bbbf871aaeee046809b252e3ba046adbc90da6615d755b453c8f998185dd7875ddc1d0\",\"name\":\"@babel/types\",\"version\":\"7.29.0\"},\"@bcoe__v8-coverage-1.0.2.tgz\":{\"integrity\":\"6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"eb300193f10203f418482435346895c306d07ab50267e4d06e9eb843702099f36fbab1c7d23f13b576b5a9b4a15c0eaaaa4a408f85795bca4fea62ded6670ca8\",\"name\":\"@bcoe/v8-coverage\",\"version\":\"1.0.2\"},\"@bramus__specificity-2.4.2.tgz\":{\"integrity\":\"ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"72dc6d27f780fadfbaab6fbebe3e63ec5617de746edf5d6ad707d81f7c6394b3ac733865871020d8558d5178691af030dc15a8d7105cbce57afd82dcdabe4527\",\"name\":\"@bramus/specificity\",\"version\":\"2.4.2\"},\"@conventional-changelog__git-client-2.6.0.tgz\":{\"integrity\":\"T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4feb8f0dc88a7f4fe2a0d343a4c19cf050ec7a12429593f4c91dd0e4c37ac04fd8ff5419ec5fbcd0e8339e74c23a53041b8015d0bbc7d94262dc2fe706768152\",\"name\":\"@conventional-changelog/git-client\",\"version\":\"2.6.0\"},\"@csstools__color-helpers-6.0.2.tgz\":{\"integrity\":\"LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2cc1902d2f44b800e5a04164713051dc1c15fc218757bcf20f1551b550d3c1d23609ae22b740825534fdc029314a0a248c4e47a38d6110f81bf0e114c285ebe9\",\"name\":\"@csstools/color-helpers\",\"version\":\"6.0.2\"},\"@csstools__css-calc-3.1.1.tgz\":{\"integrity\":\"HJ26Z/vmsZQqs/o3a6bgKslXGFAungXGbinULZO3eMsOyNJHeBBZfup5FiZInOghgoM4Hwnmw+OgbJCNg1wwUQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1c9dba67fbe6b1942ab3fa376ba6e02ac95718502e9e05c66e29d42d93b778cb0ec8d2477810597eea791626489ce8218283381f09e6c3e3a06c908d835c3051\",\"name\":\"@csstools/css-calc\",\"version\":\"3.1.1\"},\"@csstools__css-color-parser-4.0.2.tgz\":{\"integrity\":\"0GEfbBLmTFf0dJlpsNU7zwxRIH0/BGEMuXLTCvFYxuL1tNhqzTbtnFICyJLTNK4a+RechKP75e7w42ClXSnJQw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d0611f6c12e64c57f4749969b0d53bcf0c51207d3f04610cb972d30af158c6e2f5b4d86acd36ed9c5202c892d334ae1af9179c84a3fbe5eef0e360a55d29c943\",\"name\":\"@csstools/css-color-parser\",\"version\":\"4.0.2\"},\"@csstools__css-parser-algorithms-4.0.0.tgz\":{\"integrity\":\"+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f81f3ba92edf206dcbe61deac09fc815b8e856839efdba4e761f610235dbbf1d28f08984994b065cdd229c53a79360a108582a92418543e4e9339adb86429ee3\",\"name\":\"@csstools/css-parser-algorithms\",\"version\":\"4.0.0\"},\"@csstools__css-syntax-patches-for-csstree-1.1.2.tgz\":{\"integrity\":\"5GkLzz4prTIpoyeUiIu3iV6CSG3Plo7xRVOFPKI7FVEJ3mZ0A8SwK0XU3Gl7xAkiQ+mDyam+NNp875/C5y+jSA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e4690bcf3e29ad3229a32794888bb7895e82486dcf968ef14553853ca23b155109de667403c4b02b45d4dc697bc4092243e983c9a9be34da7cef9fc2e72fa348\",\"name\":\"@csstools/css-syntax-patches-for-csstree\",\"version\":\"1.1.2\"},\"@csstools__css-tokenizer-4.0.0.tgz\":{\"integrity\":\"QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"43150b1c09bb70dbbbdb0f7b25434204538315a5e96c383e74ff1bfe8585019d8c4d1a69037534d18d8bd47a9a4b827ac81ab1c1afd8de73016b154a6c1fcdb0\",\"name\":\"@csstools/css-tokenizer\",\"version\":\"4.0.0\"},\"@esbuild__aix-ppc64-0.27.4.tgz\":{\"integrity\":\"cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7103f02f69a9da74a61c72650b2a178071a16c43ccac4114e71864732dc7b3f3bb9c666a129676b14b4b68bf4c3912ed0df46f565dbfdcf02e1246191f44f2f1\",\"name\":\"@esbuild/aix-ppc64\",\"version\":\"0.27.4\"},\"@esbuild__android-arm-0.27.4.tgz\":{\"integrity\":\"X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5fd6d482fc620bc087006298b9f2c81c65cf2569ebd0e09d4746a70f67b6d6f76f80223c9487ea15b9e878ecfb9418ddac019486a2d92dc428e8c2e14ced8329\",\"name\":\"@esbuild/android-arm\",\"version\":\"0.27.4\"},\"@esbuild__android-arm64-0.27.4.tgz\":{\"integrity\":\"gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"81d2ec701eefef9c117eeed04a6ff383a471dbd54b772f5e4ebdade38b1f4d6ec2c7002d420859e199ea1e4dffa20cfbc5aa3440082b92b69d6c1cdca853dab3\",\"name\":\"@esbuild/android-arm64\",\"version\":\"0.27.4\"},\"@esbuild__android-x64-0.27.4.tgz\":{\"integrity\":\"PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3f33c59c1355176f76b1fa5f862ca25c21929fd1d983905c033fa2bc1b92b25e9193881ad6811701a9a1397445c8c723c2bd8356d9b8d06eb937718b787d4bbf\",\"name\":\"@esbuild/android-x64\",\"version\":\"0.27.4\"},\"@esbuild__darwin-arm64-0.27.4.tgz\":{\"integrity\":\"b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6fbc5a188c1d26586df19142bcc9290cdeae8929a7c712b9e8dd860d33183ebdbf833bdf75037cad37c1b2f54a988558fd7ec433efe124a1086db1ecf68038b5\",\"name\":\"@esbuild/darwin-arm64\",\"version\":\"0.27.4\"},\"@esbuild__darwin-x64-0.27.4.tgz\":{\"integrity\":\"sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b11f8e88a2f0775e6798276aa57327b89f56da4a72d0a8a0cea49ca872371eac2bec85f1069dd8bdafb2270a2a87bac4f15efbb5da2179161ab5a34a2f842b3f\",\"name\":\"@esbuild/darwin-x64\",\"version\":\"0.27.4\"},\"@esbuild__freebsd-arm64-0.27.4.tgz\":{\"integrity\":\"jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8e77e929efa9efdb429e6e0655abfaf00eed50578a4304322e0112c04014cf2c64fd326be10746a20f6ca9635c51baff6d9b7f3bf1d7a2eb29b900ddf49c454b\",\"name\":\"@esbuild/freebsd-arm64\",\"version\":\"0.27.4\"},\"@esbuild__freebsd-x64-0.27.4.tgz\":{\"integrity\":\"2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"da46f871e03f0a97d4ac8713525d70acfffd69df40b6ba7927de0babaf70ed4c0e32894f206adf2d2bc0289a74453be43cfca7e82216acdcb5de4c8b8a465165\",\"name\":\"@esbuild/freebsd-x64\",\"version\":\"0.27.4\"},\"@esbuild__linux-arm-0.27.4.tgz\":{\"integrity\":\"aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"681620708c57ff07799f6cacd3211219e60c185fa9bfa8340e166bdc6d591b88cc7ebb94f539758b667e5a78fdfca8c6cf59532c2728aea136be278f66a8f812\",\"name\":\"@esbuild/linux-arm\",\"version\":\"0.27.4\"},\"@esbuild__linux-arm64-0.27.4.tgz\":{\"integrity\":\"7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ee740eb6d773546b61d62cf9ee4c60f6e0b3e7b77140b1d6c68a4bea662e62d86884f2842b4bd4d02dcedb509c04ae8a0e591855c9c35d8d3df477020d777d74\",\"name\":\"@esbuild/linux-arm64\",\"version\":\"0.27.4\"},\"@esbuild__linux-ia32-0.27.4.tgz\":{\"integrity\":\"oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a0fb62c6d008ce0bf361c28140cfea67747ef5311477568d250bb41e11b2aadc7aa12eea4e9be385e21605b7ace3eaaed5b365a3657871b9084abf2aea044114\",\"name\":\"@esbuild/linux-ia32\",\"version\":\"0.27.4\"},\"@esbuild__linux-loong64-0.27.4.tgz\":{\"integrity\":\"8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f262ffbe1f2a782a117051f69ccf309b9b893fe65c5581866b231abe2f06991263b88de0d6fe99ecd8b4249280256fa6d04b54b8045be8b9a9e21323cc2056cc\",\"name\":\"@esbuild/linux-loong64\",\"version\":\"0.27.4\"},\"@esbuild__linux-mips64el-0.27.4.tgz\":{\"integrity\":\"1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d5176b58516288b216ecb42af50d8d112f87883e0dc93f08b63f4051e0a5d08542038e7d5a73e14442a0c2ba5a21f4ce7beff6add9ed8ac7a088f5a7febfda03\",\"name\":\"@esbuild/linux-mips64el\",\"version\":\"0.27.4\"},\"@esbuild__linux-ppc64-0.27.4.tgz\":{\"integrity\":\"tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b4b0b0346e3b977b1df65a5fcb1f4b00610622d094791096780c7ac762666dabfae67030a0f5df7b0b4076d6ed8adfe92452d458e869bf41694ba1900263eb1c\",\"name\":\"@esbuild/linux-ppc64\",\"version\":\"0.27.4\"},\"@esbuild__linux-riscv64-0.27.4.tgz\":{\"integrity\":\"BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"067012ca9a696d45b2aa3775288a54e00501888855afa6251f1fdc9cf82a12436854e84783e622495c4cd512df8b2e2df5c02e95b4464cd08a39ca87ac440b23\",\"name\":\"@esbuild/linux-riscv64\",\"version\":\"0.27.4\"},\"@esbuild__linux-s390x-0.27.4.tgz\":{\"integrity\":\"+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f9e52a81bfd9eefc552decc6f1b541f527c189ef3d80cb9e4be234c58876b49770defa80ff4226649d9139e5b0549379f62841799ed3bbdd9d17fe5dcb916db4\",\"name\":\"@esbuild/linux-s390x\",\"version\":\"0.27.4\"},\"@esbuild__linux-x64-0.27.4.tgz\":{\"integrity\":\"S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4b9a8e5eb295f01404cc93d5c40c27af28b6f88ab9a41e348131084faf4140e36a47b247d443c8710fd48aff660a79f4e637dff6e9aaff99eacf196a4ce83d34\",\"name\":\"@esbuild/linux-x64\",\"version\":\"0.27.4\"},\"@esbuild__netbsd-arm64-0.27.4.tgz\":{\"integrity\":\"xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c474fc5f8b1bd064bca93aa2c331eaa58d340bde433c0abb9c0c17df921efecf8b3bdf37d21acc777a17d1930a2efcbbbeca2779eef7c7496671d3955c5cdde9\",\"name\":\"@esbuild/netbsd-arm64\",\"version\":\"0.27.4\"},\"@esbuild__netbsd-x64-0.27.4.tgz\":{\"integrity\":\"RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"46e80ebce7577ddca2e53cafe349204272346f2bfae8116002a8dd82d00aa87a194db4c5d90a9f42b1706bb70710e4497fa5f686dfa5f4004b30fd1d9ca62c82\",\"name\":\"@esbuild/netbsd-x64\",\"version\":\"0.27.4\"},\"@esbuild__openbsd-arm64-0.27.4.tgz\":{\"integrity\":\"2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d8cc8bdc801a4d7fb5fea3f43b54b0b24c1cc02a0e238915d88057d716270c3aad866ab902bad6f78a9220a080b91ada3203ce986d110d303be26cd835003da3\",\"name\":\"@esbuild/openbsd-arm64\",\"version\":\"0.27.4\"},\"@esbuild__openbsd-x64-0.27.4.tgz\":{\"integrity\":\"u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bbc7e0fe34396900dfb27215ebe2b02ce7f50a62677eed52869c2a7700b4b80ed93f0170b39e4d81cd76bc175e51d9ee5a8418c7f48e40b18371d95f5e16265d\",\"name\":\"@esbuild/openbsd-x64\",\"version\":\"0.27.4\"},\"@esbuild__openharmony-arm64-0.27.4.tgz\":{\"integrity\":\"JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2644d9ae5e956f23bc94340edf2bf6ea736bd91336c99ccdacd1c4b23f5b9ba74ec30bbd398376f028f36641f9edb878c3423617b22876942f50011dd666d65e\",\"name\":\"@esbuild/openharmony-arm64\",\"version\":\"0.27.4\"},\"@esbuild__sunos-x64-0.27.4.tgz\":{\"integrity\":\"/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fe03b381a7b06497de25396c5a1bd4126506e2d5846364a9a79336d08358460d992a5f503cedd010480f791b4b8c45925bc16295135a70f3a0f11d6e698900ea\",\"name\":\"@esbuild/sunos-x64\",\"version\":\"0.27.4\"},\"@esbuild__win32-arm64-0.27.4.tgz\":{\"integrity\":\"Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"67d484c41836cb7dac9a80d075fd474701d1b7abc01cb5dcc43dae1a03bfbf68caed8ef5f08c789ddb1b34c53ffb54227a6f4e88e75aaa2b62a19c318af85762\",\"name\":\"@esbuild/win32-arm64\",\"version\":\"0.27.4\"},\"@esbuild__win32-ia32-0.27.4.tgz\":{\"integrity\":\"DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0c0c862d2d09cf91b98a2c446cc1e2e4a762029a87056306cd3b4c889ef664e2e16eefdbcf18007bc51ef024d2de7dc76c8507433fcbe75c8c74631ea315cd27\",\"name\":\"@esbuild/win32-ia32\",\"version\":\"0.27.4\"},\"@esbuild__win32-x64-0.27.4.tgz\":{\"integrity\":\"+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fa49e86b4043a1e5e090dbef575bef6d95f8fa18b37a5ae4c2618905d4f5eedf0534fc06da529e9a6b8c66599a350df0b370ca282c696f8cd1644229dd4c450a\",\"name\":\"@esbuild/win32-x64\",\"version\":\"0.27.4\"},\"@eslint-community__eslint-utils-4.9.1.tgz\":{\"integrity\":\"phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a61ad898d898a6947bce714476a81f5875d1e8d0a46442bb8705831d95238adff6fd4d2be97be40e5d12627a0ce751eaec584219d2c34facf1082398d617b1b1\",\"name\":\"@eslint-community/eslint-utils\",\"version\":\"4.9.1\"},\"@eslint-community__regexpp-4.12.2.tgz\":{\"integrity\":\"EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"12b8924e5b79382f7fed25e445208085f4b1c684948019b7dce1fe224c1b769828aac4ac520ef2dee87e208088fd08380415abdd4da2dfd4699b271bc4cab87b\",\"name\":\"@eslint-community/regexpp\",\"version\":\"4.12.2\"},\"@eslint__config-array-0.21.2.tgz\":{\"integrity\":\"nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9c99762864e5adff468cb8a6808aeef95fe6ce048ad000420d046fc70e418d444bed67c7e6ea169a2cdb1fb401e8c9a730177c7080bdb9c7969deccbd556565b\",\"name\":\"@eslint/config-array\",\"version\":\"0.21.2\"},\"@eslint__config-helpers-0.4.2.tgz\":{\"integrity\":\"gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"801af137cf203887f747b8dae4af6c97035ac9571980ae923943919b6b81cd378811f79568884ea42b53a31dcfe91ee8da32c5c0b1532e70bb914fd119c60483\",\"name\":\"@eslint/config-helpers\",\"version\":\"0.4.2\"},\"@eslint__core-0.17.0.tgz\":{\"integrity\":\"yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c8bfec2eba66b43685122523d68b113f84c8d8c0f3d4075d24bfa367b292aaf06e962378c6a618e7821f74df2a0fc4e86ba8358a5a298757f140d9233b1aeba5\",\"name\":\"@eslint/core\",\"version\":\"0.17.0\"},\"@eslint__eslintrc-3.3.5.tgz\":{\"integrity\":\"4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e08949c745f4a9fb55b0de44fbfbc6ba34d1205b70b8b6cdb1551eed33bacd83c34753ba9c5c2fc2120a10a4ab97a7597219980484dacf12a85183a376d8e546\",\"name\":\"@eslint/eslintrc\",\"version\":\"3.3.5\"},\"@eslint__js-9.39.4.tgz\":{\"integrity\":\"nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9c4ec3108721bed8854f0070e0b7dbbb9f4f1be902a1f863b0a6825b3c53a6de257d18d132a1bab8c073297b847325e1387a14a7dae2026eff69660685767d73\",\"name\":\"@eslint/js\",\"version\":\"9.39.4\"},\"@eslint__object-schema-2.1.7.tgz\":{\"integrity\":\"VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"56d00e6b299655f65c9996e9e84da6ca6a43207bf28d7b3fd762ea5988d5c3aaa3adf17e54af9fc86df7902873de79caf92539fcd7873aaad31074bcb173b738\",\"name\":\"@eslint/object-schema\",\"version\":\"2.1.7\"},\"@eslint__plugin-kit-0.4.1.tgz\":{\"integrity\":\"43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e37feab6b0d4a24afb2c9aa8176737f91227bbfb78cdfae961da120df632860e76af02d5e939cebdd1b87d79bb224481df012b91c9894bd88486356d3921238c\",\"name\":\"@eslint/plugin-kit\",\"version\":\"0.4.1\"},\"@exodus__bytes-1.15.0.tgz\":{\"integrity\":\"UY0nlA+feH81UGSHv92sLEPLCeZFjXOuHhrIo0HQydScuQc8s0A7kL/UdgwgDq8g8ilksmuoF35YVTNphV2aBQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"518d27940f9f787f35506487bfddac2c43cb09e6458d73ae1e1ac8a341d0c9d49cb9073cb3403b90bfd4760c200eaf20f22964b26ba8177e58553369855d9a05\",\"name\":\"@exodus/bytes\",\"version\":\"1.15.0\"},\"@humanfs__core-0.19.1.tgz\":{\"integrity\":\"5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e43c90e3ed49114cde8de2b524620272275ec9f51b1a2c604bd8cd81ec799ea916f9c63b59987106282689e379427c3d668b123550bd2902b26fe194686c8a50\",\"name\":\"@humanfs/core\",\"version\":\"0.19.1\"},\"@humanfs__node-0.16.7.tgz\":{\"integrity\":\"/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ff3531fb23ac22b1b8638dc4876a5e0de282c6546dfe0113e9a1df68aa6eab6ebba977580c55625477cc68bcb28193a79749065b114882c072f1016e4cb51711\",\"name\":\"@humanfs/node\",\"version\":\"0.16.7\"},\"@humanwhocodes__module-importer-1.0.1.tgz\":{\"integrity\":\"bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6f1bde57857cbf961be277054d3deb3d281904ea429237cad32e28555549c08b8354144c0d7acfc9744bf7cf22e5aa7d9bd6e7c8412359f9b95a4066b5f7cb7c\",\"name\":\"@humanwhocodes/module-importer\",\"version\":\"1.0.1\"},\"@humanwhocodes__retry-0.4.3.tgz\":{\"integrity\":\"bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6d5d13828f4ae217cf09e93e68c027f35469a452afdb248341e328499baf4c04b2c0d4e7549080ac2644d855aaa6f21ab4abbb54c44b5a547511acef5610f285\",\"name\":\"@humanwhocodes/retry\",\"version\":\"0.4.3\"},\"@jridgewell__gen-mapping-0.3.13.tgz\":{\"integrity\":\"2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"da492dffb9e227a32010fc45d1b61d43a7ad65a03e7d0bc370b29c921cb5c8840ecdaa0a8c10634a3eb7fda2d58d8137aa146de5dbccfae5327c283a50a0816c\",\"name\":\"@jridgewell/gen-mapping\",\"version\":\"0.3.13\"},\"@jridgewell__remapping-2.3.5.tgz\":{\"integrity\":\"LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2c8f6effe95a606e03b354c3292256d983eb22571560ec22d9f502eb1078de5b9e0a383157895f7ce0990ad605887e9334e5feb50297c7ded3e082876e1c8711\",\"name\":\"@jridgewell/remapping\",\"version\":\"2.3.5\"},\"@jridgewell__resolve-uri-3.1.2.tgz\":{\"integrity\":\"bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6d12128022233f6d3fb5b5923d63048b9e1054f45913192e0fd9492fe508c542adc15240f305b54eb6f58ccb354455e8d42053359ff98690bd42f98a59da292b\",\"name\":\"@jridgewell/resolve-uri\",\"version\":\"3.1.2\"},\"@jridgewell__sourcemap-codec-1.5.5.tgz\":{\"integrity\":\"cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"71843ddf5d20aeac6e7966e5f96b885086a251a0dc8fb58eab97d58449633558117ce52163d7f2db34ef7e8a96b2779b87c4a5ef45527056c80af2672ca0743a\",\"name\":\"@jridgewell/sourcemap-codec\",\"version\":\"1.5.5\"},\"@jridgewell__trace-mapping-0.3.31.tgz\":{\"integrity\":\"zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cf3351f9275048327373c8e869e3fc410a0242bf0db98c76748232b65d507811191c9f6e5ba85e6ecad881bcfc849c1441aa374d608cb667d5f0dbb5b7038b03\",\"name\":\"@jridgewell/trace-mapping\",\"version\":\"0.3.31\"},\"@monaco-editor__loader-1.7.0.tgz\":{\"integrity\":\"gIwR1HrJrrx+vfyOhYmCZ0/JcWqG5kbfG7+d3f/C1LXk2EvzAbHSg3MQ5lO2sMlo9izoAZ04shohfKLVT6crVA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"808c11d47ac9aebc7ebdfc8e858982674fc9716a86e646df1bbf9dddffc2d4b5e4d84bf301b1d2837310e653b6b0c968f62ce8019d38b21a217ca2d54fa72b54\",\"name\":\"@monaco-editor/loader\",\"version\":\"1.7.0\"},\"@monaco-editor__react-4.7.0.tgz\":{\"integrity\":\"cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"732cd7402b4ee3bc9dcf1a50b42192406382f069376547815c50310fe0965d8168e4ea99c995289c59740f05254f201f4479ed05fc36a77c38b3d47aa1ed5e08\",\"name\":\"@monaco-editor/react\",\"version\":\"4.7.0\"},\"@reduxjs__toolkit-2.11.2.tgz\":{\"integrity\":\"Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"29dea40074c0ebf9d4a69f26c923ea8f77a7ddd9b4b5d30881bb6d9d0d7114c569b9fa23f800e2f295cb06c778c734d11d06bbb7f26ff16e549c2b96e24b9631\",\"name\":\"@reduxjs/toolkit\",\"version\":\"2.11.2\"},\"@rolldown__pluginutils-1.0.0-rc.3.tgz\":{\"integrity\":\"eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7b26e4dd38f3cf357dec3963e5cf97ac1156e7b793361ce877aeb2f47ac197327a36c0ab582a7fda468f4b72bdc099aeac10b44ddc38c8f8d7299aa5ce78a6dd\",\"name\":\"@rolldown/pluginutils\",\"version\":\"1.0.0-rc.3\"},\"@rollup__rollup-android-arm-eabi-4.60.1.tgz\":{\"integrity\":\"d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"77a1629c404b74888afb5b80094b6d24a7e0651117ac5d107364a62c823b5b6003f057e267d5a377eac3fe246e7f9b39756aebd468305c2bcfa8eb83aae3a8c0\",\"name\":\"@rollup/rollup-android-arm-eabi\",\"version\":\"4.60.1\"},\"@rollup__rollup-android-arm64-4.60.1.tgz\":{\"integrity\":\"YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6231bf130203bef608d58bd86c7bc3cff0581ed918e328142171e74dd2e11be84a2101418a8b1f5a20025a8aedb0a3ca53ff9d53041008a40cdeaac37bc73d04\",\"name\":\"@rollup/rollup-android-arm64\",\"version\":\"4.60.1\"},\"@rollup__rollup-darwin-arm64-4.60.1.tgz\":{\"integrity\":\"mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9a30a917b1a6911b52270a27f91ab537cfa923ef25ef0e60f59def5a3e13eda6e0b82e02cf08b762efe915a2ef0374d378c5639eeddcb6282eb2a5947e3673bf\",\"name\":\"@rollup/rollup-darwin-arm64\",\"version\":\"4.60.1\"},\"@rollup__rollup-darwin-x64-4.60.1.tgz\":{\"integrity\":\"haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"85a67b849d494f87bd86a9284fd47fd7d5d6d902aa8df255bfe8b9006839ed2fa72e4f6542727517f79996844ede8f52732f42337c10f65f9d917b5c06037913\",\"name\":\"@rollup/rollup-darwin-x64\",\"version\":\"4.60.1\"},\"@rollup__rollup-freebsd-arm64-4.60.1.tgz\":{\"integrity\":\"czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"733c3dd30a50ab766c0150658a76630184ca76e3a34f2c251bb7c479629403ba029a903cc5d4e4c59665c0d24a5aa20b96ad307a1a1970961f06f3b284f4d0eb\",\"name\":\"@rollup/rollup-freebsd-arm64\",\"version\":\"4.60.1\"},\"@rollup__rollup-freebsd-x64-4.60.1.tgz\":{\"integrity\":\"KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"295076aeab314c7b81b5f39ec92132cc4381ee5b6507fbb1dfc8aedab050ce48dbc115659210062040e28989ceda414e909a7e67ba545cacab45116e1542adfa\",\"name\":\"@rollup/rollup-freebsd-x64\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-arm-gnueabihf-4.60.1.tgz\":{\"integrity\":\"L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2fedf842a8a5fafe6e0b4cc4b9b5bbb81ca8efc58e088ac1bdc8baf44eec1404919745fb6ff301e82a9dd65932fc2b5c4954f27566b6599c05b967b18d2e68ea\",\"name\":\"@rollup/rollup-linux-arm-gnueabihf\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-arm-musleabihf-4.60.1.tgz\":{\"integrity\":\"n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9fcdcef2bb78bf7e21805ce591bd7272788987b211e51088aadea6cf5551243ea99a1462d025dd99f9cbbbd748512e9bbb387ad08bc008cf38d857dbdf177a1a\",\"name\":\"@rollup/rollup-linux-arm-musleabihf\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-arm64-gnu-4.60.1.tgz\":{\"integrity\":\"Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"36a97bb13780ce14c08dadd05de008e3cfbff868c127e426007d77b279f400948d2f9d09b03aa8b72b9d1f231b3b645b264b246cc6c525f20929603a4752c225\",\"name\":\"@rollup/rollup-linux-arm64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-arm64-musl-4.60.1.tgz\":{\"integrity\":\"+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fa953298385dd32b3d19c2993cf5a516267aeec4d6579514eb33896add36335f8f8ae4860f38b246e23fa4fb9ede1a14c26dae19fc5d2feb6b4fa67daf19e530\",\"name\":\"@rollup/rollup-linux-arm64-musl\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-loong64-gnu-4.60.1.tgz\":{\"integrity\":\"VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"552be0bd078872c12f6386ca0c710359ca56e18c3b06d94a1b51944f81730549442902b4ad61d806a42de859b6b5a5d2fb56d7bc94fa9080aee59c2a2829ef95\",\"name\":\"@rollup/rollup-linux-loong64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-loong64-musl-4.60.1.tgz\":{\"integrity\":\"4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e0baa1528989ab07bae3582c3e9eb12df86a58c6d0574e0ab4fa7bfdd229d27ccfc4090d63501bc0be56d0c42971a94b624d3bbda5bd2a9d4f06176965861c13\",\"name\":\"@rollup/rollup-linux-loong64-musl\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-ppc64-gnu-4.60.1.tgz\":{\"integrity\":\"tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b4b410f5a3ef901c4e73f1144fa8f7a7278c0fa1dbf1017605306709058ffeebb596173d008ac88ca9cb60c12ba08cff26fb4662023d745dc0c4764d6841f4af\",\"name\":\"@rollup/rollup-linux-ppc64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-ppc64-musl-4.60.1.tgz\":{\"integrity\":\"RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44cc45849c1cf5f4973fa3ea980cf871bbf7900caf0f57ad2458d3c7838da853fd0e44e45ec00c538bf7572739060cc2f9a9f3ee74bff6da78a1bb0a7ea9031e\",\"name\":\"@rollup/rollup-linux-ppc64-musl\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-riscv64-gnu-4.60.1.tgz\":{\"integrity\":\"QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"40a80597e61cd5e124e8c98e05f447605ea54f18a2895dffcff051adb4a25b623b0054d7a0116f74c132825a213e3fffda6652e210cea9e0741f5002877b016e\",\"name\":\"@rollup/rollup-linux-riscv64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-riscv64-musl-4.60.1.tgz\":{\"integrity\":\"RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4408d78cfffc73a66dcdab59700d51690afa3b54d18730be69d9fc6190e70a1962647be2a888e6bc5c077318b824a3d20c0b7a5217ffeefa9c073409cb43c326\",\"name\":\"@rollup/rollup-linux-riscv64-musl\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-s390x-gnu-4.60.1.tgz\":{\"integrity\":\"wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c1cba872968e95a2f508e058880f3d3bac9f8e5a77470283793200d2133b3a99a1475063a3d8f7d46d6e415a43953bf0c469f69d0b3ae5f0452f950577be8571\",\"name\":\"@rollup/rollup-linux-s390x-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-x64-gnu-4.60.1.tgz\":{\"integrity\":\"77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"efb3e9b0541408e89947df8b404160f460a5c9f90d5e3d4c3fac119f362cd047966cf707b34d805eee31b946ccd738709f7c2a6a2ce57b7004620e5a7a8a2186\",\"name\":\"@rollup/rollup-linux-x64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-linux-x64-musl-4.60.1.tgz\":{\"integrity\":\"5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e5c2004db939bf29c08eaaa6c818e5722309975f91fc2c17f682e4fc4ca21570d677de4aa4776b3894fffeb9d497871472c92b7748c20b0df0a599e1207743f7\",\"name\":\"@rollup/rollup-linux-x64-musl\",\"version\":\"4.60.1\"},\"@rollup__rollup-openbsd-x64-4.60.1.tgz\":{\"integrity\":\"cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"725d30d3d5ac0a2d7b99c996aaa8257b3f4693c8ac81e5afa146775a2245612477ce3050736279fe28528e997e54b8cfaa343fd6125172a05f2e3b2c4444082f\",\"name\":\"@rollup/rollup-openbsd-x64\",\"version\":\"4.60.1\"},\"@rollup__rollup-openharmony-arm64-4.60.1.tgz\":{\"integrity\":\"4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e02bf6dd9ace3516cdb5b65adfb98b4ae797502b4decc5dc70286d2a952740d805d35d2b8eb8df1f1dd0c644b63c8ecba864f9c57c98b356bb2dbcc0c13d2208\",\"name\":\"@rollup/rollup-openharmony-arm64\",\"version\":\"4.60.1\"},\"@rollup__rollup-win32-arm64-msvc-4.60.1.tgz\":{\"integrity\":\"i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8b5a24598900e052480adafb2a96331694531e0cb98dd0db66259fbe7cb6d6220a932e581318835cffb36d7ce6ddd51c169904798347810e5fb86db7e893ead2\",\"name\":\"@rollup/rollup-win32-arm64-msvc\",\"version\":\"4.60.1\"},\"@rollup__rollup-win32-ia32-msvc-4.60.1.tgz\":{\"integrity\":\"u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bb4f66dc2bb02f34a103411828c3621607238f3c2ab5430b9ae0892de6568e3398037213d838b4f4a6b11814cff71573b56c885a355db01d84f60a0c8d9bd342\",\"name\":\"@rollup/rollup-win32-ia32-msvc\",\"version\":\"4.60.1\"},\"@rollup__rollup-win32-x64-gnu-4.60.1.tgz\":{\"integrity\":\"k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"93eeb4d15f5997508cede6712603324d4ce6ae6841ff45d99c5e29472a4a025020c6679d500fb5bfd47e5ce16fe7a5b84a51c4cdf78cb73ba32c90f6d94cf9ce\",\"name\":\"@rollup/rollup-win32-x64-gnu\",\"version\":\"4.60.1\"},\"@rollup__rollup-win32-x64-msvc-4.60.1.tgz\":{\"integrity\":\"lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9563278b1abf433c7285357a363409e12168d49e8fbce5fcbd4c7959be1b04fb046fef3167cf41cfa90e5e97d78fd6a4f401d3415433960cc111cd52c8cdbbc5\",\"name\":\"@rollup/rollup-win32-x64-msvc\",\"version\":\"4.60.1\"},\"@simple-libs__child-process-utils-1.0.2.tgz\":{\"integrity\":\"/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ff847c40a9ddffc6a02729e435d266370d8c071b854d170d1671394a0fc6fa3912b15f3f5018142ccce18b35965b8da9f0be47edf948995d804e2efd3af7b64f\",\"name\":\"@simple-libs/child-process-utils\",\"version\":\"1.0.2\"},\"@simple-libs__hosted-git-info-1.0.2.tgz\":{\"integrity\":\"aAmGQdMH+ZinytKuA2832u0ATeOFNYNk4meBEXtB5xaPotUgggYNhq5tYU/v17wEbmTW5P9iHNqNrFyrhnqBAg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"68098641d307f998a7cad2ae036f37daed004de385358364e26781117b41e7168fa2d52082060d86ae6d614fefd7bc046e64d6e4ff621cda8dac5cab867a8102\",\"name\":\"@simple-libs/hosted-git-info\",\"version\":\"1.0.2\"},\"@simple-libs__stream-utils-1.2.0.tgz\":{\"integrity\":\"KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2b15ef7daa5c8b1a73eab54407a1cf8ce5194f6db237abf4bc8d2ead04a4d4bf0c94458f0c5099921c36c66932a13198785c3bb564d977b7b7955cd165137f10\",\"name\":\"@simple-libs/stream-utils\",\"version\":\"1.2.0\"},\"@standard-schema__spec-1.1.0.tgz\":{\"integrity\":\"l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"976685cb98c02e19e21b91e0aab0fa8d72e2feb516acabea37fa89c7aca826c80a85b95577e8aaa94e110976af9bf8cf8adc83a394c2bca327a632a73ab8b2d3\",\"name\":\"@standard-schema/spec\",\"version\":\"1.1.0\"},\"@standard-schema__utils-0.3.0.tgz\":{\"integrity\":\"e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7bb31ec3af3aa3031a3c954d34bb39e4f52f833dfbd672a0c2c738bf1138f73b0e0e92449f1831468db2fce2abaae79abd781934c0d58f70dd1c595a480794f2\",\"name\":\"@standard-schema/utils\",\"version\":\"0.3.0\"},\"@tailwindcss__node-4.2.2.tgz\":{\"integrity\":\"pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a574bec09da0669557a85694123a23abb8f33294c67fcad4ea2a49cf9a2f255e8f5069a527e8ef2301abcdd1dd43cd1283ec26431505ba85b55000301cd11d14\",\"name\":\"@tailwindcss/node\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-4.2.2.tgz\":{\"integrity\":\"qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a84500d3bf84e647a1c58a7d055329abd13cbe726e0477c9102d2f3c2e5eee22ff870ec747ad5a0caa15a0aceb1be40aa79eaf84d65ee2ac24466302d330cbbe\",\"name\":\"@tailwindcss/oxide\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-android-arm64-4.2.2.tgz\":{\"integrity\":\"dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"757191d67f8fdc1ebbe3c8d93bf4af1d9abba813aaab343ec85ad7a683965802d69dd17d32848a013dd0d1f6200336331a1c4d60ea32b11bd89698b14410680e\",\"name\":\"@tailwindcss/oxide-android-arm64\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-darwin-arm64-4.2.2.tgz\":{\"integrity\":\"iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8aaf508ebea49df3296478f9e7fdfba2e65eca4c1b0ea176d603c5b5f9e10822860dc3c8ff6d45282f5774c3bf5f204ceea28e471e942211a083a8cb97b05996\",\"name\":\"@tailwindcss/oxide-darwin-arm64\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-darwin-x64-4.2.2.tgz\":{\"integrity\":\"BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"06547ed9cde7cdcf1fd86eb7f4ba4bf3d618e1b75c21d52688e3a4bf6190bf8ff8334bc99695c46b42573478421d4ed558e2964ff0a3a877533fc694b83264bb\",\"name\":\"@tailwindcss/oxide-darwin-x64\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-freebsd-x64-4.2.2.tgz\":{\"integrity\":\"YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"614a9482b18c4aed820cef36873950e6a49be719b1dd152b91efd0827a04c7b2af99124742e6476666532d2bae1f015fd0324fc9b14c5cc61ff9625dc47cbf9d\",\"name\":\"@tailwindcss/oxide-freebsd-x64\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-linux-arm-gnueabihf-4.2.2.tgz\":{\"integrity\":\"FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"14f761bec5ba834e93f41593d2a4f0895658136588168d9d6396824a98c6fd2feed6d6f2fb05e8b255d2d24977fca5e750b94baf513734f451c3483bb7692069\",\"name\":\"@tailwindcss/oxide-linux-arm-gnueabihf\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-linux-arm64-gnu-4.2.2.tgz\":{\"integrity\":\"4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e2883557e7ed10f5c6b6d38eede0a65bb5480a6cf325680cc7e417009440863ad28ee982c16a8c7e40eb36ed4b5c4433340c33dbc342529b9c8103eb4784b6cb\",\"name\":\"@tailwindcss/oxide-linux-arm64-gnu\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-linux-arm64-musl-4.2.2.tgz\":{\"integrity\":\"oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a027c6fe64beffe5d19703639ec34b5709cc5981fbb67fe460fb0d3e1f8948e3259edf77998342287633ca5461239d57f936d1fae7cd86128ace6e9092a5fc6a\",\"name\":\"@tailwindcss/oxide-linux-arm64-musl\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-linux-x64-gnu-4.2.2.tgz\":{\"integrity\":\"rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ad30060240e0a9b5c7369ff15b48ae80b5665fadb03a9d8fa04dfd0530862a3bf722871fe8015b44fff0653fe4b82c42f50061f4fbbc5cf92fff309907699c32\",\"name\":\"@tailwindcss/oxide-linux-x64-gnu\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-linux-x64-musl-4.2.2.tgz\":{\"integrity\":\"XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5d6deddeac1b230892c910a081e3b6cf17b72966846ccd3f916f5ef3ed17a41832294e004d8cdc55230ab5e649d62ba42771e01c18db83d3f960f442554c659d\",\"name\":\"@tailwindcss/oxide-linux-x64-musl\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-wasm32-wasi-4.2.2.tgz\":{\"integrity\":\"eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"78a4b3b4ab2612c9f53b9949e1901fca7e3535f1bbbf30a0e3de98886b4c0d5f3a8f3d6afe2ae19ace4ed15ad8e99c13524172fc4286dd17d6831488dd56d9f1\",\"name\":\"@tailwindcss/oxide-wasm32-wasi\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-win32-arm64-msvc-4.2.2.tgz\":{\"integrity\":\"qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a8f99a40ce222aee66c69b2b59930e651819bf5b4e669526fb37618503f456125fc8618edda50a75b87780365cfdd3cb4305b8792a961abadc58d05959459a5d\",\"name\":\"@tailwindcss/oxide-win32-arm64-msvc\",\"version\":\"4.2.2\"},\"@tailwindcss__oxide-win32-x64-msvc-4.2.2.tgz\":{\"integrity\":\"1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d53ff7ed5bc8ed6c87eba6febea1e3fdc2f09c2c6ded0b77585bb943c864eb968ebe5c0086ceeb029d5592e941270fcde2d322ad78d59f295347bdae2341c670\",\"name\":\"@tailwindcss/oxide-win32-x64-msvc\",\"version\":\"4.2.2\"},\"@tailwindcss__postcss-4.2.2.tgz\":{\"integrity\":\"n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9f88282906d6f1155721b34a441ff8e4bcf252a378e7575e40ad27cc879ab9512a8e5238f6c95496029824cd90c94cdaa7f3dca674bb93349498f6f5b0246f61\",\"name\":\"@tailwindcss/postcss\",\"version\":\"4.2.2\"},\"@tanstack__react-table-8.21.3.tgz\":{\"integrity\":\"5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e6734c4d21133f8ca419e826564863712f2d4cb5ba565e1ac5f10640ddefd3374761b2b851fa2a7cf0a17254eb2781282bd4329ea02ef6851ff15126ae96795b\",\"name\":\"@tanstack/react-table\",\"version\":\"8.21.3\"},\"@tanstack__react-virtual-3.13.23.tgz\":{\"integrity\":\"XnMRnHQ23piOVj2bzJqHrRrLg4r+F86fuBcwteKfbIjJrtGxb4z7tIvPVAe4B+4UVwo9G4Giuz5fmapcrnZ0OQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e73119c7436de988e563d9bcc9a87ad1acb838afe17ce9fb81730b5e29f6c88c9aed1b16f8cfbb48bcf5407b807ee14570a3d1b81a2bb3e5f99aa5cae767439\",\"name\":\"@tanstack/react-virtual\",\"version\":\"3.13.23\"},\"@tanstack__table-core-8.21.3.tgz\":{\"integrity\":\"ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"95d6571213816fc22cef12ecd357d1dd811cdc31118b3e6c8a58fcb671a4159cadb7569b12f97f1a1526084d0f30b68c3d36b7264e076ca9919479aefa009fb6\",\"name\":\"@tanstack/table-core\",\"version\":\"8.21.3\"},\"@tanstack__virtual-core-3.13.23.tgz\":{\"integrity\":\"zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cd2cf66761cdc8b8c2a6500d4c3ca5dc171d409736935fb2c85a0a84d4660abed5edd63ca3cab99bcb854c8d7f3e0d642fe1e0af3eaedd7a3a785501ee5eba72\",\"name\":\"@tanstack/virtual-core\",\"version\":\"3.13.23\"},\"@tauri-apps__api-2.10.1.tgz\":{\"integrity\":\"hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"84a2ff8d67f6f77503494374f6b47af61ad3a3221705bf028c66960bb81f8a7be742b055be72ebd3c15e162dfc831b6e80057255c4dae7f143fd79e46f5b2207\",\"name\":\"@tauri-apps/api\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-2.10.1.tgz\":{\"integrity\":\"jQNGF/5quwORdZSSLtTluyKQ+o6SMa/AUICfhf4egCGFdMHqWssApVgYSbg+jmrZoc8e1DscNvjTnXtlHLS11g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8d034617fe6abb03917594922ed4e5bb2290fa8e9231afc050809f85fe1e80218574c1ea5acb00a5581849b83e8e6ad9a1cf1ed43b1c36f8d39d7b651cb4b5d6\",\"name\":\"@tauri-apps/cli\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-darwin-arm64-2.10.1.tgz\":{\"integrity\":\"Z2OjCXiZ+fbYZy7PmP3WRnOpM9+Fy+oonKDEmUE6MwN4IGaYqgceTjwHucc/kEEYZos5GICve35f7ZiizgqEnQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6763a3097899f9f6d8672ecf98fdd64673a933df85cbea289ca0c499413a330378206698aa071e4e3c07b9c73f904118668b391880af7b7e5fed98a2ce0a849d\",\"name\":\"@tauri-apps/cli-darwin-arm64\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-darwin-x64-2.10.1.tgz\":{\"integrity\":\"V/irQVvjPMGOTQqNj55PnQPVuH4VJP8vZCN7ajnj+ZS8Kom1tEM2hR3qbbIRoS3dBKs5mbG8yg1WC+97dq17Pw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"57f8ab415be33cc18e4d0a8d8f9e4f9d03d5b87e1524ff2f64237b6a39e3f994bc2a89b5b44336851dea6db211a12ddd04ab3999b1bcca0d560bef7b76ad7b3f\",\"name\":\"@tauri-apps/cli-darwin-x64\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-arm-gnueabihf-2.10.1.tgz\":{\"integrity\":\"Hyzwsb4VnCWKGfTw+wSt15Z2pLw2f0JdFBfq2vHBOBhvg7oi6uhKiF87hmbXOBXUZaGkyRDkCHsdzJcIfoJC2w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1f2cf0b1be159c258a19f4f0fb04add79676a4bc367f425d1417eadaf1c138186f83ba22eae84a885f3b8666d73815d465a1a4c910e4087b1dcc97087e8242db\",\"name\":\"@tauri-apps/cli-linux-arm-gnueabihf\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-arm64-gnu-2.10.1.tgz\":{\"integrity\":\"OyOYs2t5GkBIvyWjA1+h4CZxTcdz1OZPCWAPz5DYEfB0cnWHERTnQ/SLayQzncrT0kwRoSfSz9KxenkyJoTelA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3b2398b36b791a4048bf25a3035fa1e026714dc773d4e64f09600fcf90d811f0747275871114e743f48b6b24339dcad3d24c11a127d2cfd2b17a79322684de94\",\"name\":\"@tauri-apps/cli-linux-arm64-gnu\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-arm64-musl-2.10.1.tgz\":{\"integrity\":\"MIj78PDDGjkg3NqGptDOGgfXks7SYJwhiMh8SBoZS+vfdz7yP5jN18bNaLnDhsVIPARcAhE1TlsZe/8Yxo2zqg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3088fbf0f0c31a3920dcda86a6d0ce1a07d792ced2609c2188c87c481a194bebdf773ef23f98cdd7c6cd68b9c386c5483c045c0211354e5b197bff18c68db3aa\",\"name\":\"@tauri-apps/cli-linux-arm64-musl\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-riscv64-gnu-2.10.1.tgz\":{\"integrity\":\"X0lvOVUg8PCVaoEtEAnpxmnkwlE1gcMDTqfhbefICKDnOTJ5Est3qL0SrWxizDackIOKBcvtpejrSiVpuJI1kw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5f496f395520f0f0956a812d1009e9c669e4c2513581c3034ea7e16de7c808a0e739327912cb77a8bd12ad6c62cc369c90838a05cbeda5e8eb4a2569b8923593\",\"name\":\"@tauri-apps/cli-linux-riscv64-gnu\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-x64-gnu-2.10.1.tgz\":{\"integrity\":\"2/12bEzsJS9fAKybxgicCDFxYD1WEI9kO+tlDwX5znWG2GwMBaiWcmhGlZ8fi+DMe9CXlcVarMTYc0L3REIRxw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"dbfd766c4cec252f5f00ac9bc6089c083171603d56108f643beb650f05f9ce7586d86c0c05a896726846959f1f8be0cc7bd09795c55aacc4d87342f7444211c7\",\"name\":\"@tauri-apps/cli-linux-x64-gnu\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-linux-x64-musl-2.10.1.tgz\":{\"integrity\":\"Y8J0ZzswPz50UcGOFuXGEMrxbjwKSPgXftx5qnkuMs2rmwQB5ssvLb6tn54wDSYxe7S6vlLob9vt0VKuNOaCIQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"63c274673b303f3e7451c18e16e5c610caf16e3c0a48f8177edc79aa792e32cdab9b0401e6cb2f2dbead9f9e300d26317bb4babe52e86fdbedd152ae34e68221\",\"name\":\"@tauri-apps/cli-linux-x64-musl\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-win32-arm64-msvc-2.10.1.tgz\":{\"integrity\":\"iSt5B86jHYAPJa/IlYw++SXtFPGnWtFJriHn7X0NFBVunF6zu9+/zOn8OgqIWSl8RgzhLGXQEEtGBdR4wzpVgg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"892b7907cea31d800f25afc8958c3ef925ed14f1a75ad149ae21e7ed7d0d14156e9c5eb3bbdfbfcce9fc3a0a8859297c460ce12c65d0104b4605d478c33a5582\",\"name\":\"@tauri-apps/cli-win32-arm64-msvc\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-win32-ia32-msvc-2.10.1.tgz\":{\"integrity\":\"gXyxgEzsFegmnWywYU5pEBURkcFN/Oo45EAwvZrHMh+zUSEAvO5E8TXsgPADYm31d1u7OQU3O3HsYfVBf2moHw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"817cb1804cec15e8269d6cb0614e6910151191c14dfcea38e44030bd9ac7321fb3512100bcee44f135ec80f003626df5775bbb3905373b71ec61f5417f69a81f\",\"name\":\"@tauri-apps/cli-win32-ia32-msvc\",\"version\":\"2.10.1\"},\"@tauri-apps__cli-win32-x64-msvc-2.10.1.tgz\":{\"integrity\":\"6Cn7YpPFwzChy0ERz6djKEmUehWrYlM+xTaNzGPgZocw3BD7OfwfWHKVWxXzdjEW2KfKkHddfdxK1XXTYqBRLg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e829fb6293c5c330a1cb4111cfa7632849947a15ab62533ec5368dcc63e0668730dc10fb39fc1f5872955b15f3763116d8a7ca90775d7ddc4ad575d362a0512e\",\"name\":\"@tauri-apps/cli-win32-x64-msvc\",\"version\":\"2.10.1\"},\"@tauri-apps__plugin-clipboard-manager-2.3.2.tgz\":{\"integrity\":\"CUlb5Hqi2oZbcZf4VUyUH53XWPPdtpw43EUpCza5HWZJwxEoDowFzNUDt1tRUXA8Uq+XPn17Ysfptip33sG4eQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"09495be47aa2da865b7197f8554c941f9dd758f3ddb69c38dc45290b36b91d6649c311280e8c05ccd503b75b5151703c52af973e7d7b62c7e9b62a77dec1b879\",\"name\":\"@tauri-apps/plugin-clipboard-manager\",\"version\":\"2.3.2\"},\"@tauri-apps__plugin-dialog-2.6.0.tgz\":{\"integrity\":\"q4Uq3eY87TdcYzXACiYSPhmpBA76shgmQswGkSVio4C82Sz2W4iehe9TnKYwbq7weHiL88Yw19XZm7v28+Micg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ab852adde63ced375c6335c00a26123e19a9040efab2182642cc06912562a380bcd92cf65b889e85ef539ca6306eaef078788bf3c630d7d5d99bbbf6f3e32272\",\"name\":\"@tauri-apps/plugin-dialog\",\"version\":\"2.6.0\"},\"@tauri-apps__plugin-fs-2.4.5.tgz\":{\"integrity\":\"dVxWWGE6VrOxC7/jlhyE+ON/Cc2REJlM35R3PJX3UvFw2XwYhLGQVAIyrehenDdKjotipjYEVc4YjOl3qq90fA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"755c5658613a56b3b10bbfe3961c84f8e37f09cd9110994cdf94773c95f752f170d97c1884b190540232ade85e9c374a8e8b62a6360455ce188ce977aaaf747c\",\"name\":\"@tauri-apps/plugin-fs\",\"version\":\"2.4.5\"},\"@tauri-apps__plugin-opener-2.5.3.tgz\":{\"integrity\":\"CCcUltXMOfUEArbf3db3kCE7Ggy1ExBEBl51Ko2ODJ6GDYHRp1nSNlQm5uNCFY5k7/ufaK5Ib3Du/Zir19IYQQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"08271496d5cc39f50402b6dfddd6f790213b1a0cb5131044065e752a8d8e0c9e860d81d1a759d2365426e6e342158e64effb9f68ae486f70eefd98abd7d21841\",\"name\":\"@tauri-apps/plugin-opener\",\"version\":\"2.5.3\"},\"@tauri-apps__plugin-updater-2.10.0.tgz\":{\"integrity\":\"ljN8jPlnT0aSn8ecYhuBib84alxfMx6Hc8vJSKMJyzGbTPFZAC44T2I1QNFZssgWKrAlofvJqCC6Rr472JWfkQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"96337c8cf9674f46929fc79c621b8189bf386a5c5f331e8773cbc948a309cb319b4cf159002e384f623540d159b2c8162ab025a1fbc9a820ba46be3bd8959f91\",\"name\":\"@tauri-apps/plugin-updater\",\"version\":\"2.10.0\"},\"@testing-library__dom-10.4.1.tgz\":{\"integrity\":\"o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a383d725089da8997cd9c90569751ea005be5f2b0f2dab98238dc06e48b984005df39de23218ada2873ace73a773381b4d89843fa53aff2d59c8a008b2f30a1a\",\"name\":\"@testing-library/dom\",\"version\":\"10.4.1\"},\"@testing-library__jest-dom-6.9.1.tgz\":{\"integrity\":\"zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cc870e35afa156d55249ea7d513de3679ae2ce8d81b318320d853b5850f978808113b9e8dfcf351c679bfd09067ec26ce894e4635690853eeb20f0bb7bed279c\",\"name\":\"@testing-library/jest-dom\",\"version\":\"6.9.1\"},\"@testing-library__react-16.3.2.tgz\":{\"integrity\":\"XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5d4e7f4b2b5033eca4a8c9c09ef076ba66893483ac2c5dcf56ffffd44c38093729cf4fc1472cbf69fe34aaaaeded28caa43753d6c68131ce36094a24e606b0fa\",\"name\":\"@testing-library/react\",\"version\":\"16.3.2\"},\"@types__aria-query-5.0.4.tgz\":{\"integrity\":\"rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"adf4fddee8f9b343d12fb13371c18cb376eba6585cae08670e8576e8da8a842012d61568f9674db0fbc4ff26fa8a57ebe618b630493a77911625329dc60f2357\",\"name\":\"@types/aria-query\",\"version\":\"5.0.4\"},\"@types__babel__core-7.20.5.tgz\":{\"integrity\":\"qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"aa8429ad9bf3e70405270303a9eb1e4575afdeba8cbe18296d715f5725a16f1f57e3b3ce200ea2ffe75779f12664aa0080e69375a22035232a30853ad72472cc\",\"name\":\"@types/babel__core\",\"version\":\"7.20.5\"},\"@types__babel__generator-7.27.0.tgz\":{\"integrity\":\"ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b9f15dd978bdd8e0153d8b32f8fe27eff53b7baf1f7b1d3e11ef20486f4a5fb7a8d3ce025a2438b1dc64b6f765d1b38fba95ed5493d8d7dce4e84c16a9443c96\",\"name\":\"@types/babel__generator\",\"version\":\"7.27.0\"},\"@types__babel__template-7.4.4.tgz\":{\"integrity\":\"h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"87f354692c86e44cb1048a7c611c68e1131edbfa9082fca8c11c1533385884108e35b5bc3d4b20e2590532b86066151ee73dcbdcc88b0eebf227f09a3dad80f0\",\"name\":\"@types/babel__template\",\"version\":\"7.4.4\"},\"@types__babel__traverse-7.28.0.tgz\":{\"integrity\":\"8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f0fbdc5dfef48130d9060b7da6dc49f1e9417818dc2ce01c3ada0efe63c98ed8e2d7e09d19b1e09bbee89b51abb0fc6c884fae5c8a4d48aeb8518688c105dde1\",\"name\":\"@types/babel__traverse\",\"version\":\"7.28.0\"},\"@types__chai-5.2.3.tgz\":{\"integrity\":\"Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"330e79f28780f5f15bbfae7fcb8987b570ecf5b3e714c6402ff8f174f154a4e1c72175fdd667201076d2e4b6a1afea7064547c03b19095e456788e9c1850b650\",\"name\":\"@types/chai\",\"version\":\"5.2.3\"},\"@types__d3-array-3.2.2.tgz\":{\"integrity\":\"hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"84e2d655b9bbb91cdad01617a48216e69c5faca7b45be0f996b162004611fa96fac373764b048c6896d77547d212ff9d4f831f1c12ed9f98ecd0b01668eea8b7\",\"name\":\"@types/d3-array\",\"version\":\"3.2.2\"},\"@types__d3-color-3.1.3.tgz\":{\"integrity\":\"iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"88ef74b1cb61f5601b9a0bfba20a2ae7b3bd6292a61416e6a04a021c3076c4c058d3efca56ba806820f2084d7a754b2978ebc8c4515123ed2c12da83ab2d9be0\",\"name\":\"@types/d3-color\",\"version\":\"3.1.3\"},\"@types__d3-drag-3.0.7.tgz\":{\"integrity\":\"HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1c4de354a97353d01a31accdb9fa28449e59a5698b22873dd00dfb594d893267aadbcc35150a8266cc07677c51f92bb161fb731eae9653a2891efab12b34f1c5\",\"name\":\"@types/d3-drag\",\"version\":\"3.0.7\"},\"@types__d3-ease-3.0.2.tgz\":{\"integrity\":\"NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"35c5752633b9a03ce82b6ea83336c82c4e875bbb955ce1cb42f1ec841516e1431d6467e263abf905e43087d6bdb42ceff8279e7d940726de524602b5e7846d88\",\"name\":\"@types/d3-ease\",\"version\":\"3.0.2\"},\"@types__d3-interpolate-3.0.4.tgz\":{\"integrity\":\"mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9a02cf11396ba55575611248825af8133e3b83b6318e5d658fb60ab223026f6ed5247f56f0d54ce816fd77c924a46fee0104b90266c0e3cab6200a2528aa3530\",\"name\":\"@types/d3-interpolate\",\"version\":\"3.0.4\"},\"@types__d3-path-3.1.1.tgz\":{\"integrity\":\"VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"54c64163242f6c6996c9655e6b4107b3f0702e0c5cf8c2a2d732c308e364b28cc8e1824c713b7c644b8847849bd4c31313c30c5b8f6fd08c08e7e6fb4667d696\",\"name\":\"@types/d3-path\",\"version\":\"3.1.1\"},\"@types__d3-scale-4.0.9.tgz\":{\"integrity\":\"dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"74b9adc01f3390078efe3b8031f9d5fac22d2a396cc3694a759555cba2d1af470199e8314800622c4a4656648927c3b4f22e3eb0647aa90b5be96b6ec0976f57\",\"name\":\"@types/d3-scale\",\"version\":\"4.0.9\"},\"@types__d3-selection-3.0.11.tgz\":{\"integrity\":\"bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6e1017bb6dc3256b2b238e7169f629910e0db5c28cc169c00bfbcaaddda5fa7c4c16ebce4f75cc613223da8a6ff2fabc00ee5887b41a73f9d278fff7ce34cad3\",\"name\":\"@types/d3-selection\",\"version\":\"3.0.11\"},\"@types__d3-shape-3.1.8.tgz\":{\"integrity\":\"lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"95a7b48967dc0de47baadeeb03cf01362a9dbcf4b9a4554fa68e4e7e3125c0d693db2c9e91b3340bdbcafb2a81a84987afa9439119d83684c162502025aedae3\",\"name\":\"@types/d3-shape\",\"version\":\"3.1.8\"},\"@types__d3-time-3.0.4.tgz\":{\"integrity\":\"yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"caecd9ba0d6790001a0650418a42994e0cc2780fa4d6ecb8645c1600d39f2b0e73e4b46157480d03b80d90a9bb1e82be1d1374c17dc49311a4d1fa5b5a1981ee\",\"name\":\"@types/d3-time\",\"version\":\"3.0.4\"},\"@types__d3-timer-3.0.2.tgz\":{\"integrity\":\"Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3ecdd3f04f1d6436a6e9f5323623247a42b75d4b1a5048a4fa274ef7f6233ed7e3daaaee17cb450574bb5e1b44e2221704bc6198b8cfdd25e92e155fdb523d2f\",\"name\":\"@types/d3-timer\",\"version\":\"3.0.2\"},\"@types__d3-transition-3.0.9.tgz\":{\"integrity\":\"uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b994b9b217f1ccedeb1a5bb4702ddb8e63052ac5eff9299965c829d0a0f6dadb38b865e9e445581b3bbfd1877065e2a675d85c01c718b511092a43df5e466e0a\",\"name\":\"@types/d3-transition\",\"version\":\"3.0.9\"},\"@types__d3-zoom-3.0.8.tgz\":{\"integrity\":\"iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8aa302e3f6251424a53bcfb6222d461869620806385dd786ef8f30e6f4146debe56c3bb4cd28c7ffe8e88e8ad05412bfb1ed23e8350534f0464aa0f76166270f\",\"name\":\"@types/d3-zoom\",\"version\":\"3.0.8\"},\"@types__dagre-0.7.54.tgz\":{\"integrity\":\"QjcRY+adGbYvBFS7cwv5txhVIwX1XXIUswWl+kSQTbI6NjgZydrZkEKX/etzVd7i+bCsCb40Z/xlBY5eoFuvWQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"42371163e69d19b62f0454bb730bf9b718552305f55d7214b305a5fa44904db23a363819c9dad9904297fdeb7355dee2f9b0ac09be3467fc65058e5ea05baf59\",\"name\":\"@types/dagre\",\"version\":\"0.7.54\"},\"@types__debug-4.1.13.tgz\":{\"integrity\":\"KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2925609909b33303e59ad9633a899aca847cf56e05ca70808b713c3cfb3bbe60d53def38853faf18f2a425f4e19265ecd31d2301a6bd53cb96f1b6dfc92d9f5b\",\"name\":\"@types/debug\",\"version\":\"4.1.13\"},\"@types__deep-eql-4.0.2.tgz\":{\"integrity\":\"c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"73d87d75554c8a030f7386f04ef0b9771aada8967040f78fb168cf96948e9e88dba2bea91aa764e78d657c0ec0a8542be6907505176ad23b98f5d6fcd41c3217\",\"name\":\"@types/deep-eql\",\"version\":\"4.0.2\"},\"@types__estree-1.0.8.tgz\":{\"integrity\":\"dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7561f31dad96a845c8fced44f4e8eba1c313289976992ac4a258752289abbfa53e26e3706875ec5f1f5b2eee601bb05458520dd2c90840943f2f5ac87b1e17eb\",\"name\":\"@types/estree\",\"version\":\"1.0.8\"},\"@types__estree-jsx-1.0.5.tgz\":{\"integrity\":\"52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e7609c515345c9f6f503600ba1c430fc377505014d992764b82dc1919ea2aa174c7d0cfb25638546e2459683b38e4fba5a28d4e7a9bda0a5c501773ba374e8c2\",\"name\":\"@types/estree-jsx\",\"version\":\"1.0.5\"},\"@types__hast-3.0.4.tgz\":{\"integrity\":\"WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"58fb3e6db430e5a0a3fb1ea568d1962c7df0be21eda02bff3f7fa8b4185b3a12601bcaada5d00c9530b12edb13580ecb1f53a1fdb1421ec067d133d2e66df411\",\"name\":\"@types/hast\",\"version\":\"3.0.4\"},\"@types__json-schema-7.0.15.tgz\":{\"integrity\":\"5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e7e7cff0ff0c14d0be0326420f1ac1da991914f1b3a90594ce949ebae54bbe6f1531ca2b3586af06aa057312bc6d0cf842c6e7e2850411e9b8c032df732b061c\",\"name\":\"@types/json-schema\",\"version\":\"7.0.15\"},\"@types__mdast-4.0.4.tgz\":{\"integrity\":\"kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"90668d6cf87593b005ce0a6e77f80c76f226e71b840b291147e26758a427a3d4c05d56ba5885421933ef6067a42032f8bb009941261b53134149bd5a528efda0\",\"name\":\"@types/mdast\",\"version\":\"4.0.4\"},\"@types__ms-2.1.0.tgz\":{\"integrity\":\"GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1ac0822190c4fe9de2f7abed12ac7eedd054197adcef37922b7c303c721a453852fbd3a15885d1ab3b3877a93549553c83dd43acd456c56506869e4a5d06f654\",\"name\":\"@types/ms\",\"version\":\"2.1.0\"},\"@types__node-24.12.0.tgz\":{\"integrity\":\"GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1980f1b198b70a1826724453f473d4d1612128b3f4f1ebff61f72ad80b2d8eb0c048e6024977b28c3b07838bf9b788ce8fb7320d7def9a9ada7ca956206f4c5d\",\"name\":\"@types/node\",\"version\":\"24.12.0\"},\"@types__normalize-package-data-2.4.4.tgz\":{\"integrity\":\"37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"dfb8be39a59387da9e2b82d21cfb32442ecd6a19c6a2d36e66f8cb4a070fcdb9691c1debac227100e808e6009d2a6edca289ec697d4e7f420b8937276636dfc4\",\"name\":\"@types/normalize-package-data\",\"version\":\"2.4.4\"},\"@types__react-19.2.14.tgz\":{\"integrity\":\"ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8a57131ff52788290c76d7b192808dd1b23ba4c7090ef99014fbee3ef98469803f3527c54c081d5122c0a158da4499bbfba3ef70cfaad7360ec12e304d8305f7\",\"name\":\"@types/react\",\"version\":\"19.2.14\"},\"@types__react-dom-19.2.3.tgz\":{\"integrity\":\"jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8e9d8bfde63a7e7f8a81555000ea9822d6c5d1563f600a5ee4ccf61746b29123bc831df56d8099caf49e6310872afcc71b97998dcfb3c9a4b906b056c9adbe91\",\"name\":\"@types/react-dom\",\"version\":\"19.2.3\"},\"@types__trusted-types-2.0.7.tgz\":{\"integrity\":\"ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"49c68f767d5d41cce06e5d101537933a65471542eddfde17260390368c95859eabdaf2e730b25f04f779dd2079d93ff71b7e95235fe0d8c65a5f47300ee5ec7f\",\"name\":\"@types/trusted-types\",\"version\":\"2.0.7\"},\"@types__unist-2.0.11.tgz\":{\"integrity\":\"CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0a604a88be8d368fceaa098c9fde4593d5a1969da6b6f22ff8a36940a3761784a3beb11eb2e6d34561984a0f819d664e9e509a493535b0ca6c04ece06d8867b0\",\"name\":\"@types/unist\",\"version\":\"2.0.11\"},\"@types__unist-3.0.3.tgz\":{\"integrity\":\"ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"928fe0205251bf5efb5e066c65c0709ea24de71fc689e9fca8d3a7d03e5b414ff303355ff59b7706571488baa157dcb801193419b4f7b675223cd8274d7cdcfd\",\"name\":\"@types/unist\",\"version\":\"3.0.3\"},\"@types__use-sync-external-store-0.0.6.tgz\":{\"integrity\":\"zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cc50c00feb65a5fdabe1ab2e1c48f45c7ea963a8b483935e0073e7fb5e70937055e8903af5e1111570b58321938439156b5cc2c8aaf98e8c75fb62db57f00c2e\",\"name\":\"@types/use-sync-external-store\",\"version\":\"0.0.6\"},\"@typescript-eslint__eslint-plugin-8.58.0.tgz\":{\"integrity\":\"RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44b9154a236e50fd42d9138859fa97f987147cb6929f1184ffc33e639ee5a2957083d5536187e1bb3d7961fd48cc22a0663ebfac86d84e6242512aabefaaf45a\",\"name\":\"@typescript-eslint/eslint-plugin\",\"version\":\"8.58.0\"},\"@typescript-eslint__parser-8.58.0.tgz\":{\"integrity\":\"rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"acba066487fd69f691058b0f50cb6f9035b29305f050f2fad0779b4782604c8f26c5f15ed9c413bb70068ad00da786fd07642556bbba5b38e007623324a88248\",\"name\":\"@typescript-eslint/parser\",\"version\":\"8.58.0\"},\"@typescript-eslint__project-service-8.58.0.tgz\":{\"integrity\":\"8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f10ff004f58b40fd63d7a371a0f3482a90d914c6b197bc96228a975987963be05b7769a382fa05d1dc4fda3299839fb1e3dae029d7fb0a4e3bdccf0f0b757d96\",\"name\":\"@typescript-eslint/project-service\",\"version\":\"8.58.0\"},\"@typescript-eslint__scope-manager-8.58.0.tgz\":{\"integrity\":\"W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5b52eeaf5a05e741714a735d1a9dd5b3a3fec814529998b0e0822311e63177c5102708541748038030ff5bf4e09a1ef79b1804537a97d01cdd97f346b923c4a5\",\"name\":\"@typescript-eslint/scope-manager\",\"version\":\"8.58.0\"},\"@typescript-eslint__tsconfig-utils-8.58.0.tgz\":{\"integrity\":\"doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"768352644549b1612ee21b62542f8f47a36933ea5af9ae02947f4835158e58253332cb7f540f5ce205eaf7617c1940f5af084dbd12e48237d8b455de817405ec\",\"name\":\"@typescript-eslint/tsconfig-utils\",\"version\":\"8.58.0\"},\"@typescript-eslint__type-utils-8.58.0.tgz\":{\"integrity\":\"aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"686b024089a40c8a8ccb1d6ee0fad595b8bf92b983b1052ce3301c095e8cef23dc3debfe46a5659ddb09cbd909f132e2856f5367491b0c0cdcb692e7e68fa53a\",\"name\":\"@typescript-eslint/type-utils\",\"version\":\"8.58.0\"},\"@typescript-eslint__types-8.58.0.tgz\":{\"integrity\":\"O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3bd0a3c72a434fcf5f6c7c517c44cda009c78ff8ba22944ad02bdb54ddea89bc652dda39a7985c2e652e082ac7329c62592c0ac88f2608feea44d62e389d14c3\",\"name\":\"@typescript-eslint/types\",\"version\":\"8.58.0\"},\"@typescript-eslint__typescript-estree-8.58.0.tgz\":{\"integrity\":\"7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"eefbf95166c7a9ec3f76fb3e0f77b546f2efd6fd9e799f6dc511cf9c410152048d2f1e6085dce31dad2c80b59854ab2c1fe958995d09696768b9ba349dc1982c\",\"name\":\"@typescript-eslint/typescript-estree\",\"version\":\"8.58.0\"},\"@typescript-eslint__utils-8.58.0.tgz\":{\"integrity\":\"RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"45f792a9c15e1cc1e5016cede1306358e02da16f659ec00688fdc66da5fdb95813618acc6d59c638d11f502892b2cfb1307165f9e1d98a2a6603c5a443b16e34\",\"name\":\"@typescript-eslint/utils\",\"version\":\"8.58.0\"},\"@typescript-eslint__visitor-keys-8.58.0.tgz\":{\"integrity\":\"XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5c9f540fdf9b6c3a386b87a9ada4f01b74ec34f7a207d69286b527780557cbcab82eec28c0dfaabbcf7fe81c8b30836abc831e23d1fd84e1d0b60fe28eb617cd\",\"name\":\"@typescript-eslint/visitor-keys\",\"version\":\"8.58.0\"},\"@ungap__structured-clone-1.3.0.tgz\":{\"integrity\":\"WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5a6a0df2a688028ed64d859b019b86f0f604867e5f933edd66ba93059eddb6dfff94bd86c26b3521c9d0e721ea8c37d7f05b798f86330ccdb77fcef305f0def6\",\"name\":\"@ungap/structured-clone\",\"version\":\"1.3.0\"},\"@vitejs__plugin-react-5.2.0.tgz\":{\"integrity\":\"YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6262a47e13808b7c2c0753e126ae52723dc65cc9f75afb50fc90b4c68a29b87a1749d9ad752b4ea45ad8693d6489ed9880505c21eeb844eccc6118c2ad839d63\",\"name\":\"@vitejs/plugin-react\",\"version\":\"5.2.0\"},\"@vitest__coverage-v8-4.1.2.tgz\":{\"integrity\":\"sPK//PHO+kAkScb8XITeB1bf7fsk85Km7+rt4eeuRR3VS1/crD47cmV5wicisJmjNdfeokTZwjMk4Mj2d58Mgg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b0f2bffcf1cefa402449c6fc5c84de0756dfedfb24f392a6efeaede1e7ae451dd54b5fdcac3e3b726579c22722b099a335d7dea244d9c23324e0c8f6779f0c82\",\"name\":\"@vitest/coverage-v8\",\"version\":\"4.1.2\"},\"@vitest__expect-4.1.2.tgz\":{\"integrity\":\"gbu+7B0YgUJ2nkdsRJrFFW6X7NTP44WlhiclHniUhxADQJH5Szt9mZ9hWnJPJ8YwOK5zUOSSlSvyzRf0u1DSBQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"81bbbeec1d188142769e476c449ac5156e97ecd4cfe385a58627251e78948710034091f94b3b7d999f615a724f27c63038ae7350e492952bf2cd17f4bb50d205\",\"name\":\"@vitest/expect\",\"version\":\"4.1.2\"},\"@vitest__mocker-4.1.2.tgz\":{\"integrity\":\"Ize4iQtEALHDttPRCmN+FKqOl2vxTiNUhzobQFFt/BM1lRUTG7zRCLOykG/6Vo4E4hnUdfVLo5/eqKPukcWW7Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2337b8890b4400b1c3b6d3d10a637e14aa8e976bf14e2354873a1b40516dfc13359515131bbcd108b3b2906ffa568e04e219d475f54ba39fdea8a3ee91c596ed\",\"name\":\"@vitest/mocker\",\"version\":\"4.1.2\"},\"@vitest__pretty-format-4.1.2.tgz\":{\"integrity\":\"dwQga8aejqeuB+TvXCMzSQemvV9hNEtDDpgUKDzOmNQayl2OG241PSWeJwKRH3CiC+sESrmoFd49rfnq7T4RnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7704206bc69e8ea7ae07e4ef5c23334907a6bd5f61344b430e9814283cce98d41aca5d8e1b6e353d259e2702911f70a20beb044ab9a815de3dadf9eaed3e119c\",\"name\":\"@vitest/pretty-format\",\"version\":\"4.1.2\"},\"@vitest__runner-4.1.2.tgz\":{\"integrity\":\"Gr+FQan34CdiYAwpGJmQG8PgkyFVmARK8/xSijia3eTFgVfpcpztWLuP6FttGNfPLJhaZVP/euvujeNYar36OQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1abf8541a9f7e02762600c291899901bc3e093215598044af3fc528a389adde4c58157e9729ced58bb8fe85b6d18d7cf2c985a6553ff7aebee8de3586abdfa39\",\"name\":\"@vitest/runner\",\"version\":\"4.1.2\"},\"@vitest__snapshot-4.1.2.tgz\":{\"integrity\":\"g7yfUmxYS4mNxk31qbOYsSt2F4m1E02LFqO53Xpzg3zKMhLAPZAjjfyl9e6z7HrW6LvUdTwAQR3HHfLjpko16A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"83bc9f526c584b898dc64df5a9b398b12b761789b5134d8b16a3b9dd7a73837cca3212c03d90238dfca5f5eeb3ec7ad6e8bbd4753c00411dc71df2e3a64a35e8\",\"name\":\"@vitest/snapshot\",\"version\":\"4.1.2\"},\"@vitest__spy-4.1.2.tgz\":{\"integrity\":\"DU4fBnbVCJGNBwVA6xSToNXrkZNSiw59H8tcuUspVMsBDBST4nfvsPsEHDHGtWRRnqBERBQu7TrTKskmjqTXKA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0d4e1f0676d508918d070540eb1493a0d5eb9193528b0e7d1fcb5cb94b2954cb010c1493e277efb0fb041c31c6b564519ea04444142eed3ad32ac9268ea4d728\",\"name\":\"@vitest/spy\",\"version\":\"4.1.2\"},\"@vitest__utils-4.1.2.tgz\":{\"integrity\":\"xw2/TiX82lQHA06cgbqRKFb5lCAy3axQ4H4SoUFhUsg+wztiet+co86IAMDtF6Vm1hc7J6j09oh/rgDn+JdKIQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c70dbf4e25fcda5407034e9c81ba912856f9942032ddac50e07e12a1416152c83ec33b627adf9ca3ce8800c0ed17a566d6173b27a8f4f6887fae00e7f8974a21\",\"name\":\"@vitest/utils\",\"version\":\"4.1.2\"},\"@xyflow__react-12.10.2.tgz\":{\"integrity\":\"CgIi6HwlcHXwlkTpr0fxLv/0sRVNZ8IdwKLzzeCscaYBwpvfcH1QFOCeaTCuEn1FQEs/B8CjnTSjhs8udgmBgQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0a0222e87c257075f09644e9af47f12efff4b1154d67c21dc0a2f3cde0ac71a601c29bdf707d5014e09e6930ae127d45404b3f07c0a39d34a386cf2e76098181\",\"name\":\"@xyflow/react\",\"version\":\"12.10.2\"},\"@xyflow__system-0.0.76.tgz\":{\"integrity\":\"hvwvnRS1B3REwVDlWexsq7YQaPZeG3/mKo1jv38UmnpWmxihp14bW6VtEOuHEwJX2FvzFw8k77LyKSk/wiZVNA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"86fc2f9d14b5077444c150e559ec6cabb61068f65e1b7fe62a8d63bf7f149a7a569b18a1a75e1b5ba56d10eb87130257d85bf3170f24efb2f229293fc2265534\",\"name\":\"@xyflow/system\",\"version\":\"0.0.76\"},\"acorn-8.16.0.tgz\":{\"integrity\":\"UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"51527213d32db4eb014080cac35b246fd9c0c10b91e70b860f7fbcd8ae89809966fd8f8a23dda836c30d199098743b15b511d26a4d29715e439e8e7ee2387db3\",\"name\":\"acorn\",\"version\":\"8.16.0\"},\"acorn-jsx-5.3.2.tgz\":{\"integrity\":\"rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781\",\"name\":\"acorn-jsx\",\"version\":\"5.3.2\"},\"agent-base-7.1.4.tgz\":{\"integrity\":\"MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"32703e613f1fc1f24f801c779bad0c36a6a49b7d173a4c88a07d72ea1b9342f0b43f0646ee48bc35a70b05cacf6cda28f2f119cbb269ba4efe8cc3be094a2f4d\",\"name\":\"agent-base\",\"version\":\"7.1.4\"},\"ajv-6.14.0.tgz\":{\"integrity\":\"IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"216ae8b26ff2ae7e377a22aa91f9078aced08a80e579a5d01dd0d53ca834152c3077f0eebf25fbf5366714e9d8a41edd72c140326b45ced66e5cf0ef49e3e417\",\"name\":\"ajv\",\"version\":\"6.14.0\"},\"ansi-regex-5.0.1.tgz\":{\"integrity\":\"quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15\",\"name\":\"ansi-regex\",\"version\":\"5.0.1\"},\"ansi-styles-4.3.0.tgz\":{\"integrity\":\"zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212\",\"name\":\"ansi-styles\",\"version\":\"4.3.0\"},\"ansi-styles-5.2.0.tgz\":{\"integrity\":\"Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0b1c29b7649f4f34ed5dc7ce97318479ef0ef9cf8c994806acd8817179ee5b1b852477ba6b91f3eeac21c1ee4e81a498234209be42ea597d40486f9c24e90488\",\"name\":\"ansi-styles\",\"version\":\"5.2.0\"},\"any-promise-1.3.0.tgz\":{\"integrity\":\"7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ed4be629a95646dd708232f546b1b1a12256ff44191487a0a5e1af646f648e9f2fad1bb9e574c76f09eaab61a95e6f6e2db72e8719b722a5fd381e0c651d5bd8\",\"name\":\"any-promise\",\"version\":\"1.3.0\"},\"argparse-2.0.1.tgz\":{\"integrity\":\"8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd\",\"name\":\"argparse\",\"version\":\"2.0.1\"},\"aria-query-5.3.0.tgz\":{\"integrity\":\"b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6f43f4b193cab72bbc1e479101f0aad087d44592be4aec0c8d8d545c6054dbbc290224f0400225ab9e886c83becad93f2634b57cc475e1e7b958105f2a2e49e8\",\"name\":\"aria-query\",\"version\":\"5.3.0\"},\"aria-query-5.3.2.tgz\":{\"integrity\":\"COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"08e44ea676a86a9d44d85d34d12eb6afa03ad2e1d99e696fa2685fc93d8395372b6353ab04a9f65211fbaa7e704c2f7332f0f4018edcb1d3d237028ffbb5a243\",\"name\":\"aria-query\",\"version\":\"5.3.2\"},\"array-ify-1.0.0.tgz\":{\"integrity\":\"c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"73900c7f7e1b29dbcf850eed04686a92028d53332be1652cf960ed0b665418e52771bc4a313beac5872d8ac796dfe2f86c0f1e73e19c67afc0fc55b89bcba49e\",\"name\":\"array-ify\",\"version\":\"1.0.0\"},\"assertion-error-2.0.1.tgz\":{\"integrity\":\"Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2338bc45071f7ea09e3558058a02a58b5b2c92521ba479c261ce809275c662807a82b26ac9e6f2ee3bf5d895108264c09c80e76dc935bb192c4f87733773d604\",\"name\":\"assertion-error\",\"version\":\"2.0.1\"},\"ast-v8-to-istanbul-1.0.0.tgz\":{\"integrity\":\"1fSfIwuDICFA4LKkCzRPO7F0hzFf0B7+Xqrl27ynQaa+Rh0e1Es0v6kWHPott3lU10AyAr7oKHa65OppjLn3Rg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d5f49f230b83202140e0b2a40b344f3bb17487315fd01efe5eaae5dbbca741a6be461d1ed44b34bfa9161cfa2db77954d7403202bee82876bae4ea698cb9f746\",\"name\":\"ast-v8-to-istanbul\",\"version\":\"1.0.0\"},\"autoprefixer-10.4.27.tgz\":{\"integrity\":\"NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"34ff403c4fad3be2ee2469fbffdf9ca21925ba726c5d689a5847d5dec8b81a2fd71c3c15360930af527745060522f3f2efa1a627dfdb5bcbf2a14d4b731c0a1c\",\"name\":\"autoprefixer\",\"version\":\"10.4.27\"},\"available-typed-arrays-1.0.7.tgz\":{\"integrity\":\"wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c2f52306d48637bfbb4a3369abff4cd93837e745190f7abad881592db4404756d23250a8d5969e5be049f83d3dd1ee2120864b05c4c359ee0c8788ef5036a3cd\",\"name\":\"available-typed-arrays\",\"version\":\"1.0.7\"},\"bail-2.0.2.tgz\":{\"integrity\":\"0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d313ba99877b241d987acc432a995a7d1a6c88eccfb7d574d9d74f08b6d8d716063ce5f6e0d4f2379d2a9d4c6008f712a183212a902e0538d0a1164202450347\",\"name\":\"bail\",\"version\":\"2.0.2\"},\"balanced-match-1.0.2.tgz\":{\"integrity\":\"3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f\",\"name\":\"balanced-match\",\"version\":\"1.0.2\"},\"balanced-match-4.0.4.tgz\":{\"integrity\":\"BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"04bae011c453c17da8ea01b118e08dc8cbc64a9df96287ee633c3d87520c4d198aaadb40659554ebb6dd6fd3ebdaf50703cfa3de2dad25f8cee82ebee26c864c\",\"name\":\"balanced-match\",\"version\":\"4.0.4\"},\"base64-js-1.5.1.tgz\":{\"integrity\":\"AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58\",\"name\":\"base64-js\",\"version\":\"1.5.1\"},\"baseline-browser-mapping-2.10.13.tgz\":{\"integrity\":\"BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"04bdac4ee1ce772d184f595889e5314f0fd032d3c10b7a669490bac64f0105856feaf730dd219d29e990f97b31f6293617f9580cef6daac1501f5afd3c5b872b\",\"name\":\"baseline-browser-mapping\",\"version\":\"2.10.13\"},\"bidi-js-1.0.3.tgz\":{\"integrity\":\"RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44ab21408d51dd843e9fd609cf6410d78ecfeba10ba5ad45404836d0393ca16f6dd8a80b6e90cb2e9f5a199ef2f161d2b210e49c6d1b927a86c39fedc82b39b7\",\"name\":\"bidi-js\",\"version\":\"1.0.3\"},\"brace-expansion-1.1.13.tgz\":{\"integrity\":\"9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f592e9ad64ba1043668443a98c2616d9cf159263af72420965f92beeb056e9d39b99f809fcbd46a52616e47a68f650f3e03d7e9f40a4cfcad4ec5c070d0886ff\",\"name\":\"brace-expansion\",\"version\":\"1.1.13\"},\"brace-expansion-5.0.5.tgz\":{\"integrity\":\"VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"559ce72e0b70867f8c69cb7db5f8b0c7ae1f03d7ab1c7fcc0971147c1ff46d7ffa173ea7cb91064d7625b4ca1caa0e31140419b673b70c75965e2f118ae37b71\",\"name\":\"brace-expansion\",\"version\":\"5.0.5\"},\"browserslist-4.28.2.tgz\":{\"integrity\":\"48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e3cc52ae2658620fbca979daf64c2a8c8573b90c62f8a616a76fb99c262760a3d3af42ef0fcf49aa4d8eaf9a20c73d0d50c7c88e1876948517fcbc97f41e2822\",\"name\":\"browserslist\",\"version\":\"4.28.2\"},\"buffer-6.0.3.tgz\":{\"integrity\":\"FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"153882a4dc6dc226591c465b71b4c87198c44552029fdcaafe90c591397de7f031cc3d6768172d37b60eebcae233f80b48363bb1dacc6f2f21a1f00362ebaa38\",\"name\":\"buffer\",\"version\":\"6.0.3\"},\"bundle-require-5.1.0.tgz\":{\"integrity\":\"3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"dd6aeb3ae662c9a6993d6884b781b7f887df212542f476255ae7891015840f8647e1a2000b63e791d9ee46b47de0cfb0eb21969f8020956b49b4123c62abe0a0\",\"name\":\"bundle-require\",\"version\":\"5.1.0\"},\"cac-6.7.14.tgz\":{\"integrity\":\"b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6fa225bacf9cdd1add0e4f8984b2940107f3ce02c43f2eb0717a92edfff17b51044efb033fa18e446ed216e3ace9c203e5892a7215bf2d765b5f96dcf23ed971\",\"name\":\"cac\",\"version\":\"6.7.14\"},\"call-bind-1.0.8.tgz\":{\"integrity\":\"oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a0a95214c70cc29520d9e767921438e78c1f5a253fba5dc29097bf3c41dc4caba25fa4696de854885317bb5dc76a5199c5f530090cd91bbe3b617067d629bdc3\",\"name\":\"call-bind\",\"version\":\"1.0.8\"},\"call-bind-apply-helpers-1.0.2.tgz\":{\"integrity\":\"Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4a9d5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31\",\"name\":\"call-bind-apply-helpers\",\"version\":\"1.0.2\"},\"call-bound-1.0.4.tgz\":{\"integrity\":\"+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fb2b3df7b53dea9a382b1fc0069042aa103d12ec49690583420ef6f791f8841a61bf72198346e804abb0629b78617a7a319e4099942753fb72313951a5a49e8e\",\"name\":\"call-bound\",\"version\":\"1.0.4\"},\"callsites-3.1.0.tgz\":{\"integrity\":\"P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69\",\"name\":\"callsites\",\"version\":\"3.1.0\"},\"caniuse-lite-1.0.30001784.tgz\":{\"integrity\":\"WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"594df8ea7053925515f587d497ad1fa916d4e59ab25e5aafa354a08a01353805cae5b14bf0b2fdab52bb69aa7737bdfd97806f36a9e49b762b187898f6c7d443\",\"name\":\"caniuse-lite\",\"version\":\"1.0.30001784\"},\"ccount-2.0.1.tgz\":{\"integrity\":\"eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7b2ac5d23885a58fb776b4fadfcddfd6a8646c6b0b4a27cd02303ad4852366398b0968c8b58e8b07d7edf588680e0c1f99c941db386ee752dcefef796fc35102\",\"name\":\"ccount\",\"version\":\"2.0.1\"},\"chai-6.2.2.tgz\":{\"integrity\":\"NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3543d196e39f3a24ca04abd63ed483e0f845bd60aa3a2d01192b4d5ace7b5fd8eced7193a6b4a6168cf9174b56851e163e335e47d8d7a9d0bbfd4a522539e546\",\"name\":\"chai\",\"version\":\"6.2.2\"},\"chalk-4.1.2.tgz\":{\"integrity\":\"oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a0a9db845c91217a54b9ecfc881326c846b89db8f820e432ba173fc32f6463bfd654f73020ef5503aebc3eef1190eefed06efa48b44e7b2c3d0a9434eb58b898\",\"name\":\"chalk\",\"version\":\"4.1.2\"},\"character-entities-2.0.2.tgz\":{\"integrity\":\"shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b21c7ba10d00c1e9ff05121d92392fcf9e0f9c4108fc48f05c3488669f3afca29d6da7c78750dffd16060619f885b7b6fae282f459d3e540847723f3dda8bd85\",\"name\":\"character-entities\",\"version\":\"2.0.2\"},\"character-entities-html4-2.1.0.tgz\":{\"integrity\":\"1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d6fedf810463ea19d2c05a6ad44bb4ca7aff083130d2b5e8d81eb5a97acb35d1d998f2a06fb7ea4b56b6270174ac84a8f6aefb8c323c54c107a00a67f2a0e864\",\"name\":\"character-entities-html4\",\"version\":\"2.1.0\"},\"character-entities-legacy-3.0.0.tgz\":{\"integrity\":\"RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4693e9d1ab13ffab9f466fff009570a558996c633f3248d017125c710447988485ff6d8d06db07a805a62fefe99a43d6a08509756c9e565793975c3274701355\",\"name\":\"character-entities-legacy\",\"version\":\"3.0.0\"},\"character-reference-invalid-2.0.1.tgz\":{\"integrity\":\"iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"881678178c116f239156cbb48cf57b81790eb066231873e6032bfe1e21c6f208b93ed0bd288da3d7ebfcfed9626d1be3a165f4dbbca9986fe7d07b4ee6deee9f\",\"name\":\"character-reference-invalid\",\"version\":\"2.0.1\"},\"chokidar-4.0.3.tgz\":{\"integrity\":\"Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"420ceef247c1be8f9c038f7ada39cfd4a912e83a29e4d4ba83b4792c5609af86fc51bf783cf417524b02c3d3ef5e87973d145d751342e42d4941447648c1ad9c\",\"name\":\"chokidar\",\"version\":\"4.0.3\"},\"classcat-5.0.5.tgz\":{\"integrity\":\"JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2616544fb245710cbf1335bad3993f92d1ed9dca28f6f9f25bfd86b29358c0594dd42fd69a3b95ff1b52d387bd48e90bdac4ddc3454067650609c43d951ea9eb\",\"name\":\"classcat\",\"version\":\"5.0.5\"},\"clsx-2.1.1.tgz\":{\"integrity\":\"eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7989b441606d52b0566561b4777f3a386030d7a67df793e2395a3607b6e35926c779d1a5e5ed1959aabae6438681448d7ac1080e407d2126d383f24af5d84264\",\"name\":\"clsx\",\"version\":\"2.1.1\"},\"color-convert-2.0.1.tgz\":{\"integrity\":\"RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529\",\"name\":\"color-convert\",\"version\":\"2.0.1\"},\"color-name-1.1.4.tgz\":{\"integrity\":\"dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40\",\"name\":\"color-name\",\"version\":\"1.1.4\"},\"comma-separated-tokens-2.0.3.tgz\":{\"integrity\":\"Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"16ee2125dbf37b29427d03e9f5219689da73accb3bb53ae5bba55bf1719a446724f1048d649269e77f16adbeb42dac787cfc11eb8562638ebc3885136d194666\",\"name\":\"comma-separated-tokens\",\"version\":\"2.0.3\"},\"commander-4.1.1.tgz\":{\"integrity\":\"NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"34e2a6f31864cc08f3171f01dafe4e0074febb9a5141cd9409ad95abd8d82ffdf5a36c22f66c4103b2c816cdec5795520b8f73ea91217db3142ef4a12a3dba58\",\"name\":\"commander\",\"version\":\"4.1.1\"},\"compare-func-2.0.0.tgz\":{\"integrity\":\"zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cc78a0e4dfad3d6011a280676f4671d4c15c75fa7226b7d32776392fe205bd49bcaccef8847cfaeb3d20c34c78b628e1e42a2b2a42940a75bcd91daf9a978244\",\"name\":\"compare-func\",\"version\":\"2.0.0\"},\"concat-map-0.0.1.tgz\":{\"integrity\":\"/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa\",\"name\":\"concat-map\",\"version\":\"0.0.1\"},\"confbox-0.1.8.tgz\":{\"integrity\":\"RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44cb66c3488591e478615f9f50e4ae72b88040d6fd83ccc5479d8c582b65f9c09938544d2facde077f79bcfcc58448e39f87ccc57b9d9842e797f285fd6acaeb\",\"name\":\"confbox\",\"version\":\"0.1.8\"},\"consola-3.4.2.tgz\":{\"integrity\":\"5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e4829c757d279d86af8ba1bb4ed3a1c24633ca37c995ab5b8cc8ee2d27c4da4613e693033a2959e0ebcc862eb7ec27032024e6cf7c0044fa3286ac97d58f97bc\",\"name\":\"consola\",\"version\":\"3.4.2\"},\"conventional-changelog-7.2.0.tgz\":{\"integrity\":\"BEdgG+vPl53EVlTTk9sZ96aagFp0AQ5pw/ggiQMy2SClLbTo1r0l+8dSg79gkLOO5DS1Lswuhp5fWn6RwE+ivg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0447601bebcf979dc45654d393db19f7a69a805a74010e69c3f820890332d920a52db4e8d6bd25fbc75283bf6090b38ee434b52ecc2e869e5f5a7e91c04fa2be\",\"name\":\"conventional-changelog\",\"version\":\"7.2.0\"},\"conventional-changelog-angular-8.3.1.tgz\":{\"integrity\":\"6gfI3otXK5Ph5DfCOI1dblr+kN3FAm5a97hYoQkqNZxOaYa5WKfXH+AnpsmS+iUH2mgVC2Cg2Qw9m5OKcmNrIg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ea07c8de8b572b93e1e437c2388d5d6e5afe90ddc5026e5af7b858a1092a359c4e6986b958a7d71fe027a6c992fa2507da68150b60a0d90c3d9b938a72636b22\",\"name\":\"conventional-changelog-angular\",\"version\":\"8.3.1\"},\"conventional-changelog-preset-loader-5.0.0.tgz\":{\"integrity\":\"SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"49eb434a7b572e4f0987534e025d46bb9b8b88235261e9c1e6d9b461579929e3d12200d6f654089aba264f02daddcfc669edbdf2db2038cfbf0984fd5c097434\",\"name\":\"conventional-changelog-preset-loader\",\"version\":\"5.0.0\"},\"conventional-changelog-writer-8.4.0.tgz\":{\"integrity\":\"HHBFkk1EECxxmCi4CTu091iuDpQv5/OavuCUAuZmrkWpmYfyD816nom1CvtfXJ/uYfAAjavgHvXHX291tSLK8g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1c7045924d44102c719828b8093bb4f758ae0e942fe7f39abee09402e666ae45a99987f20fcd7a9e89b50afb5f5c9fee61f0008dabe01ef5c75f6f75b522caf2\",\"name\":\"conventional-changelog-writer\",\"version\":\"8.4.0\"},\"conventional-commits-filter-5.0.0.tgz\":{\"integrity\":\"tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b5031a802382e7d11580d65c0b9ce5ed7a8edf45a48bd8bd27769c6d4be46a8b024fa257dc4785c090fb42aa783028a4467cd2d7c59757704b210ebacadbbaf9\",\"name\":\"conventional-commits-filter\",\"version\":\"5.0.0\"},\"conventional-commits-parser-6.4.0.tgz\":{\"integrity\":\"tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b6f460ec5201365c8fce3746f3059194f1d02491c8ec3ca586d446794f4babe26ea0f87904aa4f457f3765d2ebbd7b8e4aee44a3f7bb4b3390854e07776322bb\",\"name\":\"conventional-commits-parser\",\"version\":\"6.4.0\"},\"convert-source-map-2.0.0.tgz\":{\"integrity\":\"Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2afa78e7d1eb576144275080b22d4abbe318de46ac1f5f53172913cf6c5698c7aae9b936354dd75ef7c9f90eb59b4c64b56c2dfb51d261fdc966c4e6b3769126\",\"name\":\"convert-source-map\",\"version\":\"2.0.0\"},\"cookie-1.1.1.tgz\":{\"integrity\":\"ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7a2f00a2cee36b4c1e469173267100f541c9ffb5d09aa8256d1c277f60138dc07d5aaf3be15287f647e38e2acce94854dbf1397c561a77297284595d72a4a275\",\"name\":\"cookie\",\"version\":\"1.1.1\"},\"cross-spawn-7.0.6.tgz\":{\"integrity\":\"uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b95d903963f69d6ceccb668ca7c69189b862f5d9731791e0879487681f4e893184c834e2249cb1d2ecb9d505ddc966ed00736e6b85c9cd429c6b73b3294777bc\",\"name\":\"cross-spawn\",\"version\":\"7.0.6\"},\"css-tree-3.2.1.tgz\":{\"integrity\":\"X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5fbb2343371e521bb5bbb63fca5ad1645536152e8b462155a7aaca2cf836df2df1ddcdc338a030b97183a7e3c01a387a0929c28d8780ba5f29713f1b025fa548\",\"name\":\"css-tree\",\"version\":\"3.2.1\"},\"css.escape-1.5.1.tgz\":{\"integrity\":\"YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"61489fb175ee9271e552c9a58326343cace03ceafbfc58c278f7c736dd23c66f37c07662e38543310eff7c63648d8dff8d5d4c0bed429996da1f3ba0c9e46da6\",\"name\":\"css.escape\",\"version\":\"1.5.1\"},\"cssstyle-6.2.0.tgz\":{\"integrity\":\"Fm5NvhYathRnXNVndkUsCCuR63DCLVVwGOOwQw782coXFi5HhkXdu289l59HlXZBawsyNccXfWRYvLzcDCdDig==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"166e4dbe161ab614675cd56776452c082b91eb70c22d557018e3b0430efcd9ca17162e478645ddbb6f3d979f479576416b0b3235c7177d6458bcbcdc0c27438a\",\"name\":\"cssstyle\",\"version\":\"6.2.0\"},\"csstype-3.2.3.tgz\":{\"integrity\":\"z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cf51c629c632db103c00641fc2b9f43c0cbe3c1ed7fc64a3dd45495bda8aca7e37c566be825e675e6538aaa2cc4735952c50bc2aeb145fc4ffd240a2398a4021\",\"name\":\"csstype\",\"version\":\"3.2.3\"},\"d3-array-3.2.4.tgz\":{\"integrity\":\"tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b5d4009b2035f22e09ef0a6ba58abc0a5731672dd20b7d5031e072c8217246dec1547751110679969ce87b998511865459efa8abc1c1be4f498e989bc8457826\",\"name\":\"d3-array\",\"version\":\"3.2.4\"},\"d3-color-3.1.0.tgz\":{\"integrity\":\"zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ce0fdc85b5f2781b4c4352db0ff592a16d83a42dc8d26a663dd5beca74538ffc760c0598ac863ba9e6481e2768cf0576e26e226afaf5e653702302f14663b184\",\"name\":\"d3-color\",\"version\":\"3.1.0\"},\"d3-dispatch-3.0.1.tgz\":{\"integrity\":\"rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"af35323d4fd2eebc147e53322dcd444c37818f4351b8728a01cbee928cf086c86bea0e9ce5df338787368108d8d9b6747577862d67353c5d7be0fdad56f2a17e\",\"name\":\"d3-dispatch\",\"version\":\"3.0.1\"},\"d3-drag-3.0.0.tgz\":{\"integrity\":\"pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a566d424b7444d503c95034979c331a177c7eb1fa63b6510a3cad2999f90ab171bc80de17dea6b160213fff1d6da79470a159e2083304b616afa010046485392\",\"name\":\"d3-drag\",\"version\":\"3.0.0\"},\"d3-ease-3.0.1.tgz\":{\"integrity\":\"wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c11fd72b70f75dc2c8670a5bbd0c10e5f2bef1891db358a9ec0d93c5ed32c6771749dab52fdb24706edb95c79d90e5fe65c83118098b5f516b4466c00f0ce2d3\",\"name\":\"d3-ease\",\"version\":\"3.0.1\"},\"d3-format-3.1.2.tgz\":{\"integrity\":\"AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0090dd60e767c910d5e5be80ae297308f3f07357a3907728c856abaa53ea4fbcd162385abdc4f7b92aea70cbec821d828283db2b7442c321da572c5870fd80ae\",\"name\":\"d3-format\",\"version\":\"3.1.2\"},\"d3-interpolate-3.0.1.tgz\":{\"integrity\":\"3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ddb62cd6b383df7ba8f1aa897ca3f72563c089b830f199b6f8bf6f04a107276460faf89347ba39326bf999972278df854586803965f94890135fa9353d6cfbda\",\"name\":\"d3-interpolate\",\"version\":\"3.0.1\"},\"d3-path-3.1.0.tgz\":{\"integrity\":\"p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a7728fe4709ffdbbe305248ab9789de99aa28f1ef021f356f89fe668fb3e8b0477e5ab792426cb513d0bcc5d5c9e36c21d686acd04c83762697bca5179b20415\",\"name\":\"d3-path\",\"version\":\"3.1.0\"},\"d3-scale-4.0.2.tgz\":{\"integrity\":\"GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1995b8eb8835487eda83763b8578dff11a14b80148aa494e02adcc465e0e69669b4c5258f4f37f1356249615cb87e390ddf33dc92da73a40a84be58b67a92fc5\",\"name\":\"d3-scale\",\"version\":\"4.0.2\"},\"d3-selection-3.0.0.tgz\":{\"integrity\":\"fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7e64d159b34c9ac996abac4957c0f5f54fe0c3f6f0ac77cd5f1ac837e1df6609f3a931e9f633a628c86c4d48d73899d939d658f50dbccb8c9e6cacea0ca97195\",\"name\":\"d3-selection\",\"version\":\"3.0.0\"},\"d3-shape-3.2.0.tgz\":{\"integrity\":\"SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"49a2c1bb01a6dcc395891ab600193778ba31c1910ba47eb3865dc56c0a09ed59b58287cac7a125d486f9cf6dcd504845f40b0697bcbe7732dee42c36000ac64c\",\"name\":\"d3-shape\",\"version\":\"3.2.0\"},\"d3-time-3.1.0.tgz\":{\"integrity\":\"VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"56a2a3cc12de8db48c4f82206e65600e3a6462b3565182676c21a8f3be2eecc30a216b082d15fe3a95ff81393c32a8e94f503f73a1d8d9d080efb64dd25910d9\",\"name\":\"d3-time\",\"version\":\"3.1.0\"},\"d3-time-format-4.1.0.tgz\":{\"integrity\":\"dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"749c4f065cc2ecdba00763c32f0a3d43c2624d1dccddee3f5c0364ade29253117cbef5caaa6d587eae10e5d97c6ee765ba745595451a0d4805b7b780f03e8d2e\",\"name\":\"d3-time-format\",\"version\":\"4.1.0\"},\"d3-timer-3.0.1.tgz\":{\"integrity\":\"ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9dd7c9fc9c7131dde7c37d6ec8aa18da76a2bc5fabdbd57e2dcd2cbd9c5ed49bef2119a2f2152caccbdd3b0812d68eae0479a2cfdd60790d3294f3f46a3d5550\",\"name\":\"d3-timer\",\"version\":\"3.0.1\"},\"d3-transition-3.0.1.tgz\":{\"integrity\":\"ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0292af7e3b1247ab60d3ac6b2f8df80b45b274bafb25ec0107757eff7f51307b1a5d3386d339adfce0177a78393392c19b4a239b126ba68990559d5a3ef04be3\",\"name\":\"d3-transition\",\"version\":\"3.0.1\"},\"d3-zoom-3.0.0.tgz\":{\"integrity\":\"b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6fc02657791f41aa9602e69c6cfb8d6cbeaf6a19ce25f94e85ec4bccc30d2e06badbefe7874273bc9d1a3bfe5ae4c560505192ec7bb53fd3f4de8ddf2640c2cb\",\"name\":\"d3-zoom\",\"version\":\"3.0.0\"},\"dagre-0.8.5.tgz\":{\"integrity\":\"/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fda4ea9a746d6bbc7b3020a913193b1d02f63b8a30093da1f0d4ffffd235390f6fb76f4f6b4073480911e65c0551c43be3dd72562ff709753d8d0e68d0c9f64b\",\"name\":\"dagre\",\"version\":\"0.8.5\"},\"data-urls-7.0.0.tgz\":{\"integrity\":\"23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"db75c770217e7281987af8ab65c793543ecd7493aa567fb8f481f2c60b339be2488872e80764e498fb6c6243564f5a6f4521a4737e4be8d1ecd321e43764ae98\",\"name\":\"data-urls\",\"version\":\"7.0.0\"},\"debug-4.4.3.tgz\":{\"integrity\":\"RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8\",\"name\":\"debug\",\"version\":\"4.4.3\"},\"decimal.js-10.6.0.tgz\":{\"integrity\":\"YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6298108884d6dc95c69edcdd526c9447557cd761e7f13d58557842bbec0edcea52e1e53d97861d0f7aa3ca229d57a9af576f736a990c783dfdd145447f696452\",\"name\":\"decimal.js\",\"version\":\"10.6.0\"},\"decimal.js-light-2.5.1.tgz\":{\"integrity\":\"qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a88305a533199a7cbe30c222b4007a0fb8953c4a2b570e984115a4bdaad3913e2d05e48b2e21f37308faab4326612142895a62a8f253244608ae970fcd5108be\",\"name\":\"decimal.js-light\",\"version\":\"2.5.1\"},\"decode-named-character-reference-1.3.0.tgz\":{\"integrity\":\"GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1ada50601dbcdcaacfa7a9d1c39d2add4f7f55f3aeb5939ed74dea94dec13cfe80776ef16273885afe253f3a3c1c200bfa6319a1f27d284cb7d1faba31f68ae9\",\"name\":\"decode-named-character-reference\",\"version\":\"1.3.0\"},\"deep-is-0.1.4.tgz\":{\"integrity\":\"oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d\",\"name\":\"deep-is\",\"version\":\"0.1.4\"},\"define-data-property-1.1.4.tgz\":{\"integrity\":\"rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ac132f23396903cbfa13e489668a3ef87018aac2eb920ecc49f2229cc3c5866928af0ed7f9d39754942cf904faf731a4cccc9f0e720c3765a2775f8d6cbdd3f8\",\"name\":\"define-data-property\",\"version\":\"1.1.4\"},\"dequal-2.0.3.tgz\":{\"integrity\":\"0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d237bea8f28710ca21bdf453084a370ab3c6e9c033018826ccacb1462612483912e9e1897725499bb59a600e4409a003f702c1d93e0411eca603968555c61708\",\"name\":\"dequal\",\"version\":\"2.0.3\"},\"detect-libc-2.1.2.tgz\":{\"integrity\":\"Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"06d8f604e38ef37a375b21f9f5ef0c817b3111055c6ab9143a9118aee6c1d2eaf09cdd74c90dfae2bb22072535d67665a966199b4e62fe87fb8a8e26ce2841b5\",\"name\":\"detect-libc\",\"version\":\"2.1.2\"},\"devlop-1.1.0.tgz\":{\"integrity\":\"RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"456988aa17057f5951601bcd9abeea4cdbb20adffbfe7b368dba69d7e3da96013fac341c053d1f8a848c52927dde2ae55210b986b838718a9ee94fb42265b4ac\",\"name\":\"devlop\",\"version\":\"1.1.0\"},\"dom-accessibility-api-0.5.16.tgz\":{\"integrity\":\"X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5fb049db2125b27389df4a59178b882037c1115805e17101c4bf41c61cba767ae6e61933aa6b161c64e21ea46221336133214bc808969dd2093fb675353b5e0e\",\"name\":\"dom-accessibility-api\",\"version\":\"0.5.16\"},\"dom-accessibility-api-0.6.3.tgz\":{\"integrity\":\"7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ed982881e4e78ee1dba3e72dd741bd15fa749a27f5ee2762d08c9635503fc1cc1c9bb34f383fd610754fde7ee7dcc857ab1a08626f1de8cb99a21616219e13df\",\"name\":\"dom-accessibility-api\",\"version\":\"0.6.3\"},\"dompurify-3.2.7.tgz\":{\"integrity\":\"WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5a12ff62ebdec865c969ead594c6065a1bd0b306bb9b20c6d7b3fb56eeb91160b4e68f2f7de35bbcd7f877f04ebc7f7df995be2e542c73518328c6b5bcd2ba77\",\"name\":\"dompurify\",\"version\":\"3.2.7\"},\"dot-prop-5.3.0.tgz\":{\"integrity\":\"QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"40cf2adf30dee7c86a52a8eb6903a6cd9d4b207f525902539442821f8909da842f2d993b45b417bed0ccd9712addfc2457d082bef1f82c0d0057ea2016c04cd9\",\"name\":\"dot-prop\",\"version\":\"5.3.0\"},\"dunder-proto-1.0.1.tgz\":{\"integrity\":\"KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"28837f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8\",\"name\":\"dunder-proto\",\"version\":\"1.0.1\"},\"electron-to-chromium-1.5.330.tgz\":{\"integrity\":\"jFNydB5kFtYUobh4IkWUnXeyDbjf/r9gcUEXe1xcrcUxIGfTdzPXA+ld6zBRbwvgIGVzDll/LTIiDztEtckSnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8c5372741e6416d614a1b8782245949d77b20db8dffebf607141177b5c5cadc5312067d37733d703e95deb30516f0be02065730e597f2d32220f3b44b5c9129c\",\"name\":\"electron-to-chromium\",\"version\":\"1.5.330\"},\"emoji-picker-react-4.19.1.tgz\":{\"integrity\":\"BmDdqInKFVYJpv7qS9WI6L9656cDAC+FkDvUjJds56nKHbaVTBNeDmLwKBytRnzu37zWHs9Isg7gt5PT43y6xA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0660dda889ca155609a6feea4bd588e8bf7ae7a703002f85903bd48c976ce7a9ca1db6954c135e0e62f0281cad467ceedfbcd61ecf48b20ee0b793d3e37cbac4\",\"name\":\"emoji-picker-react\",\"version\":\"4.19.1\"},\"enhanced-resolve-5.20.1.tgz\":{\"integrity\":\"Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"42885c99eed5d629db01fbe322d830d046b1557e6adab7551191d106b110751653b2c2c31ac2fc2f0af39e5f2843fea4b9324e34b6837068e434fdb8ed712170\",\"name\":\"enhanced-resolve\",\"version\":\"5.20.1\"},\"entities-6.0.1.tgz\":{\"integrity\":\"aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"68df7b357585e805814da85f54e22b07f352864ce2e47ec5f6bd6cf660f77038f82a8e5fdaa86156860c89b5c5ec694bbde6ff0f68a859acbc97123ded57a7de\",\"name\":\"entities\",\"version\":\"6.0.1\"},\"es-define-property-1.0.1.tgz\":{\"integrity\":\"e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7b79d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de\",\"name\":\"es-define-property\",\"version\":\"1.0.1\"},\"es-errors-1.3.0.tgz\":{\"integrity\":\"Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"65fe47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3\",\"name\":\"es-errors\",\"version\":\"1.3.0\"},\"es-module-lexer-2.0.0.tgz\":{\"integrity\":\"5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e4f384714b99c9b1fb21d986b03f3095fd00239e7031e70cf6b5414c8fea100cb67359133a6dc38c5623ac1748d8adc16898c961f605791b4cd2df6cb2746ec7\",\"name\":\"es-module-lexer\",\"version\":\"2.0.0\"},\"es-object-atoms-1.1.1.tgz\":{\"integrity\":\"FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"146807da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c\",\"name\":\"es-object-atoms\",\"version\":\"1.1.1\"},\"es-toolkit-1.45.1.tgz\":{\"integrity\":\"/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fe38683a3fc5c7e03e208c8334ebcedd322d1a694c2a1b57f084801ca13dd1ce1bfe4d6da9aa8467eb94a9fa54f033275b9720349bfad3acd2e798c6bf36b45f\",\"name\":\"es-toolkit\",\"version\":\"1.45.1\"},\"esbuild-0.27.4.tgz\":{\"integrity\":\"Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"46ae2f6c79d890ae5fc2ce4d17b3184d4ebc14f444d5a8d7ee1790ffc4175d6a8d82aa89fc69269b2c48cd49dfd92aff6da91ff25e78ef5e8270c18762132bad\",\"name\":\"esbuild\",\"version\":\"0.27.4\"},\"escalade-3.2.0.tgz\":{\"integrity\":\"WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5948f6aa5c5a42d3b883a3eae5cdbd193716183c9df22b4bf334e58a98040b3dc97ac02288e2a8b5df0953aa2d0773c00a01bac64254c9585ba0c4be6e37bf8c\",\"name\":\"escalade\",\"version\":\"3.2.0\"},\"escape-string-regexp-4.0.0.tgz\":{\"integrity\":\"TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80\",\"name\":\"escape-string-regexp\",\"version\":\"4.0.0\"},\"eslint-9.39.4.tgz\":{\"integrity\":\"XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e83237413b07bf7ac56012f2e636c0f72111e49bb7db288506beb95e9682575198031e283620f58d9e2bfe1b08f2257cee36a56396be7ee32554663c9c2707d\",\"name\":\"eslint\",\"version\":\"9.39.4\"},\"eslint-plugin-react-hooks-7.0.1.tgz\":{\"integrity\":\"O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3b47749b4e1ebda37310fa125bee7d31ecdff10b742277e01880499e90b4877347fd68d4011ec120a51fcac0bab68766b6267f034a14552f0671ed16841ac7b0\",\"name\":\"eslint-plugin-react-hooks\",\"version\":\"7.0.1\"},\"eslint-plugin-react-refresh-0.4.26.tgz\":{\"integrity\":\"1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d51113132961b763ba14cfccbe09f2bd3fbc2b6d702ea0cd838a83e75663de0ba18ede37dd76e79e456db47332695c80143d374125782cf4b9884dd54263bb5d\",\"name\":\"eslint-plugin-react-refresh\",\"version\":\"0.4.26\"},\"eslint-scope-8.4.0.tgz\":{\"integrity\":\"sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b0d5ce7ca0a7ef8aedf1120228cbc94bb5ca57f5e4f6403b0f226bf262629374bb0b0832dea964926c92dae401de388983a54d75977fa43049bb49ef1b63654e\",\"name\":\"eslint-scope\",\"version\":\"8.4.0\"},\"eslint-visitor-keys-3.4.3.tgz\":{\"integrity\":\"wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c2973e2d77a2ca28acc4f944914cd4eacbf24b57eb20edcc8318f57ddcbb3e6f1883382e6b1d8ddc56bf0ff6a0d56a9b3a9add23eb98eb031497cfdad86fa26a\",\"name\":\"eslint-visitor-keys\",\"version\":\"3.4.3\"},\"eslint-visitor-keys-4.2.1.tgz\":{\"integrity\":\"Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"521764e6c7ea71e7bff47feb08e262918cfaee8d1ad93c3684644f386d98d51d9d83b6eb45ed6e1b4c9a3500c7bbe4cefee40f17fe5e09aa6f612987523b7b25\",\"name\":\"eslint-visitor-keys\",\"version\":\"4.2.1\"},\"eslint-visitor-keys-5.0.1.tgz\":{\"integrity\":\"tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b43e34787c40df98743c421935e223907a034786238c9a77e1b88cd260efa6505efff981f881c2a870c657ba7117eecc9254ef8a085c08f3d90bbca75b28dd4c\",\"name\":\"eslint-visitor-keys\",\"version\":\"5.0.1\"},\"espree-10.4.0.tgz\":{\"integrity\":\"j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8fa3c0436b94afbf4f6610633f90b97e197c7b7f459919ce8ec0f99469d6ac553c8b61bbefab412bbfa73fc2ae4144d3c80654c1f42a5c082b547e4c6c7f4261\",\"name\":\"espree\",\"version\":\"10.4.0\"},\"esquery-1.7.0.tgz\":{\"integrity\":\"Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"029e86d16430714fcb1ecbcbc0e3757c0417f59a7403663a63f709065f6bfc96d6f74672838ff36c6eb3cca6b639300b10b6ab60798abb41a1a4ce443beed3d2\",\"name\":\"esquery\",\"version\":\"1.7.0\"},\"esrecurse-4.3.0.tgz\":{\"integrity\":\"KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a\",\"name\":\"esrecurse\",\"version\":\"4.3.0\"},\"estraverse-5.3.0.tgz\":{\"integrity\":\"MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004\",\"name\":\"estraverse\",\"version\":\"5.3.0\"},\"estree-util-is-identifier-name-3.0.0.tgz\":{\"integrity\":\"hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"845b6a20365321467d0572dbf32e29606ca4ebec1e9088af3554dc9af93c3683a1f957919f9cba7041f36d446b59b7e9d5f22a7558a98a5ce3fa57da69d3599a\",\"name\":\"estree-util-is-identifier-name\",\"version\":\"3.0.0\"},\"estree-walker-3.0.3.tgz\":{\"integrity\":\"7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ed150a7d781230c933b7a66e5e6a9aa4ebab2c63cf7e08fa97db9167b9511a896f934cb6ca871cdf92dd731282e4f419767d8332a8a8010d8da1672b4ca9a6ea\",\"name\":\"estree-walker\",\"version\":\"3.0.3\"},\"esutils-2.0.3.tgz\":{\"integrity\":\"kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea\",\"name\":\"esutils\",\"version\":\"2.0.3\"},\"eventemitter3-5.0.4.tgz\":{\"integrity\":\"mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9a5b1347219a3c18cf79d93a06fc3e6aa6ec5c3b680320339b930eec9814fb2551c8c4393bc6c3e0a71c8bb052f397fddef79e81e08f90bf11e062c29678cb17\",\"name\":\"eventemitter3\",\"version\":\"5.0.4\"},\"expect-type-1.3.0.tgz\":{\"integrity\":\"knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"927bf279ab9886a8ce62f43ae8cce748cb3cdf0987ac2c9c34437a028fb601e6047f150892e895c5d11ad6a94610f2be59ede7d131e20dc8984ac09c816fc3a0\",\"name\":\"expect-type\",\"version\":\"1.3.0\"},\"extend-3.0.2.tgz\":{\"integrity\":\"fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe\",\"name\":\"extend\",\"version\":\"3.0.2\"},\"fast-deep-equal-3.1.3.tgz\":{\"integrity\":\"f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1\",\"name\":\"fast-deep-equal\",\"version\":\"3.1.3\"},\"fast-json-stable-stringify-2.1.0.tgz\":{\"integrity\":\"lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f\",\"name\":\"fast-json-stable-stringify\",\"version\":\"2.1.0\"},\"fast-levenshtein-2.0.6.tgz\":{\"integrity\":\"DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77\",\"name\":\"fast-levenshtein\",\"version\":\"2.0.6\"},\"fd-package-json-2.0.0.tgz\":{\"integrity\":\"jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8ca9a6f58b6c35737bf3d452ff4992cce0b5354abd9a455deb9bdb49256c29d8c6bd85c1b84e2859ed90384a0579198983e94fb99c699ab7c5725361a1132779\",\"name\":\"fd-package-json\",\"version\":\"2.0.0\"},\"fdir-6.5.0.tgz\":{\"integrity\":\"tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b486d8b596ee70eb340511aa3c992c84951874bf920c7edd54cf208f2f84469dd60148cb105244fb4da46a7c87b708d63a7c2b298062c0098cd29e242c90275e\",\"name\":\"fdir\",\"version\":\"6.5.0\"},\"file-entry-cache-8.0.0.tgz\":{\"integrity\":\"XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5d74d4c02be2b1ae6869c34644ff527cdb5804d00c8be44fc011666e564417b37bb301d8412ebf65f93b491c31e03e63dc21f6d7560d45ca350c430d55f6429d\",\"name\":\"file-entry-cache\",\"version\":\"8.0.0\"},\"find-up-5.0.0.tgz\":{\"integrity\":\"78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e\",\"name\":\"find-up\",\"version\":\"5.0.0\"},\"fix-dts-default-cjs-exports-1.0.1.tgz\":{\"integrity\":\"pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a5520409a9d6142eb51f3976fa8382b68277175ee4825642ffa37de1e456c9c160047df9847c742e2eb4e1923386c7a1f7b99fda9d1cbfbbd5ace646a2a86512\",\"name\":\"fix-dts-default-cjs-exports\",\"version\":\"1.0.1\"},\"flairup-1.0.0.tgz\":{\"integrity\":\"IKlE+pNvL2R+kVL1kEhUYqRxVqeFnjiIvHWDMLFXNaqyUdFXQM2wte44EfMYJNHkW16X991t2Zg8apKkhv7OBA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"20a944fa936f2f647e9152f590485462a47156a7859e3888bc758330b15735aab251d15740cdb0b5ee3811f31824d1e45b5e97f7dd6dd9983c6a92a486fece04\",\"name\":\"flairup\",\"version\":\"1.0.0\"},\"flat-cache-4.0.1.tgz\":{\"integrity\":\"f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7fb71c14f2b7497147a71d795081b2449fc525072db8a674cd5b8dddfac1a381e72b771acbd5445b447ac8f6051c2d0082a86e90fcca8eadb6b790e6032a86cb\",\"name\":\"flat-cache\",\"version\":\"4.0.1\"},\"flatted-3.4.2.tgz\":{\"integrity\":\"PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3e30ec7bb47385c3e4209c32e6deca3d641267d7006f341771a7ec7ad4280fbb0e2514251a290d6f1ef2669d8ea2d0e7272ac371bc91ab74ed6f5f2260eaa4c4\",\"name\":\"flatted\",\"version\":\"3.4.2\"},\"for-each-0.3.5.tgz\":{\"integrity\":\"dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"74ac75d9e442548cea0b1146a65c8528930fbcb11682636d52ba53889211e6ef7bcc48511bcc92aed6e83c7657c7b75a2f1415ae5eb8ddc4f36da6f6b64423c6\",\"name\":\"for-each\",\"version\":\"0.3.5\"},\"fraction.js-5.3.4.tgz\":{\"integrity\":\"1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d57d4d4ed889a61af29ffb8b433df086d63a8caddf4eaa04de884ab34b53f948ebd56e7da28a719a8121ecbbb9a7abc168f6e0a0cd1bcef7805b8422e51c960d\",\"name\":\"fraction.js\",\"version\":\"5.3.4\"},\"fsevents-2.3.3.tgz\":{\"integrity\":\"5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e71a037d7f9f2fb7da0139da82658fa5b16dc21fd1efb5a630caaa1c64bae42defbc1d181eb805f81d58999df8e35b4c8f99fade4d36d765cda09c339617df43\",\"name\":\"fsevents\",\"version\":\"2.3.3\"},\"function-bind-1.1.2.tgz\":{\"integrity\":\"7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ed71cdc47eea5fdc46e66230c6486e993a31fcc21135c3a00ebc56b0cb76a40af6dd61e9e8cad194dec50521690a9afea153b417be38894811f369c931f1b648\",\"name\":\"function-bind\",\"version\":\"1.1.2\"},\"generator-function-2.0.1.tgz\":{\"integrity\":\"SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"485745988262fb26c2d2f8e51cdd191951877379601340f13c04f47638d583e9233a74aa725aa68f4290ef291338b3fa631a2a3afb8038319d707267fb8deade\",\"name\":\"generator-function\",\"version\":\"2.0.1\"},\"gensync-1.0.0-beta.2.tgz\":{\"integrity\":\"3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce\",\"name\":\"gensync\",\"version\":\"1.0.0-beta.2\"},\"get-intrinsic-1.3.0.tgz\":{\"integrity\":\"9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f5f4a349aa2cfdf448548a7ec5226513a95fc21112ecb36d29a08121a987b23af69dad418800493e8d263a38f3f062435116ab9823c6a9a89583999f8dbf7c09\",\"name\":\"get-intrinsic\",\"version\":\"1.3.0\"},\"get-proto-1.0.1.tgz\":{\"integrity\":\"sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b1349f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2\",\"name\":\"get-proto\",\"version\":\"1.0.1\"},\"get-tsconfig-4.14.0.tgz\":{\"integrity\":\"yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c936fef035f30d113382f62687ab3dbc7b125421de0b41b73c8e5b1173411ed9ac84f9cef92e4eeea80b10e9f423942f332ea4a5937c2b534a1b28a52dbf77c0\",\"name\":\"get-tsconfig\",\"version\":\"4.14.0\"},\"glob-parent-6.0.2.tgz\":{\"integrity\":\"XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0\",\"name\":\"glob-parent\",\"version\":\"6.0.2\"},\"globals-14.0.0.tgz\":{\"integrity\":\"oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a1a846bee3064253f0fe2bc86018d54ab5807d62c17a4bb9b693c4d9f38f2e2f961df7c859bba1dad0a38724214c13cc7f913d8c3107e053a64d8818c1b2b0b5\",\"name\":\"globals\",\"version\":\"14.0.0\"},\"globals-16.5.0.tgz\":{\"integrity\":\"c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"73f735e62dba56b278211b7967cf439c8cc21839fd11c79b89b8403a3c3989ba841ec135c0b52090f9fd44398d7142b253cec679a2fadf79f227ea6994547665\",\"name\":\"globals\",\"version\":\"16.5.0\"},\"gopd-1.2.0.tgz\":{\"integrity\":\"ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"65429187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46\",\"name\":\"gopd\",\"version\":\"1.2.0\"},\"graceful-fs-4.2.11.tgz\":{\"integrity\":\"RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"45b279fe398570d342703579a3d7939c12c9fc7b33595d0fef76dcf857f89d2feb263f98692e881b288e2f45680585fe9755ab97793ade1fcaac7fa7849d17bd\",\"name\":\"graceful-fs\",\"version\":\"4.2.11\"},\"graphlib-2.1.8.tgz\":{\"integrity\":\"jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8dc2cb7e4a68546987eff227302ff5848bce3d2521dfca09b4686face146ce2a04d4367ed185b5e918263898478ae593bc688943d675224e3726f9113d1bc4f8\",\"name\":\"graphlib\",\"version\":\"2.1.8\"},\"handlebars-4.7.9.tgz\":{\"integrity\":\"4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e04ef5134ae939a42e251d80df10d9f863351f2598bf5725479f2d0bc7a640d7907b7447ecc03349b6adf95d301bbf0b401a3a9ba6f3486fcbe2906e0ac82751\",\"name\":\"handlebars\",\"version\":\"4.7.9\"},\"has-flag-4.0.0.tgz\":{\"integrity\":\"EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d\",\"name\":\"has-flag\",\"version\":\"4.0.0\"},\"has-property-descriptors-1.0.2.tgz\":{\"integrity\":\"55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e7924d2ae216fafab829ed418ce4e333661cb5022f093ec61731f099f64f1a8e709eb82489dd1842d9c095e152aae9999b86b3de7d814be7ab6f2e62a49760ae\",\"name\":\"has-property-descriptors\",\"version\":\"1.0.2\"},\"has-symbols-1.1.0.tgz\":{\"integrity\":\"1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d5c0cd77027625aa2199bdec8383a629a301c2e0b8f2c6278b91d4c360efb02f0b8c64cb2bd87e79bd57e91cae3877b8853d142c25baf22a26863528294aa53d\",\"name\":\"has-symbols\",\"version\":\"1.1.0\"},\"has-tostringtag-1.0.2.tgz\":{\"integrity\":\"NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"36a00307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397\",\"name\":\"has-tostringtag\",\"version\":\"1.0.2\"},\"hasown-2.0.2.tgz\":{\"integrity\":\"0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d21254f5208fbe633320175916a34f5d66ba76a87b59d1f470823dcbe0b24bcac6de72f8f01725adaf4798a8555541f23d6347e58ef10f0001edb7e04a391431\",\"name\":\"hasown\",\"version\":\"2.0.2\"},\"hast-util-to-jsx-runtime-2.3.6.tgz\":{\"integrity\":\"zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ce5eacf0bc0dca8d4ff6ec3e5c91af66d74517519d0243a0f2e8cec3ee0fc9befaf3be1f2e9b38b9e1d70e15d6764e981d0e8e814b629e5886ed1b18bc26db06\",\"name\":\"hast-util-to-jsx-runtime\",\"version\":\"2.3.6\"},\"hast-util-whitespace-3.0.0.tgz\":{\"integrity\":\"88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f3c254374ea2a4bc2c9eff9d567f8e2183af02ebc1332fd0a22e8eee6407c5d3d7a63cbe09deb14645b0bb1ec328efb8b1820bb4b05120a82c7694b681073bab\",\"name\":\"hast-util-whitespace\",\"version\":\"3.0.0\"},\"hermes-estree-0.25.1.tgz\":{\"integrity\":\"0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d3052809c2e9fb912fe690d6d8eae21c2d8c2426f02f0b91c7e800a8c4ce9062892620422e3b6bbf2e0f5941a7e8c21579f79c469ce8399fd457a88674eafe0b\",\"name\":\"hermes-estree\",\"version\":\"0.25.1\"},\"hermes-parser-0.25.1.tgz\":{\"integrity\":\"6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ea9123aae1f7aea688e9c6005d83dccfd312e2b63a4789e0460ae07c3b21469b54648737970d0c0882481838fdfbe99fc923ae3d31c1e27ad25bdf410af38f20\",\"name\":\"hermes-parser\",\"version\":\"0.25.1\"},\"hosted-git-info-8.1.0.tgz\":{\"integrity\":\"Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"470fc1d8335068f04808d5c49bc6da945cfd6ba5a966b9021a9716169cbb9c28fe37285276a5e2a667efb665adf7119fa74c199c1c41fa25692e640c62de3b4f\",\"name\":\"hosted-git-info\",\"version\":\"8.1.0\"},\"html-encoding-sniffer-6.0.0.tgz\":{\"integrity\":\"CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"095f535b76377fcff04f405115cd7f280550dd350789799a01be955bdbed88c15fed22e831dd4f7407385b728538511304951bf7429ab47aa5b1931657e47d1a\",\"name\":\"html-encoding-sniffer\",\"version\":\"6.0.0\"},\"html-escaper-2.0.2.tgz\":{\"integrity\":\"H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1f688cb5dd08e0cb7979889aa517480e3a7e5f37a55d0d2d144e094bb605c057af5d73263a9f66c8dad4bc28340fac2cf22aa444f05f28781bc228354a694b7e\",\"name\":\"html-escaper\",\"version\":\"2.0.2\"},\"html-parse-stringify-3.0.1.tgz\":{\"integrity\":\"KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2a49c9e7491322727ba8849c1778de68546932913cfe57e24ddcdffedc17c8f04b006acb4539a4cf701d4e729e878d17f24f4bd9f758c04a7fe365865c844672\",\"name\":\"html-parse-stringify\",\"version\":\"3.0.1\"},\"html-url-attributes-3.0.1.tgz\":{\"integrity\":\"ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a25e943f2056aacacee8427248fcf63bb652afce7a583ac4ccce7332aa7e14924b18c5b7e5c2d89a6667974bf3b40671454a0d6491530a885f8ee209f08e1005\",\"name\":\"html-url-attributes\",\"version\":\"3.0.1\"},\"http-proxy-agent-7.0.2.tgz\":{\"integrity\":\"T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4f58240226180d6631dd5e419b2bbb1dc7dcbcbee652b4d688ceb239f6b73c8a6156227f8053dbbe2750faf7aa48e1dc8bf3f105c0da6de50d0b3a4e3832598a\",\"name\":\"http-proxy-agent\",\"version\":\"7.0.2\"},\"https-proxy-agent-7.0.6.tgz\":{\"integrity\":\"vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bcaf4fe7f8947dd97de4023e255c94b88715b5de287efb6b3abdc736d336cb10bd6e731b11da77c74d4e8503678dbf082588b7f159531379815f071fbf2c2e4b\",\"name\":\"https-proxy-agent\",\"version\":\"7.0.6\"},\"i18next-25.10.10.tgz\":{\"integrity\":\"cqUW2Z3EkRx7NqSyywjkgCLK7KLCL6IFVFcONG7nVYIJ3ekZ1/N5jUsihHV6Bq37NfhgtczxJcxduELtjTwkuQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"72a516d99dc4911c7b36a4b2cb08e48022caeca2c22fa20554570e346ee7558209dde919d7f3798d4b2284757a06adfb35f860b5ccf125cc5db842ed8d3c24b9\",\"name\":\"i18next\",\"version\":\"25.10.10\"},\"i18next-browser-languagedetector-8.2.1.tgz\":{\"integrity\":\"bZg8+4bdmaOiApD7N7BPT9W8MLZG+nPTOFlLiJiT8uzKXFjhxw4v2ierCXOwB5sFDMtuA5G4kgYZ0AznZxQ/cw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6d983cfb86dd99a3a20290fb37b04f4fd5bc30b646fa73d338594b889893f2ecca5c58e1c70e2fda27ab0973b0079b050ccb6e0391b8920619d00ce767143f73\",\"name\":\"i18next-browser-languagedetector\",\"version\":\"8.2.1\"},\"ieee754-1.2.1.tgz\":{\"integrity\":\"dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68\",\"name\":\"ieee754\",\"version\":\"1.2.1\"},\"ignore-5.3.2.tgz\":{\"integrity\":\"hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"86c053354a904c3c245ad71d608da2d3a63f9d4044b0d10324a8d676280bbde832f240ee2404bcb91969924710a721172f467fa630f2e4706632344227682afa\",\"name\":\"ignore\",\"version\":\"5.3.2\"},\"ignore-7.0.5.tgz\":{\"integrity\":\"Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1ece7dc4135f508ba730581601b197e5cabaf3ddc86d68382a7ae36d8c17dedc74ceda2b5604c303a076b317fc7a31c9e30cfc06a194318967ccd05eaf936f1a\",\"name\":\"ignore\",\"version\":\"7.0.5\"},\"immer-10.2.0.tgz\":{\"integrity\":\"d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"77ff974cddf37ce0f28ebf3d80cde63ead56357d81f2962cbbb78e462b5dc32036b01b9b9d397795a625064e2c5d8e4551ae6a4d91810cf2480956efab38e56f\",\"name\":\"immer\",\"version\":\"10.2.0\"},\"immer-11.1.4.tgz\":{\"integrity\":\"XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5d110508fa3a92cc55ccfe04d1e903e5a31d7fc58cc2674d6b3eafbafc60238d146848aeeaade9f17e76694e86772bcb6375d75fff11ec93935d2b73fe705b47\",\"name\":\"immer\",\"version\":\"11.1.4\"},\"import-fresh-3.3.1.tgz\":{\"integrity\":\"TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4d1dca7eb4d94d82cf07a8d48dfc7a305f56716ac72fdb2ee5339b2b866462005d58a3ce1684a8408744b93b91f36a66b711f6b29586f61e9eb707ebd692c1a9\",\"name\":\"import-fresh\",\"version\":\"3.3.1\"},\"imurmurhash-0.1.4.tgz\":{\"integrity\":\"JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2665cc67ac2ebc398b88712697dca4cea3ba97015ba1fd061b822470668435d0910c398c5679f2eece47b0880709b6aad30d8cc8f843aa48535204b62d4d8f1c\",\"name\":\"imurmurhash\",\"version\":\"0.1.4\"},\"indent-string-4.0.0.tgz\":{\"integrity\":\"EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2\",\"name\":\"indent-string\",\"version\":\"4.0.0\"},\"inherits-2.0.4.tgz\":{\"integrity\":\"k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1\",\"name\":\"inherits\",\"version\":\"2.0.4\"},\"inline-style-parser-0.2.7.tgz\":{\"integrity\":\"Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"35bd9cb4ec8d47c0ea4284743b0446f79b8d5880b40b594281fe4d6b3e47e898bbd8a67c39c1592f3d8fe6c360c25ca827c6227f5d6832e62ce690506bce9cb0\",\"name\":\"inline-style-parser\",\"version\":\"0.2.7\"},\"internmap-2.0.3.tgz\":{\"integrity\":\"5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e4787b635c106ef639a281a03db0da2f98982c03f331352b8ccba5b241cb1fac27bff03ed6ae6b8046a2baa12307ea3119721566cd4517e47f28f37765241862\",\"name\":\"internmap\",\"version\":\"2.0.3\"},\"is-alphabetical-2.0.1.tgz\":{\"integrity\":\"FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"156cb263ad0c79337279246990cd88af2d06f61a6befff640f8d260ff706404ba295c6584b8a24cfc48dd90eab2c227c81b0ade9f37eac2fbab4c192f7d2dac5\",\"name\":\"is-alphabetical\",\"version\":\"2.0.1\"},\"is-alphanumerical-2.0.1.tgz\":{\"integrity\":\"hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8666d8857ffd314305e6e87bb4e5f22bf9f466f5a969de5c681035ec6b02eafcae0aa696962446e4ad6a4bd8a799484431a381216effc210274b0bde5bf2ed67\",\"name\":\"is-alphanumerical\",\"version\":\"2.0.1\"},\"is-arguments-1.2.0.tgz\":{\"integrity\":\"7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"edb55b8b486e8ffc2b2003b36fc5356acce0f64762dca37f0b2535f424c8eed028658119a0bf720835e96d737eb8fb2e5a73f4d9ccae8358257aaabe4d4f9808\",\"name\":\"is-arguments\",\"version\":\"1.2.0\"},\"is-callable-1.2.7.tgz\":{\"integrity\":\"1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c\",\"name\":\"is-callable\",\"version\":\"1.2.7\"},\"is-decimal-2.0.1.tgz\":{\"integrity\":\"AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"00007d862a2642ce435d6711075aeab31194b2d6d1ae814e3cf540a26364ff75c74792721190a13b24d67b6a1ac8a9ec4acaff91c1aa17ecfacae1fa1c7a4dd0\",\"name\":\"is-decimal\",\"version\":\"2.0.1\"},\"is-extglob-2.1.1.tgz\":{\"integrity\":\"SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1\",\"name\":\"is-extglob\",\"version\":\"2.1.1\"},\"is-generator-function-1.1.2.tgz\":{\"integrity\":\"upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ba9aadd5290690e0d6f6db06346e66b574d7b440a2cf0b52da4035eb533e8093dcd7175bfc0c7adbd69fe98ad3c1c39e4076dec2b3cd944e43c7b933bd74e2cc\",\"name\":\"is-generator-function\",\"version\":\"1.1.2\"},\"is-glob-4.0.3.tgz\":{\"integrity\":\"xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a\",\"name\":\"is-glob\",\"version\":\"4.0.3\"},\"is-hexadecimal-2.0.1.tgz\":{\"integrity\":\"DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0e0650a76e3573ca0ee9c03549b4c45a25dea31578daf95c271807f81de18b5022aaa2abb9947764617c227ddf8f8fbfcbfeeb1ef94e64b66d809ff8b6d60666\",\"name\":\"is-hexadecimal\",\"version\":\"2.0.1\"},\"is-obj-2.0.0.tgz\":{\"integrity\":\"drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"76ba831b771b733c7110946839770e8ed769d49fe5ca9d66367d316b39d1b3cfa6b8186041cae76eca68c795f97cec341e73276df0f3be710c12da83109128f3\",\"name\":\"is-obj\",\"version\":\"2.0.0\"},\"is-plain-obj-4.1.0.tgz\":{\"integrity\":\"+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f8f822faf32e50d909c84c62301b792251683322a7af9ce127852ca73e7c58e841179428219905c8d1c86c102d1f0cd502093946d9dd54db0344deb5fe6983aa\",\"name\":\"is-plain-obj\",\"version\":\"4.1.0\"},\"is-potential-custom-element-name-1.0.1.tgz\":{\"integrity\":\"bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6c261e440dab5626ca65dfacdbadb98069c617fb7b0d2a83b3874fec2acb0359bb8ca5b3ea9a6cd0ba582c937c43ae07b663ca27586b3779f33cd28510a39489\",\"name\":\"is-potential-custom-element-name\",\"version\":\"1.0.1\"},\"is-regex-1.2.1.tgz\":{\"integrity\":\"MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"32362c2873b93bb982b26446c5670b5a1785a8df4327fd939a782f8ca5e285ee9e7d588fa9cdbbe3e171ff87d88ffaf4dfe112bc17535cad15ead037ae07b3d6\",\"name\":\"is-regex\",\"version\":\"1.2.1\"},\"is-typed-array-1.1.15.tgz\":{\"integrity\":\"p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a7711cb227178e2b7b49ab245c7b35840f75431813c38e85bfa10528a192e434452c3f322a7a218c5de1c688eef786ff39c319a10ba4ce93e9044f6e2d52b381\",\"name\":\"is-typed-array\",\"version\":\"1.1.15\"},\"isexe-2.0.0.tgz\":{\"integrity\":\"RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"447c4c2e9f659ca1c61d19e0f5016144231b600715a67ebdb2648672addfdfac638155564e18f8aaa2db4cb96aed2b23f01f9f210d44b8210623694ab3241e23\",\"name\":\"isexe\",\"version\":\"2.0.0\"},\"istanbul-lib-coverage-3.2.2.tgz\":{\"integrity\":\"O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3bc769b05fabd1657ff0c35129f9e6aed09686e2a3c6bab6c3e8e9cc12f95192938b62de5569d63a6591c4595eb0938d99cfb02c01af29064439a9e4a342c54e\",\"name\":\"istanbul-lib-coverage\",\"version\":\"3.2.2\"},\"istanbul-lib-report-3.0.1.tgz\":{\"integrity\":\"GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1827c4d66b6c1c63842c253c7bf67b616ce99b26ebc7ff9d4937cbaef63ca9199a63acd74ca5a7e964088da005c34ebd89c9ba19530d920bb437323888f65437\",\"name\":\"istanbul-lib-report\",\"version\":\"3.0.1\"},\"istanbul-reports-3.2.0.tgz\":{\"integrity\":\"HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1c6616592fde86a4d5df1375d22db7b643e4a47e3a30b08830534269a28d6af0174c5d5192ac5ac043ed9e39c667a5ca4889c12a488e03904a4be699898dc0bc\",\"name\":\"istanbul-reports\",\"version\":\"3.2.0\"},\"jiti-2.6.1.tgz\":{\"integrity\":\"ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7a48a50923758f046f21b81e83fe7b60587ca900cd6f00dbf714ffaaed830076c5159522708978ca055a02fcef78c84c56bdcb9e948a4cd9f0b7c3e839f98a85\",\"name\":\"jiti\",\"version\":\"2.6.1\"},\"joycon-3.1.1.tgz\":{\"integrity\":\"34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"df8c01fd8ecc5bb6f38ca46350a4dae3a23667b795eb646486f6be2a4a295bb42fbff392581aaf91263bbeeb0e3eb36e65c506ded029bdd560341f0f3a3dd23f\",\"name\":\"joycon\",\"version\":\"3.1.1\"},\"js-tokens-10.0.0.tgz\":{\"integrity\":\"lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"94cfd40734267c9468f400576cf59e9a2bdd096f15d86f051da1ddca941a232e76dec9d48e88345bbd5ac965d38e247e8b178cc951cdd977299d377f9623e0fd\",\"name\":\"js-tokens\",\"version\":\"10.0.0\"},\"js-tokens-4.0.0.tgz\":{\"integrity\":\"RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29\",\"name\":\"js-tokens\",\"version\":\"4.0.0\"},\"js-yaml-4.1.1.tgz\":{\"integrity\":\"qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a90293e334315e5f252f006d1cc5b06937067c5399be23897addcecbfc661a4da0647ebbec224cf44bed7dd4a48167004d9863ff9e49674ae6cb79b2093e65b0\",\"name\":\"js-yaml\",\"version\":\"4.1.1\"},\"jsdom-28.1.0.tgz\":{\"integrity\":\"0+MoQNYyr2rBHqO1xilltfDjV9G7ymYGlAUazgcDLQaUf8JDHbuGwsxN6U9qWaElZ4w1B2r7yEGIL3GdeW3Rug==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d3e32840d632af6ac11ea3b5c62965b5f0e357d1bbca660694051ace07032d06947fc2431dbb86c2cc4de94f6a59a125678c35076afbc841882f719d796dd1ba\",\"name\":\"jsdom\",\"version\":\"28.1.0\"},\"jsesc-3.1.0.tgz\":{\"integrity\":\"/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fec33774ed853b35e3290849ba8d10d7bdf07f628ea3cb7823cbc7cba945f69a14a7b6ca4f4fcd1c4f1f3d7db73f07e19f291faa70b6c51c4e9d5c395ee18868\",\"name\":\"jsesc\",\"version\":\"3.1.0\"},\"json-buffer-3.0.1.tgz\":{\"integrity\":\"4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e1b57905f4769aa7d04c99be579b4f3dd7fe669ba1888bd3b8007983c91cad7399a534ff430c15456072c17d68cebea512e3dd6c7c70689966f46ea6236b1f49\",\"name\":\"json-buffer\",\"version\":\"3.0.1\"},\"json-edit-react-1.29.1.tgz\":{\"integrity\":\"/Q3Zrljf5YUZvQnm+2ExXJPjEitONRONmiLXPLvvmhtJ7OFd0bB4C3HBkU6ijBR9TChWDxw6ciJfs6d6UtxZdg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fd0dd9ae58dfe58519bd09e6fb61315c93e3122b4e35138d9a22d73cbbef9a1b49ece15dd1b0780b71c1914ea28c147d4c28560f1c3a72225fb3a77a52dc5976\",\"name\":\"json-edit-react\",\"version\":\"1.29.1\"},\"json-schema-traverse-0.4.1.tgz\":{\"integrity\":\"xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756\",\"name\":\"json-schema-traverse\",\"version\":\"0.4.1\"},\"json-stable-stringify-without-jsonify-1.0.1.tgz\":{\"integrity\":\"Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f\",\"name\":\"json-stable-stringify-without-jsonify\",\"version\":\"1.0.1\"},\"json5-2.2.3.tgz\":{\"integrity\":\"XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e63967bb7b21d81f5e1c2dd54fa3283e18e1f7ad85fef8aa73af2949c125bdf2ddcd93e53c5ce97c15628e830b7375bf255c67facd8c035337873167f16acca\",\"name\":\"json5\",\"version\":\"2.2.3\"},\"keyv-4.5.4.tgz\":{\"integrity\":\"oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a3154790747f1097f608d5e75b144b5ba9a0ec9c82094706d03b441a62f672d528d4f3538a7d4f52297eafffb8af93295600bf7e7d648ecc7b9a34ae8caa88a7\",\"name\":\"keyv\",\"version\":\"4.5.4\"},\"kleur-4.1.5.tgz\":{\"integrity\":\"o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a3e34efbc5ab462404138ffb9f044984dd475a9566266e75d690475313cbb69d015084b3941a653916129937250a726f42adad2aefec825df156991ced95ae41\",\"name\":\"kleur\",\"version\":\"4.1.5\"},\"levn-0.4.1.tgz\":{\"integrity\":\"+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029\",\"name\":\"levn\",\"version\":\"0.4.1\"},\"lightningcss-1.32.0.tgz\":{\"integrity\":\"NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"357601ce29cdadb95fada3c6cab6cfa03d7d0b587d95f23fd66ce0598bd75137b8d781b3fd7d450f65c165264ceeb453acc03c24bdceb4068689fac82a1439c9\",\"name\":\"lightningcss\",\"version\":\"1.32.0\"},\"lightningcss-android-arm64-1.32.0.tgz\":{\"integrity\":\"YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"60aeff0a54ede2400ad2fa3ac375fe3e79b40f671fdaf3c76e139776836d8b519ad1a9753f84c1661c23013be33702c40429cabe325cda34201d71f4344c2502\",\"name\":\"lightningcss-android-arm64\",\"version\":\"1.32.0\"},\"lightningcss-darwin-arm64-1.32.0.tgz\":{\"integrity\":\"RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"473786f49bb96da83606fd7f97095526f044deae93b57b247592cb0b27e0e69b7e1cbcfd06a94808eecb64ced51cd4d39ffe4f4611c50528e4e65738726b1c3d\",\"name\":\"lightningcss-darwin-arm64\",\"version\":\"1.32.0\"},\"lightningcss-darwin-x64-1.32.0.tgz\":{\"integrity\":\"U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"53e42c069da6fecdb0aa95184ffeb09e56a07596ed65d9dd4a6badfcd26a94270c2d35a9e66b82ac80fe2b9509ea3a83d8116c85e8c26179e23c36cd87bdd5f3\",\"name\":\"lightningcss-darwin-x64\",\"version\":\"1.32.0\"},\"lightningcss-freebsd-x64-1.32.0.tgz\":{\"integrity\":\"JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2424e281e74492c664ded1d34ed86731d55f19feb5164cbc262d84e188d44c4417d78c62cbf953cd79eed6fc2265eddb61ed2af92a6c487fc24de0d72ba5878a\",\"name\":\"lightningcss-freebsd-x64\",\"version\":\"1.32.0\"},\"lightningcss-linux-arm-gnueabihf-1.32.0.tgz\":{\"integrity\":\"x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c7aae79e945ad862f4cd03a4b7aaedb376033f376e2e95afc0017a10c8571556570f8b4fac190416acc6a30cc2b085ac3e3a922beb723443835015de7951d293\",\"name\":\"lightningcss-linux-arm-gnueabihf\",\"version\":\"1.32.0\"},\"lightningcss-linux-arm64-gnu-1.32.0.tgz\":{\"integrity\":\"0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d279ccca8c8e2d12577db30e8a569245c2c7dc9c39cfd1c33467d3fe0c023e06838e7c748bcc3bbc1cc52c54757fa08c2ca17c8156de6e69143777dafe4409a5\",\"name\":\"lightningcss-linux-arm64-gnu\",\"version\":\"1.32.0\"},\"lightningcss-linux-arm64-musl-1.32.0.tgz\":{\"integrity\":\"UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"529424a1e9ebe14244ce054862923cd250c5bd198f560ea8a9ba0d1dfa07e024087cd03e1cead9ecca3b2993f4d9d0ba2e38213d025e06cbd7849a1dff09c806\",\"name\":\"lightningcss-linux-arm64-musl\",\"version\":\"1.32.0\"},\"lightningcss-linux-x64-gnu-1.32.0.tgz\":{\"integrity\":\"V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"57b42be7622166674a3d5afe56dc3ca3e58bb1025809377c96821fa4368c45619465f04e60425ec89224a862033193f03f1db8a5431fc12c7123ca61aff31b38\",\"name\":\"lightningcss-linux-x64-gnu\",\"version\":\"1.32.0\"},\"lightningcss-linux-x64-musl-1.32.0.tgz\":{\"integrity\":\"bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6d870ba7e55bd1ac2c89783ff34b8245ecc2607360d7f9779add20cc79d657d5cfd56e6c29ae7f4c274659a47fcc13363de17f1dbb10bff8f651134e895bb15a\",\"name\":\"lightningcss-linux-x64-musl\",\"version\":\"1.32.0\"},\"lightningcss-win32-arm64-msvc-1.32.0.tgz\":{\"integrity\":\"8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f126c2f01478d294ba6da08cf2c6ed6034b011541de099454ce95a0f78161877d385370006734305d6ba79365ea9ba1f6a5209845c74a8ace01c999c3d39c677\",\"name\":\"lightningcss-win32-arm64-msvc\",\"version\":\"1.32.0\"},\"lightningcss-win32-x64-msvc-1.32.0.tgz\":{\"integrity\":\"Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"026abd07f4a86587438b5905ae88e7a2a3cbc58850e16a395e22fc11526b56c07c011a02d4f596e951ad4f458a09e9a3cbc682fa5a2e2678d2ed4d7cc776f4e9\",\"name\":\"lightningcss-win32-x64-msvc\",\"version\":\"1.32.0\"},\"lilconfig-3.1.3.tgz\":{\"integrity\":\"/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fef945280a07e4282ddc87be24b8516f03ac09078f001894ded2757a01afc90fb7dd1fef730336665d9047f2f38ec05e22d3edde84955daa67fa6e27403be9cf\",\"name\":\"lilconfig\",\"version\":\"3.1.3\"},\"lines-and-columns-1.2.4.tgz\":{\"integrity\":\"7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ef297295eb1943f3d5dbd8e110397751f8e8e995fb802a89af917b3caaea73ddefedfcd2ca6b75069c0453c9c0517b3cab3cefaa16e384ae50660e8cb7f1e406\",\"name\":\"lines-and-columns\",\"version\":\"1.2.4\"},\"load-tsconfig-0.2.5.tgz\":{\"integrity\":\"IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2173ba382b3dca0f2d30acdf3d9d589a17896d90a212c9c175c074de5d0e71f2bda6b2a725bf7ab22b870abe45977effca8f439ca53e4cba71cd352ca70f6c86\",\"name\":\"load-tsconfig\",\"version\":\"0.2.5\"},\"locate-path-6.0.0.tgz\":{\"integrity\":\"iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553\",\"name\":\"locate-path\",\"version\":\"6.0.0\"},\"lodash-4.17.21.tgz\":{\"integrity\":\"v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a\",\"name\":\"lodash\",\"version\":\"4.17.21\"},\"lodash.merge-4.6.2.tgz\":{\"integrity\":\"0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321\",\"name\":\"lodash.merge\",\"version\":\"4.6.2\"},\"longest-streak-3.1.0.tgz\":{\"integrity\":\"9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f518bea3425881e8536950410e832a225f065ed6d683bd753b7b2b7ed707859d1daa7113a8b6a820ad31d7b7d4c3dac54a52bfd0d96c29ed00861ca5e695c4da\",\"name\":\"longest-streak\",\"version\":\"3.1.0\"},\"lru-cache-10.4.3.tgz\":{\"integrity\":\"JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"24d03365c5eb0ade365462ee633d337c0cc37c0bc9596e807d8943050c835790c2948da6e6c0262be3883bbb39f577ec46c587a74da3009ad169d3d1193b7a49\",\"name\":\"lru-cache\",\"version\":\"10.4.3\"},\"lru-cache-11.2.7.tgz\":{\"integrity\":\"aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"698fd1f9a12c45e9667b5eca1906bfd59488a4ba4d618ae172b7a929366013e5b758cd7a60c09a3f03872c7b26a2964710b5343a38a7d653d5c4a47432286770\",\"name\":\"lru-cache\",\"version\":\"11.2.7\"},\"lru-cache-5.1.1.tgz\":{\"integrity\":\"KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2a9340450037230bfe8d3034bad51555bae1f8996baf516fd1ee7a186cc014e5cdedd93f16f89a0d6f0b1e62b9d8395c1f858fda7ea023cbcdd5a7ac045828f7\",\"name\":\"lru-cache\",\"version\":\"5.1.1\"},\"lucide-react-0.563.0.tgz\":{\"integrity\":\"8dXPB2GI4dI8jV4MgUDGBeLdGk8ekfqVZ0BdLcrRzocGgG75ltNEmWS+gE7uokKF/0oSUuczNDT+g9hFJ23FkA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f1d5cf076188e1d23c8d5e0c8140c605e2dd1a4f1e91fa9567405d2dcad1ce8706806ef996d3449964be804eeea24285ff4a1252e7333434fe83d845276dc590\",\"name\":\"lucide-react\",\"version\":\"0.563.0\"},\"lz-string-1.5.0.tgz\":{\"integrity\":\"h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8796e0256a7124db306d4eea0ab574b4829009a4b76e53c3aea296c7e431ceeccbd73194ce28fd5c258bad22ec24fbb9b7e79603fc9c7adcd800ee4838c71601\",\"name\":\"lz-string\",\"version\":\"1.5.0\"},\"magic-string-0.30.21.tgz\":{\"integrity\":\"vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bddd85e1853211728670b1e8abe4c4c828f1b9e49e1e7171cb28cda7cd328345d5e2f5219c37abfe5bef96a33f6ab0796d740de4adbfde88a7c82472c7c4f609\",\"name\":\"magic-string\",\"version\":\"0.30.21\"},\"magicast-0.5.2.tgz\":{\"integrity\":\"E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1376498782774bd29fc1d8d985ed9a7e3e91f651883793e17abd69177f541ab5d1aaafd50da195206375dc18c7776bbc07ad6102b0063a7b28ee704ea2e5b74d\",\"name\":\"magicast\",\"version\":\"0.5.2\"},\"make-dir-4.0.0.tgz\":{\"integrity\":\"hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8577544d960854eb75131fff8c0422fb04d9669529c018ffd10b0ecea7a06f7ac630c78989212ee712c79d87c1ad1578447dbe38248e3bde48b3fef1d562786f\",\"name\":\"make-dir\",\"version\":\"4.0.0\"},\"marked-14.0.0.tgz\":{\"integrity\":\"uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b888f8f9f690f8c807830516d65d8fb0f82564b38b393d6e12bb74e9d00fb71da48ed78b0246ec77fd0589883f3064be8bb64a2dbef0d960a5c4793338ebabc9\",\"name\":\"marked\",\"version\":\"14.0.0\"},\"math-intrinsics-1.1.0.tgz\":{\"integrity\":\"/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fc85ed6f0124e474cfc84c32297ea11a4617c4cf676e3eb807e8a55499c2fd1e81d291f91b85776f4a556cbec3063e2d921040a696d05257fa17a5e5f4b1eed6\",\"name\":\"math-intrinsics\",\"version\":\"1.1.0\"},\"mdast-util-from-markdown-2.0.3.tgz\":{\"integrity\":\"W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5b8980593bd294abdff0be89f9537dc8b4aa43d00e000bc7ba80c098f933e1d1dfe79de6e60563d9e8da747261a0999c9b11273afe8f6bc5c9869c44f7791bf1\",\"name\":\"mdast-util-from-markdown\",\"version\":\"2.0.3\"},\"mdast-util-mdx-expression-2.0.1.tgz\":{\"integrity\":\"J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"27a7fef61529fa575366a2914a0ed5c3957a32a8c04dcfb713881fdc214d72e64d583f1777223acd0f06a87edff35ebd30ce8fee13014435469e7ee81c1f645d\",\"name\":\"mdast-util-mdx-expression\",\"version\":\"2.0.1\"},\"mdast-util-mdx-jsx-3.2.0.tgz\":{\"integrity\":\"lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"963ff3f2fd2be99b6c37f70634db5e9a699fa0b0056678cc6cdc8bcc169f8f38a438cfa096b8cd1cf95fea540339371c8fd9f96f43cf8a11016e19de3321acd5\",\"name\":\"mdast-util-mdx-jsx\",\"version\":\"3.2.0\"},\"mdast-util-mdxjs-esm-2.0.1.tgz\":{\"integrity\":\"EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"11c98ea71b19f7a0af94fd3736086d1f512c2edaf49fd4e6e253d425405c715f51c143a77aa4b2720d7d9f91c6cc27fed742e8ccc45239bb55af779ed56a07b6\",\"name\":\"mdast-util-mdxjs-esm\",\"version\":\"2.0.1\"},\"mdast-util-phrasing-4.1.0.tgz\":{\"integrity\":\"TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4ea202c32bc9269070bc600c6638f82769f45fc416a76d5bf65d28ede5f2549db960d5986c90d52320f56d95c4e96b55e9198a2556264002966b4cd6380073db\",\"name\":\"mdast-util-phrasing\",\"version\":\"4.1.0\"},\"mdast-util-to-hast-13.2.1.tgz\":{\"integrity\":\"cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"71cb6cab6c29e6f4ec2c871aca66e552b8a24dc65dd02c16b426cbbeb3b36020d9a16c8c355f2c67b92b8f4f454a7b22262dd656c1cb33893a0eaff268fc825c\",\"name\":\"mdast-util-to-hast\",\"version\":\"13.2.1\"},\"mdast-util-to-markdown-2.1.2.tgz\":{\"integrity\":\"xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c63ebcc0c4ef19754e2a89e6a20e8bc3224aad85d93ef97069b6abc938cb87d2eebe8bc1fca007fa4be2f068e3fbbac98ec162db79e4531450bf52aa4aba0ca8\",\"name\":\"mdast-util-to-markdown\",\"version\":\"2.1.2\"},\"mdast-util-to-string-4.0.0.tgz\":{\"integrity\":\"0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d07e38bc38a69f9d45d18c2fc522529b47820ce25346598dd11d72061e072e3f70895d439f44285c66ef1405a3da1488b554e50a6045d61a8a948c9405514b3e\",\"name\":\"mdast-util-to-string\",\"version\":\"4.0.0\"},\"mdn-data-2.27.1.tgz\":{\"integrity\":\"9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f58b9b9edddef00d0e2b0c58497ca12f29865b8b02b9f70b1ba55d88375419590f869a8bc65bcfe6f975f7cde0423265deda9baccef7d668da65a3faf00828b1\",\"name\":\"mdn-data\",\"version\":\"2.27.1\"},\"meow-13.2.0.tgz\":{\"integrity\":\"pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a7140943307a76318f5e1d3c75a704968305a29b0ea865512853d8bcf3adf570d9d476ac6e00d903be02246ade494e06dc093b105246a221f66aeabec9721280\",\"name\":\"meow\",\"version\":\"13.2.0\"},\"micromark-4.0.2.tgz\":{\"integrity\":\"zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ce97bdf10ea4bdabe90abd4d3d548231e6c229f0fb080d8da99fabca478d84e348241a5cd6d14ab7d86e70b1b085ade3353348f251e972d5895a88a6545e0f7c\",\"name\":\"micromark\",\"version\":\"4.0.2\"},\"micromark-core-commonmark-2.0.3.tgz\":{\"integrity\":\"RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44306b1c4312c5514b83ac6f9d799bd40cabd96ccb0168de4804c0a31c0a60957de1378d6af82821d0346bdcadcc3495cc1cb660a14af9e9823ce1226cb782ae\",\"name\":\"micromark-core-commonmark\",\"version\":\"2.0.3\"},\"micromark-factory-destination-2.0.1.tgz\":{\"integrity\":\"Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5deeab0dd2659266c5444c694ce9918fd37731a5a66c081da52ac142f085aa17b3527e001ea2476da1277db5586227b1552b3ffeda8e758fc3c618dd0a226720\",\"name\":\"micromark-factory-destination\",\"version\":\"2.0.1\"},\"micromark-factory-label-2.0.1.tgz\":{\"integrity\":\"VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"54531e932404c6a216ef120285c5e7e28936f58137ae7bb2bde5b7c194165aa17836ff56939ae027df4accfbc78e498f5c5f7715721b069e98756dedef5ffb56\",\"name\":\"micromark-factory-label\",\"version\":\"2.0.1\"},\"micromark-factory-space-2.0.1.tgz\":{\"integrity\":\"zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cd19318ed071c4b77649cd1df9f6e712e9ec4e3e3a4965e05dc899987ab49036069dc93f6521a3f7fc142d357de6ea1e6222b98515cfda627df14a3872afcb42\",\"name\":\"micromark-factory-space\",\"version\":\"2.0.1\"},\"micromark-factory-title-2.0.1.tgz\":{\"integrity\":\"5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e5b67edc28e101df5e0a16131ec8f2e931b1a4e1522a028a24f271af6f778d36dfaf2d8a0e85a48416fa4dc3d5078366cda3e132cd45ae6f40647ece0f80a3cf\",\"name\":\"micromark-factory-title\",\"version\":\"2.0.1\"},\"micromark-factory-whitespace-2.0.1.tgz\":{\"integrity\":\"Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"39bd27b99dcf2adfe7d213911f2be80fdb9986bf996bcb05a0ff8e9cc72758ae659e04b300b81060a32bf512553962ea418bb29faba5a865925ddc1fe85f3495\",\"name\":\"micromark-factory-whitespace\",\"version\":\"2.0.1\"},\"micromark-util-character-2.1.1.tgz\":{\"integrity\":\"wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c2ff2d7544c9ded8521451492ada5828e62218fdbebfde87be4e13bbc2a9080b1332ceb28be9d5986875b32bd20ac6b1cf8e49e896f0fbd0c3ea0f7bf8d57aed\",\"name\":\"micromark-util-character\",\"version\":\"2.1.1\"},\"micromark-util-chunked-2.0.1.tgz\":{\"integrity\":\"QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"41434510e3c42df9afbfee3188d836b1161e4bf3fce294d6d130a03f9cdcf45a577ad1d8d1a6fb4b12b201008d09cd5e2b4e39f6ea0b235cb9a0ee5573575b84\",\"name\":\"micromark-util-chunked\",\"version\":\"2.0.1\"},\"micromark-util-classify-character-2.0.1.tgz\":{\"integrity\":\"K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2b4907ccce9a7d6fcc6de59858b8e81d0bf5b2083643d11c707103cd293188ffc469a80dcc29bb4ff58c299deb8cc6ef229bc189983047774a33282d038986d5\",\"name\":\"micromark-util-classify-character\",\"version\":\"2.0.1\"},\"micromark-util-combine-extensions-2.0.1.tgz\":{\"integrity\":\"OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3a70271fc5239b2e7d25cc99c3c2526caf5c1a9755638e0d2a048cec4f4487b0e22d2d84f513507f474e35a183cc41bdca3125e6172a788b23e217d190b1ff06\",\"name\":\"micromark-util-combine-extensions\",\"version\":\"2.0.1\"},\"micromark-util-decode-numeric-character-reference-2.0.2.tgz\":{\"integrity\":\"ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"71c51b624e82c1576498240ccabeb8757cf8d847c71a43d09418f9a7b6151b3abc23b0ad8d7649aee6c061ecdfed1a7e6e33ec7a244ea9eec6e9fa0577e944bb\",\"name\":\"micromark-util-decode-numeric-character-reference\",\"version\":\"2.0.2\"},\"micromark-util-decode-string-2.0.1.tgz\":{\"integrity\":\"nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9c357fefb163e9e1f5ca7c2c7184ceb1b2bbad1fff523d1b65707025945f68b109d6218147a9087cd9a536a6aa25feb8f443f417735635d7898b4dde96594d51\",\"name\":\"micromark-util-decode-string\",\"version\":\"2.0.1\"},\"micromark-util-encode-2.0.1.tgz\":{\"integrity\":\"c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"737715c76cb82aa527c28a5c3bd6ff482768d8eebb2f0249fd4caa19f6e281a85f7a02fd9b2a041680d8660913edfdfa4f46cbaccf6165301a0321fe3c20178f\",\"name\":\"micromark-util-encode\",\"version\":\"2.0.1\"},\"micromark-util-html-tag-name-2.0.1.tgz\":{\"integrity\":\"2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d9c3448980e1096288f86b3d4f44e2cac935dfa4a7475de184ef325ba04637284e0b8a98167c05d6729f0f71c50085c0e5ce3946b206d6e6f5d46897798775c4\",\"name\":\"micromark-util-html-tag-name\",\"version\":\"2.0.1\"},\"micromark-util-normalize-identifier-2.0.1.tgz\":{\"integrity\":\"sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b313ea9a8ef42f201126cd30d947250023d4504aa5b42909e8f84a74c203b89de049ffd0fbf1887b758a9742236ff1b21fd94ea5491100edb0a7419590bbd2f5\",\"name\":\"micromark-util-normalize-identifier\",\"version\":\"2.0.1\"},\"micromark-util-resolve-all-2.0.1.tgz\":{\"integrity\":\"VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"55d432c455854f6fc51898304272586ded638d0a0d4d2e118e09664a34d496950c6bde47b71f4d1de616e2b1832736e3bc2b25f5e2e3310c0678496caa6cdc1e\",\"name\":\"micromark-util-resolve-all\",\"version\":\"2.0.1\"},\"micromark-util-sanitize-uri-2.0.1.tgz\":{\"integrity\":\"9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f4df48a2667f62e18665999079cd4c6e0c6d960a2e8314e8755c03cf3128b8f2a8dea156bf29851d67270e2dafcd5d5f7fa91ab3db9c5bea37cb324af5807501\",\"name\":\"micromark-util-sanitize-uri\",\"version\":\"2.0.1\"},\"micromark-util-subtokenize-2.1.0.tgz\":{\"integrity\":\"XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5d02eee79da249cb6f9c47205f0ebe4b1ef919f9403cd103d6ac7b78127ec327416f62826d165ef8dc2f20410c33cdee9a5d7ed96497a4101ca7d2140a009858\",\"name\":\"micromark-util-subtokenize\",\"version\":\"2.1.0\"},\"micromark-util-symbol-2.0.1.tgz\":{\"integrity\":\"vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bece6df00a5ab9df4ddbc9200ab45474479de1427ec1636f89c1cb3f109af4436562e018df5334113cb9cb5bc0df762834f0c54e08446e787a79f684f21e31d1\",\"name\":\"micromark-util-symbol\",\"version\":\"2.0.1\"},\"micromark-util-types-2.0.2.tgz\":{\"integrity\":\"Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"630d04092a49a15885d6a4d4e030ba370b42e1a586b75124cda401f0a3cfc82451f33f5359e5741db1051933be658d70076db39b19c9aa13f24e93950a97874c\",\"name\":\"micromark-util-types\",\"version\":\"2.0.2\"},\"min-indent-1.0.1.tgz\":{\"integrity\":\"I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02\",\"name\":\"min-indent\",\"version\":\"1.0.1\"},\"minimatch-10.2.5.tgz\":{\"integrity\":\"MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3142e454b7ca1980c561e8cfd3b40ebab0cb2d0a5c8e4ec5c3eee35d2d91d9ccd1433479eb21d1bde5393432443af887fa111364a4a4224e5cf93db71a315432\",\"name\":\"minimatch\",\"version\":\"10.2.5\"},\"minimatch-3.1.5.tgz\":{\"integrity\":\"VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5608d652c9e74fa9fe35493a799abbef37857695b62d60f33facc51ab09b1d789836e9790f3aa4d871d0e6e147d83356e576e9f3e8d5cda78db7de2cb04125e3\",\"name\":\"minimatch\",\"version\":\"3.1.5\"},\"minimist-1.2.8.tgz\":{\"integrity\":\"2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"db2c8047ca8190ddd8ba17896a7529582e54ddb6f9a2c0f2c0d07c4730d5943c031dba1c009bdeaaa8f5bbcf92543ee39164f8cafb070a95aaa96a80c5bd3308\",\"name\":\"minimist\",\"version\":\"1.2.8\"},\"mlly-1.8.2.tgz\":{\"integrity\":\"d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"77e39bc4c40599bb75d2cadeb4d0f2b70b7ce55adb92185403f2411a6d4c3da589eb90a5e303a02da075358bc9499d047f4dcc30453fd31a4f317508436f547c\",\"name\":\"mlly\",\"version\":\"1.8.2\"},\"monaco-editor-0.55.1.tgz\":{\"integrity\":\"jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8f3e31f9324d147c07b70b95f6f03daccba371945bd021229531301b6ad14a97bf03b25d92e8fcc4f2adb4280e87ebff9641f2ec7b19eb8a23faadf1a00165f4\",\"name\":\"monaco-editor\",\"version\":\"0.55.1\"},\"ms-2.1.3.tgz\":{\"integrity\":\"6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394\",\"name\":\"ms\",\"version\":\"2.1.3\"},\"mz-2.7.0.tgz\":{\"integrity\":\"z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cfcd4634eee79d830486b1a1f4b7b29a8138f98af45a7e4c70721930ae5c7d00a5f8d0d7d3cb0266051cf7fe8c1e78bd216b852e6d59dc74c25eedb3f5f37ad9\",\"name\":\"mz\",\"version\":\"2.7.0\"},\"nanoid-3.3.11.tgz\":{\"integrity\":\"N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"37c4a97cf527529d5b2be3cc616f2a496765f54fb0c0d588e102b13980f2f4902ba3758c5fba7639e55117dbfedf8ee99da90d7af3e688784d999d876c503beb\",\"name\":\"nanoid\",\"version\":\"3.3.11\"},\"natural-compare-1.4.0.tgz\":{\"integrity\":\"OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b\",\"name\":\"natural-compare\",\"version\":\"1.4.0\"},\"neo-async-2.6.2.tgz\":{\"integrity\":\"Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb\",\"name\":\"neo-async\",\"version\":\"2.6.2\"},\"node-releases-2.0.36.tgz\":{\"integrity\":\"TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4dd0bc152807cfc330b70f60e4be2047f4a1f578523ffd031244317c41573a98ae9792221e01da9f65616186fa6a00d27e9e0abaf96d98602973c1cc814ac890\",\"name\":\"node-releases\",\"version\":\"2.0.36\"},\"normalize-package-data-7.0.1.tgz\":{\"integrity\":\"linxNAT6M0ebEYZOx2tO6vBEFsVgnPpv+AVjk0wJHfaUIbq31Jm3T6vvZaarnOeWDh8ShnwXuaAyM7WT3RzErA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9629f13404fa33479b11864ec76b4eeaf04416c5609cfa6ff80563934c091df69421bab7d499b74fabef65a6ab9ce7960e1f12867c17b9a03233b593dd1cc4ac\",\"name\":\"normalize-package-data\",\"version\":\"7.0.1\"},\"object-assign-4.1.1.tgz\":{\"integrity\":\"rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52\",\"name\":\"object-assign\",\"version\":\"4.1.1\"},\"object-property-assigner-1.3.5.tgz\":{\"integrity\":\"DIzHzNSTnpoG8QPQCDNrHa6O3vLMhktK3Igirqpk523UYIVe8JNCKcn5C9WyLQxJc58EGsAIiiEu10gqPrud8w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0c8cc7ccd4939e9a06f103d008336b1dae8edef2cc864b4adc8822aeaa64e76dd460855ef0934229c9f90bd5b22d0c49739f041ac0088a212ed7482a3ebb9df3\",\"name\":\"object-property-assigner\",\"version\":\"1.3.5\"},\"object-property-extractor-1.0.14.tgz\":{\"integrity\":\"euG3MQwj41DMbfk1keguY+jKQvaf9r26NeECtb28G8jABnhZVqxVEvIFywWC2107cSgx8dimA+JXuCAZFfbsSg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7ae1b7310c23e350cc6df93591e82e63e8ca42f69ff6bdba35e102b5bdbc1bc8c006785956ac5512f205cb0582db5d3b712831f1d8a603e257b8201915f6ec4a\",\"name\":\"object-property-extractor\",\"version\":\"1.0.14\"},\"obug-2.1.1.tgz\":{\"integrity\":\"uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b93a85f4cb8fada010f88b273dfdfae911b870ff51b548bb30b3b537728473ec1bd1aeb22a978bd259a4d880758d8e4a1cf0254dce93fc945d0bf62ac4737091\",\"name\":\"obug\",\"version\":\"2.1.1\"},\"optionator-0.9.4.tgz\":{\"integrity\":\"6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e88a50ee6294c5171934b20e6d1d21cfb971b1aa5248860d649c173c6785d264d5a862852178f50d070ca13db64b744e70bc98febcf43d669667d6b25a669df6\",\"name\":\"optionator\",\"version\":\"0.9.4\"},\"p-limit-3.1.0.tgz\":{\"integrity\":\"TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945\",\"name\":\"p-limit\",\"version\":\"3.1.0\"},\"p-locate-5.0.0.tgz\":{\"integrity\":\"LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f\",\"name\":\"p-locate\",\"version\":\"5.0.0\"},\"parent-module-1.0.1.tgz\":{\"integrity\":\"GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa\",\"name\":\"parent-module\",\"version\":\"1.0.1\"},\"parse-entities-4.0.2.tgz\":{\"integrity\":\"GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"186d804185a82e02fcefb81020a7913c63b5c45f7e786d6e8c86f9b284b980fbcb435cb6a3c14bf74c3641635d7fd237eb5329a7bef6e9cfa58f7534a8ad6e1b\",\"name\":\"parse-entities\",\"version\":\"4.0.2\"},\"parse5-8.0.0.tgz\":{\"integrity\":\"9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f66e26e464a05e32f8023ba62b3ab51607e9dd9f2bb2f8d135b9e45707eed88991a84e43d0b9d8d907c37a7d7c15263d0b9ef7614e57c526a97476536765a894\",\"name\":\"parse5\",\"version\":\"8.0.0\"},\"path-exists-4.0.0.tgz\":{\"integrity\":\"ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff\",\"name\":\"path-exists\",\"version\":\"4.0.0\"},\"path-key-3.1.1.tgz\":{\"integrity\":\"ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9\",\"name\":\"path-key\",\"version\":\"3.1.1\"},\"pathe-2.0.3.tgz\":{\"integrity\":\"WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5948c6700a8fd6041a72841ef8e049b0503b2dde03c97b9422367971cef970b1ef27b76d36c4ee8298712000f0b294be02b68051e3c22ab495b4f2c58ff17cf3\",\"name\":\"pathe\",\"version\":\"2.0.3\"},\"picocolors-1.1.1.tgz\":{\"integrity\":\"xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c5c787dac9e1b5be4cf658aa0ec984c39ea57b7efa993664117fe311bfd1c4d1727a036e97b78db250973fd1438ff2dcbb45fc284c8c71e3f69eda5a1eb0c454\",\"name\":\"picocolors\",\"version\":\"1.1.1\"},\"picomatch-4.0.4.tgz\":{\"integrity\":\"QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"40ff3c0402af31a9bfdcdc47eaf8f6a36d51e8c8f165401dea7970012fe99c6bcdf4854ba1c2c7c46608cc5860e9f510fb9b61e8fe1dbf8796f635f70d2223ec\",\"name\":\"picomatch\",\"version\":\"4.0.4\"},\"pirates-4.0.7.tgz\":{\"integrity\":\"TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4dfc92aecff99e6f1f4090dc043b949e0dd53942ac77b4beceabdb3938865c77f15f8c0adf56ab77e86836ebe489c33fd981739690e000139ebca4ac0781bf14\",\"name\":\"pirates\",\"version\":\"4.0.7\"},\"pkg-types-1.3.1.tgz\":{\"integrity\":\"/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"fc99b933846fb4115590a591bb604b51334ff3f3366be530b805fe69ee3bef4ab5a951ad7e31be5930aea68662c689239878abcbcb88f9d958f0a5d85791d555\",\"name\":\"pkg-types\",\"version\":\"1.3.1\"},\"possible-typed-array-names-1.1.0.tgz\":{\"integrity\":\"/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ffee55153721243a158f76e1a2a8ba51eca6703d340c0c1bd672706a6ccfbc712ccc9e05a45e9234d6d46ce4bcc88e7aa87cdd57c78ad2a11f3928a87644ddc6\",\"name\":\"possible-typed-array-names\",\"version\":\"1.1.0\"},\"postcss-8.5.8.tgz\":{\"integrity\":\"OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"396feb5fc3bf8d79e6f36132d64e38a4e6cfb5d6e57e2b969eb77c5fb189ede9889823acb6e9c66d7529a7b1dd06b1505faac9ce7dec3d3dfded6a79682c021e\",\"name\":\"postcss\",\"version\":\"8.5.8\"},\"postcss-load-config-6.0.1.tgz\":{\"integrity\":\"oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a0fb53338a1eacbf945e6c7ef77cad65537cd91ae563fc0f515f08783c45af32235ce2c5d6937e12628f2dbb9bbca1d3d870b6d315ec0801f667e08a57a3b3fe\",\"name\":\"postcss-load-config\",\"version\":\"6.0.1\"},\"postcss-value-parser-4.2.0.tgz\":{\"integrity\":\"1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d4d342b3abaeadf9156de5c6e12f09153f6dd7d9b8e480a789ff3358b779a0f499e74427c0c7caf87de3bf8d3c7788f0ffb06db6fe5ac52e48887a0b69534779\",\"name\":\"postcss-value-parser\",\"version\":\"4.2.0\"},\"prelude-ls-1.2.1.tgz\":{\"integrity\":\"vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6\",\"name\":\"prelude-ls\",\"version\":\"1.2.1\"},\"pretty-format-27.5.1.tgz\":{\"integrity\":\"Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"41bd60cb93ab3f9fb30dfd81be7cdd9778ec4dfd6a5d531acdbbc2a0a86d2aa56ce3f60ae28cd7e2029024957235ef9c6a334f9f42a80b4302dc552668758499\",\"name\":\"pretty-format\",\"version\":\"27.5.1\"},\"process-0.11.10.tgz\":{\"integrity\":\"cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"71d19e7ff76b585a32743d49b0ccee15ff35d349d997e193fb269c7366c471e7797fd463938cfe5ad1544c1bbd3e13a2f63fe37e604fbb498c118e3021d005f0\",\"name\":\"process\",\"version\":\"0.11.10\"},\"property-information-7.1.0.tgz\":{\"integrity\":\"TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4f0119f97fb20899987cbed33d439cbc167841fa13e587a742226e5ffff4b61e770c4eb0d31c4b12d7cade2cabc9015d757baf908939d44120ac943458990e99\",\"name\":\"property-information\",\"version\":\"7.1.0\"},\"punycode-2.3.1.tgz\":{\"integrity\":\"vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bd8b7b503d54f5683ad77f2c84bb4b3af740bbef03b02fe2945b44547707fb0c9d712a4d136d007d239db9fe8c91115a84be4563b5f5a14ee7295645b5fabc16\",\"name\":\"punycode\",\"version\":\"2.3.1\"},\"react-19.2.4.tgz\":{\"integrity\":\"9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f677e9da16290b03a300dfbc4d914686d584c20bd61d7a84487f2a4fcf404ff956925a4b38ddb62dcf2912d9e9b19cfb5666b069b494d200a39e3f1a0b47ae1d\",\"name\":\"react\",\"version\":\"19.2.4\"},\"react-colorful-5.7.0.tgz\":{\"integrity\":\"fuesYIemttah97XmsIHmz4OORDHiSFzyc9HMAIrCHJou2jaRQmL8cFJ76K4zQhhj8jzwOBlOi4BaGTjjOZCfTg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7ee7ac6087a6b6d6a1f7b5e6b081e6cf838e4431e2485cf273d1cc008ac21c9a2eda36914262fc70527be8ae33421863f23cf038194e8b805a1938e339909f4e\",\"name\":\"react-colorful\",\"version\":\"5.7.0\"},\"react-dom-19.2.4.tgz\":{\"integrity\":\"AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"01725d2e8f2480c6e2998f793b668a42ab33da25a2f63320289851040c44084e081717dc6b30762e6ce5a08a226c92370b5d88958db4f8a15a2effbbd5b50979\",\"name\":\"react-dom\",\"version\":\"19.2.4\"},\"react-i18next-16.6.6.tgz\":{\"integrity\":\"ZgL2HUoW34UKUkOV7uSQFE1CDnRPD+tCR3ywSuWH7u2iapnz86U8Bi3Vrs620qNDzCf1F47NxglCEkchCTDOHw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6602f61d4a16df850a524395eee490144d420e744f0feb42477cb04ae587eeeda26a99f3f3a53c062dd5aeceb6d2a343cc27f5178ecdc609421247210930ce1f\",\"name\":\"react-i18next\",\"version\":\"16.6.6\"},\"react-is-17.0.2.tgz\":{\"integrity\":\"w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c361accae90beb62099e569f7ff9d17a03d047de02fd75da9af3169921d1278cbb4ecff8a1c1919931ef3acf0f484ea90777563ab0ff9ee7ae539b1db81b10e3\",\"name\":\"react-is\",\"version\":\"17.0.2\"},\"react-markdown-10.1.0.tgz\":{\"integrity\":\"qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a8ac55a292d3fd3c80e815f751ee4dc1a6ceb00ce6d10ee400fc2ae8bfb0583c22b18b3b47cbd9d27457aaaeab92e79ba31a648ef2c653d7d689f897fd9645c5\",\"name\":\"react-markdown\",\"version\":\"10.1.0\"},\"react-redux-9.2.0.tgz\":{\"integrity\":\"ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44e63d7ef1e1c0e0fdc927eb174c26beefff6ca090e8079966ad6724db5b0c2fa49390ee4ae357fe7e9859817f498cbb6d26dae03e054b3f0325e298fd2febfa\",\"name\":\"react-redux\",\"version\":\"9.2.0\"},\"react-refresh-0.18.0.tgz\":{\"integrity\":\"QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4204f9fff0f78df8c96fa1ac8f1bf44a5a63db78a9f87b4ea673609dbd92e73537081dba1bf2033c6a32e11241e36c33144e3a0d1b2cb5b5bab4a1e829b840c7\",\"name\":\"react-refresh\",\"version\":\"0.18.0\"},\"react-router-7.13.2.tgz\":{\"integrity\":\"tX1Aee+ArlKQP+NIUd7SE6Li+CiGKwQtbS+FfRxPX6Pe4vHOo6nr9d++u5cwg+Z8K/x8tP+7qLmujDtfrAoUJA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b57d4079ef80ae52903fe34851ded213a2e2f828862b042d6d2f857d1c4f5fa3dee2f1cea3a9ebf5dfbebb973083e67c2bfc7cb4ffbba8b9ae8c3b5fac0a1424\",\"name\":\"react-router\",\"version\":\"7.13.2\"},\"react-router-dom-7.13.2.tgz\":{\"integrity\":\"aR7SUORwTqAW0JDeiWF07e9SBE9qGpByR9I8kJT5h/FrBKxPMS6TiC7rmVO+gC0q52Bx7JnjWe8Z1sR9faN4YA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"691ed250e4704ea016d090de896174edef52044f6a1a907247d23c9094f987f16b04ac4f312e93882eeb9953be802d2ae76071ec99e359ef19d6c47d7da37860\",\"name\":\"react-router-dom\",\"version\":\"7.13.2\"},\"readdirp-4.1.2.tgz\":{\"integrity\":\"GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"18387090b7f2c162f6b3abc48f286b8be79799f1fa8f52fb244dbb5a1a8b798ce887f0370c16981848f61ff1c56429ff90c7e29bbdc55f11094f0d3a5adc50c2\",\"name\":\"readdirp\",\"version\":\"4.1.2\"},\"recharts-3.8.1.tgz\":{\"integrity\":\"mwzmO1s9sFL0TduUpwndxCUNoXsBw3u3E/0+A+cLcrSfQitSG62L32N69GhqUrrT5qKcAE3pCGVINC6pqkBBQg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9b0ce63b5b3db052f44ddb94a709ddc4250da17b01c37bb713fd3e03e70b72b49f422b521bad8bdf637af4686a52bad3e6a29c004de9086548342ea9aa404142\",\"name\":\"recharts\",\"version\":\"3.8.1\"},\"redent-3.0.0.tgz\":{\"integrity\":\"6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ead0c0f20f7c59ed337741af55e313f5aac43a74f0f6a334dcbf5c2576828eb8a9d4e3bbeb844304b05fac1e1cc333460e3e4e0398a8ca60bd1a48b381624352\",\"name\":\"redent\",\"version\":\"3.0.0\"},\"redux-5.0.1.tgz\":{\"integrity\":\"M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"33dfc42ea17a7f2f05c269299c5d12dd828ea8cca8589e3e092e447e0d9cb77a18f5d690bddfcf73bd45a4666c56c6e5dc2a5bf8821c8c10d49e7c817506eae3\",\"name\":\"redux\",\"version\":\"5.0.1\"},\"redux-thunk-3.1.0.tgz\":{\"integrity\":\"NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"356dabe53ea4b1429709a6f384bf73fa1db4e87430fcd26470b9b518f226450f08cdf5f0446aa356128919ab878ab4f40c0bb2cba863767319691a00732d0a97\",\"name\":\"redux-thunk\",\"version\":\"3.1.0\"},\"remark-parse-11.0.0.tgz\":{\"integrity\":\"FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"142c6528b3469274b96daff5966a588a3314cd7d9eb315b9c50aa35b1c3678715f4b631275a1d520d166863a3ea8dd5685984d8a6ab475901337da47d080eba4\",\"name\":\"remark-parse\",\"version\":\"11.0.0\"},\"remark-rehype-11.1.2.tgz\":{\"integrity\":\"Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0e1ee5e7b89a9da128229cdba743c2f542807424959250fc139469c3b1137db4e5dc5a9c38e82ae6ad8b54386018291a06fee9db82578a43ddbe18661ef28cb3\",\"name\":\"remark-rehype\",\"version\":\"11.1.2\"},\"require-from-string-2.0.2.tgz\":{\"integrity\":\"Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13\",\"name\":\"require-from-string\",\"version\":\"2.0.2\"},\"reselect-5.1.1.tgz\":{\"integrity\":\"K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2bf046e9e224cbf481a737c766ffdd77ef49045892e12595ec522e8d5c8946ec7a7b8e7eef745a5075cb9884757fb58e31a434535926eaac24951431a49258d3\",\"name\":\"reselect\",\"version\":\"5.1.1\"},\"resolve-from-4.0.0.tgz\":{\"integrity\":\"pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2\",\"name\":\"resolve-from\",\"version\":\"4.0.0\"},\"resolve-from-5.0.0.tgz\":{\"integrity\":\"qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a9883d28fdb8743e6a91af49e3b774695932d0df9be1f4d4f3d2cdf620e78c1e706a4b220b8f6bbcc0743eb509406a13987e745cf8aa3af0230df6a28c6c5867\",\"name\":\"resolve-from\",\"version\":\"5.0.0\"},\"resolve-pkg-maps-1.0.0.tgz\":{\"integrity\":\"seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b1e4b64e3dba4c154e0b6348736ace7b6cb664eede7f1213b4b65c1923a71c734e43b0a489405fc34230d9c93ac642213f02e128d2d2f013be844a6781096acf\",\"name\":\"resolve-pkg-maps\",\"version\":\"1.0.0\"},\"rollup-4.60.1.tgz\":{\"integrity\":\"VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"566b41dab154fc6ae8678a0bf3e66a5e0480dfc3ba191f0a488bd698416feb7a50d06e8a6811fdb34ecf3bc5d35cfe2f23edd4254132a4e7e39067e6481051d3\",\"name\":\"rollup\",\"version\":\"4.60.1\"},\"safe-regex-test-1.1.0.tgz\":{\"integrity\":\"x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c7ff82cf862b8a643141c7097f998a11b21ad4dcde091348e44725fde92695869a9a974d2cf6a557221c09934d1f732f9aa06e815e53318657bf4963b255256b\",\"name\":\"safe-regex-test\",\"version\":\"1.1.0\"},\"saxes-6.0.0.tgz\":{\"integrity\":\"xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c4083b48e9c486b9b9cc8de9b8e38acb2d4e31c32520965834963bc4b0704b37b452384f2e759f8f6185d84a53d239b368928858a1cbb1a4926a37f7e5b7189c\",\"name\":\"saxes\",\"version\":\"6.0.0\"},\"scheduler-0.27.0.tgz\":{\"integrity\":\"eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"78dbfe5ab55b2aed5fdef6d8253ff1b62179b320391cf20cb5ff48818fe72a0d2c5aacc0504bea63fc66ece71973fa9a7cbc7f88ef4580e99e480a78bf9b62fd\",\"name\":\"scheduler\",\"version\":\"0.27.0\"},\"semver-6.3.1.tgz\":{\"integrity\":\"BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc\",\"name\":\"semver\",\"version\":\"6.3.1\"},\"semver-7.7.4.tgz\":{\"integrity\":\"vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bc5282d8812d427561a53efc875629f30cf0adff0233e33328c1c62597c1b738593727111675ec1e4e84e53c4892432c80d4bb99d5f700607bc7640cd9d8b894\",\"name\":\"semver\",\"version\":\"7.7.4\"},\"set-cookie-parser-2.7.2.tgz\":{\"integrity\":\"oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a1e33596953f52f853c70fa0ddc21fc571f225173fba275ddf22b53f6e368331ddb34b9d401633b37cbc8f8802096f9927b69dd3272d95df1160ef9b76eae5bf\",\"name\":\"set-cookie-parser\",\"version\":\"2.7.2\"},\"set-function-length-1.2.2.tgz\":{\"integrity\":\"pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a6045ce21278fec363582492f409a74b8d31ddb34c0d39271e02f951a3014ccc899d4f741205a1d51cfe302f5e16ee01b8dfd4c198ca42e63fd6fdeb33b1cc7e\",\"name\":\"set-function-length\",\"version\":\"1.2.2\"},\"shebang-command-2.0.0.tgz\":{\"integrity\":\"kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c\",\"name\":\"shebang-command\",\"version\":\"2.0.0\"},\"shebang-regex-3.0.0.tgz\":{\"integrity\":\"7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4\",\"name\":\"shebang-regex\",\"version\":\"3.0.0\"},\"siginfo-2.0.0.tgz\":{\"integrity\":\"ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c9bc7458ed7ff1b4812c459766f11dee0316dd29f7245956dd3bd7d674446c32d135035a78d37c58ad26781c0f74068e23b4ed4514499ff12cd7386bac21eeee\",\"name\":\"siginfo\",\"version\":\"2.0.0\"},\"source-map-0.6.1.tgz\":{\"integrity\":\"UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee\",\"name\":\"source-map\",\"version\":\"0.6.1\"},\"source-map-0.7.6.tgz\":{\"integrity\":\"i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8b9bafb7c0b78a489678d65255935671f64f22d1503ac6135003a47143c677c0ea0f2d6e3948a48ede5d1beb91970caf475d3c15bf4339de06bd77d3d0ddbfb9\",\"name\":\"source-map\",\"version\":\"0.7.6\"},\"source-map-js-1.2.1.tgz\":{\"integrity\":\"UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"51758c2a12cec1529bef6f0852d40f5f17d853ebac7726ed52b2bff2e184f0240cbeb84ea70bf30c1c23d108522fb31073bbc8b084811bc550f3e203431a5f40\",\"name\":\"source-map-js\",\"version\":\"1.2.1\"},\"space-separated-tokens-2.0.2.tgz\":{\"integrity\":\"PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3c41a5030ac6f325c65d18d6df67c66e0eba24094e0306ce6eea95a09a6ffe6460a160d07e01f5c033efb735b25123405c119293c87be796036db704cb7487d9\",\"name\":\"space-separated-tokens\",\"version\":\"2.0.2\"},\"spdx-correct-3.2.0.tgz\":{\"integrity\":\"kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"90df5d25bbe7c921d42c896e0c7cb7d961d152edce83b07db1b63bb6c14b72d42422a9cc877844ad881d3234d8baa99c5d7fa52b94f596752ddc6ef336cc2664\",\"name\":\"spdx-correct\",\"version\":\"3.2.0\"},\"spdx-exceptions-2.5.0.tgz\":{\"integrity\":\"PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3e2538dabfb13b851b512d5bba8dcb3c992394eef8df45e7e5254085da73cec3c7b236d855f9679c57404e069b9cbb9d7be0aabb6e69e8dfa0da5c3f3c5b1ae3\",\"name\":\"spdx-exceptions\",\"version\":\"2.5.0\"},\"spdx-expression-parse-3.0.1.tgz\":{\"integrity\":\"cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1\",\"name\":\"spdx-expression-parse\",\"version\":\"3.0.1\"},\"spdx-license-ids-3.0.23.tgz\":{\"integrity\":\"CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0962dc0821fb54bbb5dd380e1feafca753bf667c21aaffdd6dbea5a96cbaec6fa94f590799e0fff95dfa0156ffbeaf10308430552849e92b25e453e1d1fb9277\",\"name\":\"spdx-license-ids\",\"version\":\"3.0.23\"},\"stackback-0.0.2.tgz\":{\"integrity\":\"1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d573091397d0a358c61fa63fede6e7c0f3811242049d3e10177d9de51d7e557757bde334201309b7ccdf6b15f53f7421570ad87bee7bebe8e400db524b69816f\",\"name\":\"stackback\",\"version\":\"0.0.2\"},\"state-local-1.0.7.tgz\":{\"integrity\":\"HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"1d310730d89e6a4127a1edf7b21058719ecd5fcdc00948c2bbc738d22386119b27823f7346792a4bd8f5a6a40f5f0a1b07465c553936ed111bec2390d14479f7\",\"name\":\"state-local\",\"version\":\"1.0.7\"},\"std-env-4.0.0.tgz\":{\"integrity\":\"zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"cd430fb50fc7058dffe7455ba64ba96076d1ae84d16493d12efade6a6804ac9572b3471ebb33240f8e09fd08ea8478ceccae36190dd06487851b53987ceb4aa9\",\"name\":\"std-env\",\"version\":\"4.0.0\"},\"stringify-entities-4.0.4.tgz\":{\"integrity\":\"IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2307c1a6d6ad94ef90089528d7d02abeb3cdaa554ca56f5810bd8b21563e469bf6aac8c21b16832cd460786b1058985f22d79bb8986c1922e36816cd490fa27a\",\"name\":\"stringify-entities\",\"version\":\"4.0.4\"},\"strip-indent-3.0.0.tgz\":{\"integrity\":\"laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45\",\"name\":\"strip-indent\",\"version\":\"3.0.0\"},\"strip-json-comments-3.1.1.tgz\":{\"integrity\":\"6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a\",\"name\":\"strip-json-comments\",\"version\":\"3.1.1\"},\"style-to-js-1.1.21.tgz\":{\"integrity\":\"RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"46341eb7126bad424b40f1db2e4bba53fa1c1adcf28db24c3fd94234aec083408d87af749d21fcc28a961fdbb5ea732360102893e8bb24ed4d3f6a4ecbc22c3d\",\"name\":\"style-to-js\",\"version\":\"1.1.21\"},\"style-to-object-1.0.14.tgz\":{\"integrity\":\"LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2c837bad42c8d2306c716418692b30a6dc9d7ab95aac592343eb7bf67cedcbcb5c20071e5689845652f31f954fe029acbfa32d2a1b3ba9a022c25729f8c81ac7\",\"name\":\"style-to-object\",\"version\":\"1.0.14\"},\"sucrase-3.35.1.tgz\":{\"integrity\":\"DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0e1b939af656bb1e07d543a758c077b24d2c6da0953a84198eff2ed6b0e84d5d074dd19e9bd864019b65e09672f0fdb3e018349d3f9831e385c95af8cdc1b94f\",\"name\":\"sucrase\",\"version\":\"3.35.1\"},\"supports-color-7.2.0.tgz\":{\"integrity\":\"qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047\",\"name\":\"supports-color\",\"version\":\"7.2.0\"},\"symbol-tree-3.2.4.tgz\":{\"integrity\":\"9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f50364e4ac0317e06fcfe3f239b9264988c8e64b15518b635bb014db6af634a71f2c9717a7dea1903594dfe5e774eb146fe010f5085fcdf093d8ef823564f94f\",\"name\":\"symbol-tree\",\"version\":\"3.2.4\"},\"tailwindcss-4.2.2.tgz\":{\"integrity\":\"KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"296048c6cd576fa3682dd315aa16e183065fd8f181a4f122c0eaa0238a452186cd4df05788a6325a84ec5e0050f56160fce9619ef1da63e004a56ef04a6168d9\",\"name\":\"tailwindcss\",\"version\":\"4.2.2\"},\"tapable-2.3.2.tgz\":{\"integrity\":\"1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d4c3a9317ba11b318be534c264522dc4273400045fd446454241aa326ec444a8fcf8782be682ef24e545702fa546647c8427b64b78c2e13e43ed583f77bfdf84\",\"name\":\"tapable\",\"version\":\"2.3.2\"},\"thenify-3.3.1.tgz\":{\"integrity\":\"RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"455652215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b\",\"name\":\"thenify\",\"version\":\"3.3.1\"},\"thenify-all-1.6.0.tgz\":{\"integrity\":\"RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"44dc501ffa88f3fb77b615c90f072cb543b8cdeaa8eb8f94cbffac355441c785e7d8e5fe399f683fe8899cd16aa6516b6b665455e28249ada85568b74f8b9598\",\"name\":\"thenify-all\",\"version\":\"1.6.0\"},\"tiny-invariant-1.3.3.tgz\":{\"integrity\":\"+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"f856c13c4d68f50018bef89abbfa82e5213771ac36d6adf192f58a06d8dae6f82a3962071c9de2a1aab554f7e7fd2cea72dcf66d4fe861e29df7fcf904bf8f56\",\"name\":\"tiny-invariant\",\"version\":\"1.3.3\"},\"tinybench-2.9.0.tgz\":{\"integrity\":\"0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d3e0d4bea58c55a94b9a16ba96be240fc88030ad47cd5d3f68a9c2b566fdbfdeb8d539cffcc15becf7366f1a314234d7004aebc9756050e7efd98a8d965a867a\",\"name\":\"tinybench\",\"version\":\"2.9.0\"},\"tinyexec-0.3.2.tgz\":{\"integrity\":\"KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"290411f7237b479f8e4b068ad174288f6da9c07a1396062a994b1c3d8a249cea160967e3ff9fc00533118baf45aca5397df3d587941c16292958923f3f5a1c1c\",\"name\":\"tinyexec\",\"version\":\"0.3.2\"},\"tinyexec-1.0.4.tgz\":{\"integrity\":\"u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bbdaf7b990b46dda46397b65c5421dc1ff69926be1a8976b5421fd7daa50b60cbf39e4d3319d67a87eda82dbc47e61ae8ba7b55f18dc76b971bf126f737b0cab\",\"name\":\"tinyexec\",\"version\":\"1.0.4\"},\"tinyglobby-0.2.15.tgz\":{\"integrity\":\"j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8f666ae0dc90606e573124f871bb34d8093c88951dc513345c8e50cb15ee64ecca3883665aeae9dec997bb7cb9c03709ae9b70a528e05c7cc8431474a265e58d\",\"name\":\"tinyglobby\",\"version\":\"0.2.15\"},\"tinyrainbow-3.1.0.tgz\":{\"integrity\":\"Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"05ff882e6060adeb54add271cd73344a05cb6775df89a52e3a3fc82901ee4d78a9fb4e579febb21187558349180e2a5305c2eb095c94cc03f3ed0980adbd269b\",\"name\":\"tinyrainbow\",\"version\":\"3.1.0\"},\"tldts-7.0.27.tgz\":{\"integrity\":\"I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"23815971515ca8246e4f4a61e9d083a4fb8ee17833be1faca64713af580aee9788bf159aba896854ed2fbb2d454278a34fadecb3a02c1c1ebe3883386971db3e\",\"name\":\"tldts\",\"version\":\"7.0.27\"},\"tldts-core-7.0.27.tgz\":{\"integrity\":\"YQ7uPjgWUibIK6DW5lrKujGwUKhLevU4hcGbP5O6TcIUb+oTjJYJVWPS4nZsIHrEEEG6myk/oqAJUEQmpZrHsg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"610eee3e38165226c82ba0d6e65acaba31b050a84b7af53885c19b3f93ba4dc2146fea138c96095563d2e2766c207ac41041ba9b293fa2a009504426a59ac7b2\",\"name\":\"tldts-core\",\"version\":\"7.0.27\"},\"tough-cookie-6.0.1.tgz\":{\"integrity\":\"LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2e4b5941bdc87a851607d96a4791164c7816fd54c84c25e0e03db533e96fc9b45577294bad1327a9a20e34b55be666aff2f335f66e381c8706ab8a8049ebb643\",\"name\":\"tough-cookie\",\"version\":\"6.0.1\"},\"tr46-6.0.0.tgz\":{\"integrity\":\"bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6cb54c2cfb6cb6567888c407a451d347b1801a3da3c62f03834b3687631a7c0138b92585f7c142ff7328994e7589000c7fcfea0d46ca59fe46c6ebef55c5c487\",\"name\":\"tr46\",\"version\":\"6.0.0\"},\"tree-kill-1.2.2.tgz\":{\"integrity\":\"L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2f43aba62f2a1a9446fff35df87f74bc507ede21e7b9ed734921a634e38287518b27bad4295c15d87be28e9846412d949a15197b04bd560bf1608760afe7c6d4\",\"name\":\"tree-kill\",\"version\":\"1.2.2\"},\"trim-lines-3.0.1.tgz\":{\"integrity\":\"kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9118fc07e60764273d91061d59f241dbfa1497dac0f7da9ba3061806daf8ba2e26672010d89a6f54177fe94d989680137ea06105348c853a60047b54d0c7f746\",\"name\":\"trim-lines\",\"version\":\"3.0.1\"},\"trough-2.2.0.tgz\":{\"integrity\":\"tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b663292b4d018d9894c95cafac12bb9277ab3609a0bdc57f28b572ba66bf482f9340dd7aec6acc45c880353cf4f7e937cd6f0bf2deb48d63b51a97e465d8d36b\",\"name\":\"trough\",\"version\":\"2.2.0\"},\"ts-api-utils-2.5.0.tgz\":{\"integrity\":\"OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"389fe26f184f96aacc33452234727fd02290928285db8dff0049a996ddeaa518245bc546ec87ce4b8d61ed5f138c84ea741c87ceb8dc4bfdac8becb894887c34\",\"name\":\"ts-api-utils\",\"version\":\"2.5.0\"},\"ts-interface-checker-0.1.13.tgz\":{\"integrity\":\"Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"63f6abbdb9feaebcf72422a5f42e2454d7d37d29b6fe6129e454b3e44b194803463d2950ae9448e4ce0f285fa6267139da338ef743e73d273752bddb4d0c3480\",\"name\":\"ts-interface-checker\",\"version\":\"0.1.13\"},\"tsup-8.5.1.tgz\":{\"integrity\":\"xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c6d824ab0761a4a5abded28f98292f6264bdc6740ade6dd7831647c12523bdf4e3a7b61f5dee6d4f71a05a2d05d8df9948cb0e796799161ed964583988f8629e\",\"name\":\"tsup\",\"version\":\"8.5.1\"},\"tsx-4.21.0.tgz\":{\"integrity\":\"5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"e42d6c838512b3595f1b41856f644b5ec7695ea05212101a03fd243cbd35c31ce932a2c82cdc48c4838a8882f3f9c760fe92e7394c4560e479ca11d4ebaeb06f\",\"name\":\"tsx\",\"version\":\"4.21.0\"},\"type-check-0.4.0.tgz\":{\"integrity\":\"XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b\",\"name\":\"type-check\",\"version\":\"0.4.0\"},\"typescript-5.9.3.tgz\":{\"integrity\":\"jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"8e5d6f6733c38a72ebf5e52ddc9feded5e8580d130f508ef04f772b33f4a7d00c3e357d0ac2d98e2f290762694a454f86d795bd511e12e9a7cc2d9ba3394e04b\",\"name\":\"typescript\",\"version\":\"5.9.3\"},\"typescript-eslint-8.58.0.tgz\":{\"integrity\":\"e2TQzKfaI85fO+F3QywtX+tCTsu/D3WW5LVU6nz8hTFKFZ8yBJ6mSYRpXqdR3mFjPWmO0eWsTa5f+UpAOe/FMA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7b64d0cca7da23ce5f3be177432c2d5feb424ecbbf0f7596e4b554ea7cfc85314a159f32049ea64984695ea751de61633d698ed1e5ac4dae5ff94a4039efc530\",\"name\":\"typescript-eslint\",\"version\":\"8.58.0\"},\"ufo-1.6.3.tgz\":{\"integrity\":\"yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c832539a1c9dbe5e65273066cbf87238003477e6aa081bb097cd7c85a55d60246b595f38a3b6327959b84255474ada8daeb2524dbea32ae14056a005b2bf8add\",\"name\":\"ufo\",\"version\":\"1.6.3\"},\"uglify-js-3.19.3.tgz\":{\"integrity\":\"v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"bf75eefb2bb00578aca7a4184dc1f851b1fec58257aa7ab69bf2ed41558a5b361cd627a16272e2c6840337d147ebf8fdfe8c9b7dde96f46870925f3e50c29329\",\"name\":\"uglify-js\",\"version\":\"3.19.3\"},\"undici-7.24.6.tgz\":{\"integrity\":\"Xi4agocCbRzt0yYMZGMA6ApD7gvtUFaxm4ZmeacWI4cZxaF6C+8I8QfofC20NAePiB/IcvZmzkJ7XPa471AEtA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e2e1a8287026d1cedd3260c646300e80a43ee0bed5056b19b866679a716238719c5a17a0bef08f107e87c2db434078f881fc872f666ce427b5cf6b8ef5004b4\",\"name\":\"undici\",\"version\":\"7.24.6\"},\"undici-types-7.16.0.tgz\":{\"integrity\":\"Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"673f9a6564a3f0b13ace8c43fb1ae387855f9081bc61ae8bbd8919aad5101893d98d8979df2a42694c16aa8ede234c7ae8a046791a3e9a504490c49e499dfc37\",\"name\":\"undici-types\",\"version\":\"7.16.0\"},\"unified-11.0.5.tgz\":{\"integrity\":\"xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c4abc684f5b0de4f3842387c6c8dd97898ea9f269d2be18416d6b349f66ffeb29e4e44e3389868ea616a87648cf7a888719a24c623a983bf066b34d283cf8a1c\",\"name\":\"unified\",\"version\":\"11.0.5\"},\"unist-util-is-6.0.1.tgz\":{\"integrity\":\"LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2ec8882dbb41113903cfc23da75750d2ec91516b9a43377f72e11e4b5868452c96e44e571a64f39706353ab373cda906a3023d0ebfc8f0755ac38853b67c72f2\",\"name\":\"unist-util-is\",\"version\":\"6.0.1\"},\"unist-util-position-5.0.0.tgz\":{\"integrity\":\"fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"7ee72c0bb1e35ef901e51de44c23bb9148d176b4b4049b7733f14fc661cc04e9bc2508b606c1c01c5b32dbb13412894ff2ba743735ec27e8cd3f20d6bce2593c\",\"name\":\"unist-util-position\",\"version\":\"5.0.0\"},\"unist-util-stringify-position-4.0.0.tgz\":{\"integrity\":\"0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d00495d3a000a0a083912dbec70e515c9cb0aeebaba5b0b82594a6ee7afb30eb75a23033bf2c9a3be53165fd7c8fc14217a926cc264a70080dff2bb6826d9781\",\"name\":\"unist-util-stringify-position\",\"version\":\"4.0.0\"},\"unist-util-visit-5.1.0.tgz\":{\"integrity\":\"m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9bebc87727823a976bfd07900aed84cf15ffa21812f0a6e73c38059e2e1d42c7d20ada73f14a83c98e468d1aeef0f0cab989fb16ad7d8f5090fa7252b0628ece\",\"name\":\"unist-util-visit\",\"version\":\"5.1.0\"},\"unist-util-visit-parents-6.0.2.tgz\":{\"integrity\":\"goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"828875b354c1aea4aaba449cf30ae3c1684bd21889c6003c9b8905c46950fbc1584370bf9b5d45713b386187a6ed5ebae0084756f82840b93cf744ac76caf621\",\"name\":\"unist-util-visit-parents\",\"version\":\"6.0.2\"},\"update-browserslist-db-1.2.3.tgz\":{\"integrity\":\"Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"26cd26f5cc7ea8e803c68d1e32214612e796cedcfe778f8cdeb1a598a3d3f93e084bf8cfe32970dcdc29bba7294d33fc4753000b5905e156dd2eddc045fdb4f7\",\"name\":\"update-browserslist-db\",\"version\":\"1.2.3\"},\"uri-js-4.4.1.tgz\":{\"integrity\":\"7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06\",\"name\":\"uri-js\",\"version\":\"4.4.1\"},\"use-sync-external-store-1.6.0.tgz\":{\"integrity\":\"Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"3e9e864b018ffcdacf22bc551402243907b2c3c9457a73878a34169144eb0efac5e002eaca53f60bf28291e4bd76950cdcabd84508676b9bedec82fde7e650f7\",\"name\":\"use-sync-external-store\",\"version\":\"1.6.0\"},\"util-0.12.5.tgz\":{\"integrity\":\"kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"9197ff2ba84422b58723a5ea38552288c6beefdc04fc3f10f8d08d0167259328376f877693bb344067a936388005cf9a4773753c0c872fba7a51c2d8e8b9ab9c\",\"name\":\"util\",\"version\":\"0.12.5\"},\"validate-npm-package-license-3.0.4.tgz\":{\"integrity\":\"DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13\",\"name\":\"validate-npm-package-license\",\"version\":\"3.0.4\"},\"vfile-6.0.3.tgz\":{\"integrity\":\"KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2b321b1fff6d5dab76bb7d237feb26330142b27a38c0755d366cc5c8bf93fcbdd41aaaa4e8929f56a3853991296521c00c7d64e3469be8d5085d9ab8db6a2fdd\",\"name\":\"vfile\",\"version\":\"6.0.3\"},\"vfile-message-4.0.3.tgz\":{\"integrity\":\"QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"4131f3b067751216d9b3802c436d095f5ac2ddc3a5b7f21626bba4f3ddc37cb46be7b95c9ce78c6961b82b426b46d6b89882592ad87602ede6337bb4dff2562b\",\"name\":\"vfile-message\",\"version\":\"4.0.3\"},\"victory-vendor-37.3.6.tgz\":{\"integrity\":\"SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"49b3c33dd0c1629fb93091e104203223bc0a3377798af7a48a07360e4dacee981b67dc08808058195c38cc61c19a5fea4c56dec6ba1f5d6e86bb89e81b1acec1\",\"name\":\"victory-vendor\",\"version\":\"37.3.6\"},\"vite-7.3.1.tgz\":{\"integrity\":\"w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c3e37b1e27e97378118d9eb7bd8057039e9dbef46535645ccd376608105af82a2d53300f7f96fb60c74c47ff024287981392d7dd6e308fa4584e0a279b56fd0c\",\"name\":\"vite\",\"version\":\"7.3.1\"},\"vitest-4.1.2.tgz\":{\"integrity\":\"xjR1dMTVHlFLh98JE3i/f/WePqJsah4A0FK9cc8Ehp9Udk0AZk6ccpIZhh1qJ/yxVWRZ+Q54ocnD8TXmkhspGg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"c6347574c4d51e514b87df091378bf7ff59e3ea26c6a1e00d052bd71cf04869f54764d00664e9c729219861d6a27fcb1556459f90e78a1c9c3f135e6921b291a\",\"name\":\"vitest\",\"version\":\"4.1.2\"},\"void-elements-3.1.0.tgz\":{\"integrity\":\"Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"0e1c738791d9ba21d085bbd35bd00c7ad15f0470cc629a36dd4a3d6ed3d781d60ffb74f94bea7e8e0372eeca6b6bebde62104fd9d09283147f8b6634da1e7feb\",\"name\":\"void-elements\",\"version\":\"3.1.0\"},\"w3c-xmlserializer-5.0.0.tgz\":{\"integrity\":\"o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"a3caa086523c3591d4d652cfae98b6f94abb69b8781863e96003656a5cd6c725ad789382b2bfcffa83c1038f5338bbb915364ee1ddc5f4c9d625f88ca3806498\",\"name\":\"w3c-xmlserializer\",\"version\":\"5.0.0\"},\"walk-up-path-4.0.0.tgz\":{\"integrity\":\"3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"de1bbeb43f18cd22c6b8562d3d16f8f2f76128c8b4290579b27fae5abf3eedd304abfd86fddb4badd0e29e42e3aaae5321b2018d8278031fe7dd889a5bb40cf0\",\"name\":\"walk-up-path\",\"version\":\"4.0.0\"},\"webidl-conversions-8.0.1.tgz\":{\"integrity\":\"BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"04c84b0ff4b0f866c90b6d42fd48326995f8d673edf1b51383e8d6c837a0edeed8378c4e334e583d221771e0029d756dab2130fcb30295440cb4c67e3c61a9a9\",\"name\":\"webidl-conversions\",\"version\":\"8.0.1\"},\"whatwg-mimetype-5.0.0.tgz\":{\"integrity\":\"sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"b1770d707382e75b8f185d0ffc3e0d56dae48d25367cdb26f62a20e19bd926c2f7ae3a030335d98649b6316b75cbe3d476080a01856830021872cefcc09e750b\",\"name\":\"whatwg-mimetype\",\"version\":\"5.0.0\"},\"whatwg-url-16.0.1.tgz\":{\"integrity\":\"1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"d6da38cd70719971d5dc8892484227aeb78896ed36bd43afae1c49247e6f731613043031e7572a66229dc93c6579c74a3528e3f04731181c4d7fa560fbde3983\",\"name\":\"whatwg-url\",\"version\":\"16.0.1\"},\"which-2.0.2.tgz\":{\"integrity\":\"BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c\",\"name\":\"which\",\"version\":\"2.0.2\"},\"which-typed-array-1.1.20.tgz\":{\"integrity\":\"LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2d87e95249aac25d21f40d872f4f4c9ace36ed0d51656b8e1ecba47d570a46af6af79890c5dc348b1d4942ba9b70347d3c7d500f07f9428f0e65be6592c67c5e\",\"name\":\"which-typed-array\",\"version\":\"1.1.20\"},\"why-is-node-running-2.3.0.tgz\":{\"integrity\":\"hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"854ae669605d543731bd8aa7ca1d3dcee9cacd13968db65388dcbc741123912ede8440d089b5c9ed7be59ad6f0b9372552223237e0b25d00f8566928f1f366f3\",\"name\":\"why-is-node-running\",\"version\":\"2.3.0\"},\"wkx-0.5.0.tgz\":{\"integrity\":\"Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"5e783f77821c861f2e378974153a15ff6e7c12330653d306700d0757677d07f669641de5a909bb9e439d65d9b91a12ad2cb84013b3e2550c0de1e37ed9824952\",\"name\":\"wkx\",\"version\":\"0.5.0\"},\"word-wrap-1.2.5.tgz\":{\"integrity\":\"BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"04ddb607979a30c23d50cb63ac677983978260fa423c3532d052576d8b1a4f9cd8c6314e7244b9dd2403137a56915a16a475d56f706b61c10de13c1ae7907970\",\"name\":\"word-wrap\",\"version\":\"1.2.5\"},\"wordwrap-1.0.0.tgz\":{\"integrity\":\"gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"82f57324594fc9c29ce5d64de323e43fcc3b0dcdfb06d3f5c9ccc49de39be2eab7e295d972faed45399657c5be5267be5c2c4a81b8ccfa77af93214f3326dde1\",\"name\":\"wordwrap\",\"version\":\"1.0.0\"},\"xml-name-validator-5.0.0.tgz\":{\"integrity\":\"EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"12f18af042770e16877db465113396012e693bd31921379ab87289c9bf30c9a8d47d051e9e4220d8cbcb0d36784ff4e021c9b71d4d1314181659ba00677d141e\",\"name\":\"xml-name-validator\",\"version\":\"5.0.0\"},\"xmlchars-2.2.0.tgz\":{\"integrity\":\"JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"2599c328af01d11083c3ce0535d0c022964af89b89c3eb3b2f3f2792c23b488b94dd45c926c954b61b22fae5815183b03c5c16ed6ecf44b45f50aa718ed8c50b\",\"name\":\"xmlchars\",\"version\":\"2.2.0\"},\"yallist-3.1.1.tgz\":{\"integrity\":\"a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6b850641a58f1f9f663975189c01b67b09dc412e22e05e374efdc9a0033eb365430264bd36c2bc1a90cc2eb0873e4b054fb8772ba4cea14367da96fb4685f1e2\",\"name\":\"yallist\",\"version\":\"3.1.1\"},\"yocto-queue-0.1.0.tgz\":{\"integrity\":\"rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9\",\"name\":\"yocto-queue\",\"version\":\"0.1.0\"},\"zod-4.3.6.tgz\":{\"integrity\":\"rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"adfb65ae484764e7230f090696752d65992f68f1c2b03013a78a46a6e38e3036937430d717dd70b950c9a16a0fb0a5ffdd83d0e5f1ee1774938dc6322abf9086\",\"name\":\"zod\",\"version\":\"4.3.6\"},\"zod-validation-error-4.0.2.tgz\":{\"integrity\":\"Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"43afe764b7ba8f1b94f34a9bff8b89e2de6fd95119e389734233c385824dced450e30c9673a545dc3dca6ff7c0b8f7ad6509e14b78676a309ff42b167ac8212d\",\"name\":\"zod-validation-error\",\"version\":\"4.0.2\"},\"zustand-4.5.7.tgz\":{\"integrity\":\"CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"087394cbb9aede56c3ea8e8b24b7e59698e4ce11d7481957f01f7ea8f75d52c21f785e52fd4679ab49260ac9d1a93d541c54197213450c3ccc6d0b2e7ac1d697\",\"name\":\"zustand\",\"version\":\"4.5.7\"},\"zwitch-2.0.4.tgz\":{\"integrity\":\"bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==\",\"integrity_algo\":\"sha512\",\"integrity_digest\":\"6d7138711fe455984a657fd18cf11f94768a56151597ce67a14defe9bf1aa5f404735c7803ecc1c6367894df0ba8677a599ddd97df29638a3bd7b5459a83e9f8\",\"name\":\"zwitch\",\"version\":\"2.0.4\"}},\"store_version\":\"v10\"}", + "dest-filename": "pnpm-manifest.json", + "dest": "flatpak-node" + }, + { + "type": "script", + "commands": [ + "version=$(node --version | sed \"s/^v//\")", + "nodedir=$(dirname \"$(dirname \"$(which node)\")\")", + "mkdir -p \"flatpak-node/cache/node-gyp/$version\"", + "ln -s \"$nodedir/include\" \"flatpak-node/cache/node-gyp/$version/include\"", + "echo 11 > \"flatpak-node/cache/node-gyp/$version/installVersion\"" + ], + "dest-filename": "setup_sdk_node_headers.sh", + "dest": "flatpak-node" + }, + { + "type": "shell", + "commands": [ + "mkdir -p \"bin/@esbuild\"", + "cp \".package/@esbuild/linux-arm64@0.27.4/bin/esbuild\" \"bin/@esbuild/linux-arm64@0.27.4\"", + "ln -sf \"@esbuild/linux-arm64@0.27.4\" \"bin/esbuild-current\"" + ], + "dest": "flatpak-node/cache/esbuild", + "only-arches": [ + "aarch64" + ] + }, + { + "type": "shell", + "commands": [ + "mkdir -p \"bin/@esbuild\"", + "cp \".package/@esbuild/linux-arm@0.27.4/bin/esbuild\" \"bin/@esbuild/linux-arm@0.27.4\"", + "ln -sf \"@esbuild/linux-arm@0.27.4\" \"bin/esbuild-current\"" + ], + "dest": "flatpak-node/cache/esbuild", + "only-arches": [ + "arm" + ] + }, + { + "type": "shell", + "commands": [ + "mkdir -p \"bin/@esbuild\"", + "cp \".package/@esbuild/linux-ia32@0.27.4/bin/esbuild\" \"bin/@esbuild/linux-ia32@0.27.4\"", + "ln -sf \"@esbuild/linux-ia32@0.27.4\" \"bin/esbuild-current\"" + ], + "dest": "flatpak-node/cache/esbuild", + "only-arches": [ + "i386" + ] + }, + { + "type": "shell", + "commands": [ + "mkdir -p \"bin/@esbuild\"", + "cp \".package/@esbuild/linux-x64@0.27.4/bin/esbuild\" \"bin/@esbuild/linux-x64@0.27.4\"", + "ln -sf \"@esbuild/linux-x64@0.27.4\" \"bin/esbuild-current\"" + ], + "dest": "flatpak-node/cache/esbuild", + "only-arches": [ + "x86_64" + ] + }, + { + "type": "shell", + "commands": [ + "python3 flatpak-node/populate_pnpm_store.py flatpak-node/pnpm-manifest.json flatpak-node/pnpm-tarballs flatpak-node/pnpm-store", + "echo \"store-dir=$PWD/flatpak-node/pnpm-store\" >> .npmrc", + "bash flatpak-node/setup_sdk_node_headers.sh" + ] + } +] \ No newline at end of file