Big update

pyrox.dev 1e1d49f6 f66ad83e

verified
+22
.achecker.yml
···
+
ruleArchive: latest
+
policies:
+
- IBM_Accessibility_next
+
- WCAG_2_2
+
+
failLevels:
+
- violation
+
- potentialviolation
+
+
reportLevels:
+
- violation
+
- potentialviolation
+
- recommendation
+
- potenticalrecommendation
+
+
outputFormat:
+
- json
+
+
outputFilenameTimestamp: true
+
outputFolder: accessibility-results/
+
baselineFolder: test/baselines
+
cacheFolder: /tmp/accessibility-checker
+2
.env.dev
···
export LUME_DRAFTS="true"
export PRODUCTION="false"
+
PUPPETEER_BROWSER=chrome-headless-shell
+
export PUPPETEER_EXECUTABLE_PATH=$PWD/temp.sh
+2
.gitignore
···
_cache
.direnv/bin
.direnv
+
accessibility-results/
+
temp.sh
+5 -1
_config.ts
···
// Additional external plugins
import toc from "lume_markdown_plugins/toc.ts";
-
import footnotes from "./plugins/footnotes.ts";
import slugify from "npm:@sindresorhus/slugify";
// CSS
···
// Custom Plugins
import validateHTML from "./plugins/validateHTML.ts";
import openInEditor from "./plugins/openInEditor.ts";
+
import footnotes from "./plugins/footnotes.ts";
+
import checkAccessibility from "./plugins/checkAccessibility.ts";
// Disabled Plugins:
// import nav from "lume/plugins/nav.ts";
···
});
// Copy Static Files
+
site.ignore("/static/mocha.css");
site.add(".css");
site.add("static/.well-known", ".well-known");
site.add(".woff2");
···
// Applies to CSS and JS
site.use(sourceMaps());
+
site.use(checkAccessibility());
site.use(validateHTML());
site.data("production", Deno.env.get("PRODUCTION") == "true");
···
if (Deno.env.get("PRODUCTION") == "false") {
site.use(openInEditor());
site.add("static/scripts/open-in-editor.js");
+
site.add("static/scripts/highlight-accessibility.js");
}
// This only applies in prod mode
+10 -4
deno.json
···
{
"imports": {
"@nolebase/markdown-it-bi-directional-links": "npm:@nolebase/markdown-it-bi-directional-links@^2.15.1",
-
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/",
+
"accessibility-checker": "npm:accessibility-checker@^4.0.4",
+
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/",
"markdown-it-obsidian-callouts": "https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts",
"html-validate": "npm:html-validate@9.5.2",
"lume_markdown_plugins/": "https://deno.land/x/lume_markdown_plugins@v0.8.0/",
"sharp": "npm:sharp@0.33.5",
-
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.8/jsx-runtime.ts"
+
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.9/jsx-runtime.ts"
},
"tasks": {
-
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev --unstable-ffi -A -",
+
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev --unstable-ffi --unstable-detect-cjs -A -",
"prod": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.prod -A -",
"build": "deno task lume",
"serve": "deno task lume -s ",
···
},
"unstable": [
"temporal"
-
]
+
],
+
"lint": {
+
"plugins": [
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/lint.ts"
+
]
+
}
}
+1992 -40
deno.lock
···
"specifiers": {
"jsr:@davidbonnet/astring@1.8.6": "1.8.6",
"jsr:@luca/esbuild-deno-loader@0.11.1": "0.11.1",
+
"jsr:@minify-html/deno@0.16.4": "0.16.4",
"jsr:@std/bytes@^1.0.2": "1.0.5",
+
"jsr:@std/bytes@^1.0.5": "1.0.5",
"jsr:@std/cli@1.0.16": "1.0.16",
"jsr:@std/cli@^1.0.16": "1.0.16",
"jsr:@std/collections@^1.0.10": "1.0.10",
···
"jsr:@std/http@1.0.14": "1.0.14",
"jsr:@std/json@1": "1.0.1",
"jsr:@std/jsonc@1.0.1": "1.0.1",
+
"jsr:@std/media-types@1.1.0": "1.1.0",
"jsr:@std/media-types@^1.1.0": "1.1.0",
"jsr:@std/net@^1.0.4": "1.0.4",
"jsr:@std/path@1.0.8": "1.0.8",
"jsr:@std/path@^1.0.6": "1.0.8",
"jsr:@std/path@^1.0.8": "1.0.8",
+
"jsr:@std/streams@1.0.9": "1.0.9",
"jsr:@std/streams@^1.0.9": "1.0.9",
"jsr:@std/toml@1.0.4": "1.0.4",
"jsr:@std/toml@^1.0.3": "1.0.4",
···
"jsr:@std/yaml@^1.0.5": "1.0.5",
"npm:@nolebase/markdown-it-bi-directional-links@^2.15.1": "2.16.0_markdown-it@14.1.0",
"npm:@sindresorhus/slugify@*": "2.2.1",
+
"npm:@tailwindcss/oxide@4.0.3": "4.0.3",
+
"npm:@tailwindcss/oxide@4.1.4": "4.1.4",
"npm:@types/estree@1.0.6": "1.0.6",
"npm:@types/node@*": "22.12.0",
+
"npm:accessibility-checker@*": "4.0.4",
+
"npm:accessibility-checker@^4.0.4": "4.0.4",
+
"npm:date-fns@4.1.0": "4.1.0",
+
"npm:dprint@*": "0.49.1",
"npm:estree-walker@3.0.3": "3.0.3",
"npm:html-validate@9.5.2": "9.5.2_ajv@8.17.1",
+
"npm:ico-endec@0.1.6": "0.1.6",
"npm:lightningcss-wasm@1.29.3": "1.29.3",
"npm:markdown-it-attrs@4.3.1": "4.3.1_markdown-it@14.1.0",
"npm:markdown-it-deflist@3.0.0": "3.0.0",
"npm:markdown-it@14.1.0": "14.1.0",
"npm:meriyah@6.0.5": "6.0.5",
-
"npm:sharp@0.33.5": "0.33.5"
+
"npm:puppeteer@*": "22.15.0",
+
"npm:remove-markdown@0.6.0": "0.6.0",
+
"npm:sharp@0.33.5": "0.33.5",
+
"npm:sharp@0.34.1": "0.34.1",
+
"npm:svg2png-wasm@1.4.1": "1.4.1",
+
"npm:svgo@3.3.2": "3.3.2",
+
"npm:tailwindcss@4.1.4": "4.1.4"
},
"jsr": {
"@davidbonnet/astring@1.8.6": {
···
"@luca/esbuild-deno-loader@0.11.1": {
"integrity": "dc020d16d75b591f679f6b9288b10f38bdb4f24345edb2f5732affa1d9885267",
"dependencies": [
-
"jsr:@std/bytes",
+
"jsr:@std/bytes@^1.0.2",
"jsr:@std/encoding@^1.0.5",
"jsr:@std/path@^1.0.6"
]
+
},
+
"@minify-html/deno@0.16.4": {
+
"integrity": "8d4bb62fef045a3959f62b82dd41e26ee1b2cf45be47b90e1d18d21b8277e695"
},
"@std/bytes@1.0.5": {
"integrity": "4465dd739d7963d964c809202ebea6d5c6b8e3829ef25c6a224290fbb8a1021e"
···
"jsr:@std/encoding@^1.0.9",
"jsr:@std/fmt@^1.0.6",
"jsr:@std/html@^1.0.3",
-
"jsr:@std/media-types",
+
"jsr:@std/media-types@^1.1.0",
"jsr:@std/net",
"jsr:@std/path@^1.0.8",
-
"jsr:@std/streams"
+
"jsr:@std/streams@^1.0.9"
]
},
"@std/json@1.0.1": {
···
"integrity": "548fa456bb6a04d3c1a1e7477986b6cffbce95102d0bb447c67c4ee70e0364be"
},
"@std/streams@1.0.9": {
-
"integrity": "a9d26b1988cdd7aa7b1f4b51e1c36c1557f3f252880fa6cc5b9f37078b1a5035"
+
"integrity": "a9d26b1988cdd7aa7b1f4b51e1c36c1557f3f252880fa6cc5b9f37078b1a5035",
+
"dependencies": [
+
"jsr:@std/bytes@^1.0.5"
+
]
},
"@std/toml@1.0.4": {
"integrity": "8781e687d04c8fbe246b9c5714be01925792a94d943462c33777675ab557cff1",
···
}
},
"npm": {
+
"@babel/code-frame@7.26.2": {
+
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+
"dependencies": [
+
"@babel/helper-validator-identifier",
+
"js-tokens",
+
"picocolors"
+
]
+
},
+
"@babel/helper-validator-identifier@7.25.9": {
+
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="
+
},
+
"@dprint/darwin-arm64@0.49.1": {
+
"integrity": "sha512-ib6KcJWo/M5RJWXOQKhP664FG1hAvG7nrbkh+j8n+oXdzmbyDdXTP+zW+aM3/sIQUkGaZky1xy1j2VeScMEEHQ=="
+
},
+
"@dprint/darwin-x64@0.49.1": {
+
"integrity": "sha512-vIVgnYxV7YYa1d6Uyz707RbgB9rwefGPam+rzaueFNPQjdOxPOTQDuMEJDS+Z3BlI00MfeoupIfIUGsXoM4dpQ=="
+
},
+
"@dprint/linux-arm64-glibc@0.49.1": {
+
"integrity": "sha512-ZeIh6qMPWLBBifDtU0XadpK36b4WoaTqCOt0rWKfoTjq1RAt78EgqETWp43Dbr6et/HvTgYdoWF0ZNEu2FJFFA=="
+
},
+
"@dprint/linux-arm64-musl@0.49.1": {
+
"integrity": "sha512-/nuRyx+TykN6MqhlSCRs/t3o1XXlikiwTc9emWdzMeLGllYvJrcht9gRJ1/q1SqwCFhzgnD9H7roxxfji1tc+Q=="
+
},
+
"@dprint/linux-riscv64-glibc@0.49.1": {
+
"integrity": "sha512-RHBqrnvGO+xW4Oh0QuToBqWtkXMcfjqa1TqbBFF03yopFzZA2oRKX83PhjTWgd/IglaOns0BgmaLJy/JBSxOfQ=="
+
},
+
"@dprint/linux-x64-glibc@0.49.1": {
+
"integrity": "sha512-MjFE894mIQXOKBencuakKyzAI4KcDe/p0Y9lRp9YSw/FneR4QWH9VBH90h8fRxcIlWMArjFFJJAtsBnn5qgxeg=="
+
},
+
"@dprint/linux-x64-musl@0.49.1": {
+
"integrity": "sha512-CvGBWOksHgrL1uzYqtPFvZz0+E82BzgoCIEHJeuYaveEn37qWZS5jqoCm/vz6BfoivE1dVuyyOT78Begj9KxkQ=="
+
},
+
"@dprint/win32-arm64@0.49.1": {
+
"integrity": "sha512-gQa4s82lMcXjfdxjWBQun6IJlXdPZZaIj2/2cqXWVEOYPKxAZ/JvGzt2pPG+i73h9KHjNLIV8M9ckqEH3oHufg=="
+
},
+
"@dprint/win32-x64@0.49.1": {
+
"integrity": "sha512-nPU6+hoVze5JJlgET7woYWElBw0IUaB/9XKTaglknQuUUfsmD75D9pkgJTxdIxl9Bg/i5O7c9wb3Nj4XNiTIfw=="
+
},
+
"@emnapi/core@1.4.3": {
+
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
+
"dependencies": [
+
"@emnapi/wasi-threads",
+
"tslib"
+
]
+
},
"@emnapi/runtime@1.4.3": {
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
"dependencies": [
"tslib"
]
},
+
"@emnapi/wasi-threads@1.0.2": {
+
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"@fast-csv/format@4.3.5": {
+
"integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.isboolean",
+
"lodash.isequal",
+
"lodash.isfunction",
+
"lodash.isnil"
+
]
+
},
+
"@fast-csv/parse@4.3.6": {
+
"integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.groupby",
+
"lodash.isfunction",
+
"lodash.isnil",
+
"lodash.isundefined",
+
"lodash.uniq"
+
]
+
},
"@html-validate/stylish@4.2.0": {
"integrity": "sha512-Nl8HCv0hGRSLQ+n1OD4Hk3a+Urwk9HH0vQkAzzCarT4KlA7bRl+6xEiS5PZVwOmjtC7XiH/oNe3as9Fxcr2A1w==",
"dependencies": [
···
"@img/sharp-darwin-arm64@0.33.5": {
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
"dependencies": [
-
"@img/sharp-libvips-darwin-arm64"
+
"@img/sharp-libvips-darwin-arm64@1.0.4"
+
]
+
},
+
"@img/sharp-darwin-arm64@0.34.1": {
+
"integrity": "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.1.0"
]
},
"@img/sharp-darwin-x64@0.33.5": {
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
"dependencies": [
-
"@img/sharp-libvips-darwin-x64"
+
"@img/sharp-libvips-darwin-x64@1.0.4"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.1": {
+
"integrity": "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64@1.1.0"
]
},
"@img/sharp-libvips-darwin-arm64@1.0.4": {
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="
},
+
"@img/sharp-libvips-darwin-arm64@1.1.0": {
+
"integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA=="
+
},
"@img/sharp-libvips-darwin-x64@1.0.4": {
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="
},
+
"@img/sharp-libvips-darwin-x64@1.1.0": {
+
"integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ=="
+
},
"@img/sharp-libvips-linux-arm64@1.0.4": {
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="
},
+
"@img/sharp-libvips-linux-arm64@1.1.0": {
+
"integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew=="
+
},
"@img/sharp-libvips-linux-arm@1.0.5": {
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="
},
+
"@img/sharp-libvips-linux-arm@1.1.0": {
+
"integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA=="
+
},
+
"@img/sharp-libvips-linux-ppc64@1.1.0": {
+
"integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ=="
+
},
"@img/sharp-libvips-linux-s390x@1.0.4": {
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="
},
+
"@img/sharp-libvips-linux-s390x@1.1.0": {
+
"integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA=="
+
},
"@img/sharp-libvips-linux-x64@1.0.4": {
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="
},
+
"@img/sharp-libvips-linux-x64@1.1.0": {
+
"integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q=="
+
},
"@img/sharp-libvips-linuxmusl-arm64@1.0.4": {
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0": {
+
"integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w=="
},
"@img/sharp-libvips-linuxmusl-x64@1.0.4": {
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="
},
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0": {
+
"integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A=="
+
},
"@img/sharp-linux-arm64@0.33.5": {
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm64"
+
"@img/sharp-libvips-linux-arm64@1.0.4"
+
]
+
},
+
"@img/sharp-linux-arm64@0.34.1": {
+
"integrity": "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64@1.1.0"
]
},
"@img/sharp-linux-arm@0.33.5": {
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm"
+
"@img/sharp-libvips-linux-arm@1.0.5"
+
]
+
},
+
"@img/sharp-linux-arm@0.34.1": {
+
"integrity": "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm@1.1.0"
]
},
"@img/sharp-linux-s390x@0.33.5": {
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
"dependencies": [
-
"@img/sharp-libvips-linux-s390x"
+
"@img/sharp-libvips-linux-s390x@1.0.4"
+
]
+
},
+
"@img/sharp-linux-s390x@0.34.1": {
+
"integrity": "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x@1.1.0"
]
},
"@img/sharp-linux-x64@0.33.5": {
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
"dependencies": [
-
"@img/sharp-libvips-linux-x64"
+
"@img/sharp-libvips-linux-x64@1.0.4"
+
]
+
},
+
"@img/sharp-linux-x64@0.34.1": {
+
"integrity": "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.1.0"
]
},
"@img/sharp-linuxmusl-arm64@0.33.5": {
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-arm64"
+
"@img/sharp-libvips-linuxmusl-arm64@1.0.4"
+
]
+
},
+
"@img/sharp-linuxmusl-arm64@0.34.1": {
+
"integrity": "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0"
]
},
"@img/sharp-linuxmusl-x64@0.33.5": {
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-x64"
+
"@img/sharp-libvips-linuxmusl-x64@1.0.4"
+
]
+
},
+
"@img/sharp-linuxmusl-x64@0.34.1": {
+
"integrity": "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0"
]
},
"@img/sharp-wasm32@0.33.5": {
···
"@emnapi/runtime"
]
},
+
"@img/sharp-wasm32@0.34.1": {
+
"integrity": "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==",
+
"dependencies": [
+
"@emnapi/runtime"
+
]
+
},
"@img/sharp-win32-ia32@0.33.5": {
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="
+
},
+
"@img/sharp-win32-ia32@0.34.1": {
+
"integrity": "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw=="
},
"@img/sharp-win32-x64@0.33.5": {
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="
},
+
"@img/sharp-win32-x64@0.34.1": {
+
"integrity": "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw=="
+
},
"@isaacs/cliui@8.0.2": {
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dependencies": [
···
"wrap-ansi-cjs@npm:wrap-ansi@7.0.0"
]
},
+
"@napi-rs/wasm-runtime@0.2.9": {
+
"integrity": "sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime",
+
"@tybys/wasm-util"
+
]
+
},
"@nolebase/markdown-it-bi-directional-links@2.16.0_markdown-it@14.1.0": {
"integrity": "sha512-oVNAK3Tzpgl37xtXPvDvtEVqQhKX3unrLlki2jEncdHFs7rvVO+Ob6FC9hgoLe364WqN6uDUgqvdzJMh+c1dpw==",
"dependencies": [
"colorette",
-
"debug",
+
"debug@4.4.0",
"markdown-it",
"tinyglobby"
]
···
"@pkgjs/parseargs@0.11.0": {
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
},
+
"@puppeteer/browsers@2.3.0": {
+
"integrity": "sha512-ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==",
+
"dependencies": [
+
"debug@4.4.0",
+
"extract-zip",
+
"progress",
+
"proxy-agent",
+
"semver",
+
"tar-fs",
+
"unbzip2-stream",
+
"yargs"
+
]
+
},
"@sidvind/better-ajv-errors@4.0.0_ajv@8.17.1": {
"integrity": "sha512-rLZQkN6IfNwG6iqZZwqFMcs7DvQX3ZrLVhsHmSO1LUA4EZAz+VZLpTBCIOFsC5Qu3xuwzVfRMZ+1rtk/mCRRZw==",
"dependencies": [
···
"escape-string-regexp"
]
},
+
"@tailwindcss/oxide-android-arm64@4.0.3": {
+
"integrity": "sha512-S8XOTQuMnpijZRlPm5HBzPJjZ28quB+40LSRHjRnQF6rRYKsvpr1qkY7dfwsetNdd+kMLOMDsvmuT8WnqqETvg=="
+
},
+
"@tailwindcss/oxide-android-arm64@4.1.4": {
+
"integrity": "sha512-xMMAe/SaCN/vHfQYui3fqaBDEXMu22BVwQ33veLc8ep+DNy7CWN52L+TTG9y1K397w9nkzv+Mw+mZWISiqhmlA=="
+
},
+
"@tailwindcss/oxide-darwin-arm64@4.0.3": {
+
"integrity": "sha512-smrY2DpzhXvgDhZtQlYAl8+vxJ04lv2/64C1eiRxvsRT2nkw/q+zA1/eAYKvUHat6cIuwqDku3QucmrUT6pCeg=="
+
},
+
"@tailwindcss/oxide-darwin-arm64@4.1.4": {
+
"integrity": "sha512-JGRj0SYFuDuAGilWFBlshcexev2hOKfNkoX+0QTksKYq2zgF9VY/vVMq9m8IObYnLna0Xlg+ytCi2FN2rOL0Sg=="
+
},
+
"@tailwindcss/oxide-darwin-x64@4.0.3": {
+
"integrity": "sha512-NTz8x/LcGUjpZAWUxz0ZuzHao90Wj9spoQgomwB+/hgceh5gcJDfvaBYqxLFpKzVglpnbDSq1Fg0p0zI4oa5Pg=="
+
},
+
"@tailwindcss/oxide-darwin-x64@4.1.4": {
+
"integrity": "sha512-sdDeLNvs3cYeWsEJ4H1DvjOzaGios4QbBTNLVLVs0XQ0V95bffT3+scptzYGPMjm7xv4+qMhCDrkHwhnUySEzA=="
+
},
+
"@tailwindcss/oxide-freebsd-x64@4.0.3": {
+
"integrity": "sha512-yQc9Q0JCOp3kkAV8gKgDctXO60IkQhHpqGB+KgOccDtD5UmN6Q5+gd+lcsDyQ7N8dRuK1fAud51xQpZJgKfm7g=="
+
},
+
"@tailwindcss/oxide-freebsd-x64@4.1.4": {
+
"integrity": "sha512-VHxAqxqdghM83HslPhRsNhHo91McsxRJaEnShJOMu8mHmEj9Ig7ToHJtDukkuLWLzLboh2XSjq/0zO6wgvykNA=="
+
},
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.3": {
+
"integrity": "sha512-e1ivVMLSnxTOU1O3npnxN16FEyWM/g3SuH2pP6udxXwa0/SnSAijRwcAYRpqIlhVKujr158S8UeHxQjC4fGl4w=="
+
},
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4": {
+
"integrity": "sha512-OTU/m/eV4gQKxy9r5acuesqaymyeSCnsx1cFto/I1WhPmi5HDxX1nkzb8KYBiwkHIGg7CTfo/AcGzoXAJBxLfg=="
+
},
+
"@tailwindcss/oxide-linux-arm64-gnu@4.0.3": {
+
"integrity": "sha512-PLrToqQqX6sdJ9DmMi8IxZWWrfjc9pdi9AEEPTrtMts3Jm9HBi1WqEeF1VwZZ2aW9TXloE5OwA35zuuq1Bhb/Q=="
+
},
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4": {
+
"integrity": "sha512-hKlLNvbmUC6z5g/J4H+Zx7f7w15whSVImokLPmP6ff1QqTVE+TxUM9PGuNsjHvkvlHUtGTdDnOvGNSEUiXI1Ww=="
+
},
+
"@tailwindcss/oxide-linux-arm64-musl@4.0.3": {
+
"integrity": "sha512-YlzRxx7N1ampfgSKzEDw0iwDkJXUInR4cgNEqmR4TzHkU2Vhg59CGPJrTI7dxOBofD8+O35R13Nk9Ytyv0JUFg=="
+
},
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4": {
+
"integrity": "sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw=="
+
},
+
"@tailwindcss/oxide-linux-x64-gnu@4.0.3": {
+
"integrity": "sha512-Xfc3z/li6XkuD7Hs+Uk6pjyCXnfnd9zuQTKOyDTZJ544xc2yoMKUkuDw6Et9wb31MzU2/c0CIUpTDa71lL9KHw=="
+
},
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4": {
+
"integrity": "sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ=="
+
},
+
"@tailwindcss/oxide-linux-x64-musl@4.0.3": {
+
"integrity": "sha512-ugKVqKzwa/cjmqSQG17aS9DYrEcQ/a5NITcgmOr3JLW4Iz64C37eoDlkC8tIepD3S/Td/ywKAolTQ8fKbjEL4g=="
+
},
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4": {
+
"integrity": "sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ=="
+
},
+
"@tailwindcss/oxide-wasm32-wasi@4.1.4": {
+
"integrity": "sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime",
+
"@emnapi/wasi-threads",
+
"@napi-rs/wasm-runtime",
+
"@tybys/wasm-util",
+
"tslib"
+
]
+
},
+
"@tailwindcss/oxide-win32-arm64-msvc@4.0.3": {
+
"integrity": "sha512-qHPDMl+UUwsk1RMJMgAXvhraWqUUT+LR/tkXix5RA39UGxtTrHwsLIN1AhNxI5i2RFXAXfmFXDqZCdyQ4dWmAQ=="
+
},
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4": {
+
"integrity": "sha512-VlnhfilPlO0ltxW9/BgfLI5547PYzqBMPIzRrk4W7uupgCt8z6Trw/tAj6QUtF2om+1MH281Pg+HHUJoLesmng=="
+
},
+
"@tailwindcss/oxide-win32-x64-msvc@4.0.3": {
+
"integrity": "sha512-+ujwN4phBGyOsPyLgGgeCyUm4Mul+gqWVCIGuSXWgrx9xVUnf6LVXrw0BDBc9Aq1S2qMyOTX4OkCGbZeoIo8Qw=="
+
},
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4": {
+
"integrity": "sha512-+7S63t5zhYjslUGb8NcgLpFXD+Kq1F/zt5Xv5qTv7HaFTG/DHyHD9GA6ieNAxhgyA4IcKa/zy7Xx4Oad2/wuhw=="
+
},
+
"@tailwindcss/oxide@4.0.3": {
+
"integrity": "sha512-FFcp3VNvRjjmFA39ORM27g2mbflMQljhvM7gxBAujHxUy4LXlKa6yMF9wbHdTbPqTONiCyyOYxccvJyVyI/XBg==",
+
"dependencies": [
+
"@tailwindcss/oxide-android-arm64@4.0.3",
+
"@tailwindcss/oxide-darwin-arm64@4.0.3",
+
"@tailwindcss/oxide-darwin-x64@4.0.3",
+
"@tailwindcss/oxide-freebsd-x64@4.0.3",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.3",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.0.3",
+
"@tailwindcss/oxide-linux-arm64-musl@4.0.3",
+
"@tailwindcss/oxide-linux-x64-gnu@4.0.3",
+
"@tailwindcss/oxide-linux-x64-musl@4.0.3",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.0.3",
+
"@tailwindcss/oxide-win32-x64-msvc@4.0.3"
+
]
+
},
+
"@tailwindcss/oxide@4.1.4": {
+
"integrity": "sha512-p5wOpXyOJx7mKh5MXh5oKk+kqcz8T+bA3z/5VWWeQwFrmuBItGwz8Y2CHk/sJ+dNb9B0nYFfn0rj/cKHZyjahQ==",
+
"dependencies": [
+
"@tailwindcss/oxide-android-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-x64@4.1.4",
+
"@tailwindcss/oxide-freebsd-x64@4.1.4",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4",
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4",
+
"@tailwindcss/oxide-wasm32-wasi",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4",
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4"
+
]
+
},
+
"@testim/chrome-version@1.1.4": {
+
"integrity": "sha512-kIhULpw9TrGYnHp/8VfdcneIcxKnLixmADtukQRtJUmsVlMg0niMkwV0xZmi8hqa57xqilIHjWFA0GKvEjVU5g=="
+
},
+
"@tootallnate/quickjs-emscripten@0.23.0": {
+
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="
+
},
+
"@trysound/sax@0.2.0": {
+
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
+
},
+
"@tybys/wasm-util@0.9.0": {
+
"integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+
"dependencies": [
+
"tslib"
+
]
+
},
"@types/estree@1.0.6": {
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
+
"@types/node@14.18.63": {
+
"integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="
+
},
"@types/node@22.12.0": {
"integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==",
"dependencies": [
"undici-types"
]
+
},
+
"@types/yauzl@2.10.3": {
+
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
+
"dependencies": [
+
"@types/node@22.12.0"
+
]
+
},
+
"accessibility-checker@4.0.4": {
+
"integrity": "sha512-+Vg9BUBKMsjqwH3iDqU/j6zSbvHHsQleXzmsHeM+eXXlrytmCZn+3cxSFYwiJ/8HMx3LSrFX9A4m2YQ3dheAMw==",
+
"dependencies": [
+
"chromedriver",
+
"deep-diff",
+
"exceljs",
+
"js-yaml",
+
"puppeteer",
+
"string-hash"
+
]
+
},
+
"agent-base@7.1.3": {
+
"integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw=="
},
"ajv@8.17.1": {
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
···
"ansi-styles@6.2.1": {
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
},
+
"archiver-utils@2.1.0": {
+
"integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
+
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
+
"normalize-path",
+
"readable-stream@2.3.8"
+
]
+
},
+
"archiver-utils@3.0.4": {
+
"integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==",
+
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
+
"normalize-path",
+
"readable-stream@3.6.2"
+
]
+
},
+
"archiver@5.3.2": {
+
"integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==",
+
"dependencies": [
+
"archiver-utils@2.1.0",
+
"async",
+
"buffer-crc32",
+
"readable-stream@3.6.2",
+
"readdir-glob",
+
"tar-stream@2.2.0",
+
"zip-stream"
+
]
+
},
"argparse@2.0.1": {
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
+
"ast-types@0.13.4": {
+
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"async@3.2.6": {
+
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
+
},
+
"asynckit@0.4.0": {
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+
},
+
"axios@1.9.0": {
+
"integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==",
+
"dependencies": [
+
"follow-redirects",
+
"form-data",
+
"proxy-from-env"
+
]
+
},
+
"b4a@1.6.7": {
+
"integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg=="
+
},
"balanced-match@1.0.2": {
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
+
"bare-events@2.5.4": {
+
"integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA=="
+
},
+
"bare-fs@4.1.2_bare-events@2.5.4": {
+
"integrity": "sha512-8wSeOia5B7LwD4+h465y73KOdj5QHsbbuoUfPBi+pXgFJIPuG7SsiOdJuijWMyfid49eD+WivpfY7KT8gbAzBA==",
+
"dependencies": [
+
"bare-events",
+
"bare-path",
+
"bare-stream"
+
]
+
},
+
"bare-os@3.6.1": {
+
"integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g=="
+
},
+
"bare-path@3.0.0": {
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
+
"dependencies": [
+
"bare-os"
+
]
+
},
+
"bare-stream@2.6.5_bare-events@2.5.4": {
+
"integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==",
+
"dependencies": [
+
"bare-events",
+
"streamx"
+
]
+
},
+
"base64-js@1.5.1": {
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+
},
+
"basic-ftp@5.0.5": {
+
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg=="
+
},
+
"big-integer@1.6.52": {
+
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg=="
+
},
+
"binary@0.3.0": {
+
"integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==",
+
"dependencies": [
+
"buffers",
+
"chainsaw"
+
]
+
},
+
"bl@4.1.0": {
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+
"dependencies": [
+
"buffer",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
+
},
+
"bluebird@3.4.7": {
+
"integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA=="
+
},
+
"boolbase@1.0.0": {
+
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
+
},
+
"brace-expansion@1.1.11": {
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+
"dependencies": [
+
"balanced-match",
+
"concat-map"
+
]
+
},
"brace-expansion@2.0.1": {
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": [
"balanced-match"
]
},
+
"buffer-crc32@0.2.13": {
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="
+
},
+
"buffer-indexof-polyfill@1.0.2": {
+
"integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A=="
+
},
+
"buffer@5.7.1": {
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+
"dependencies": [
+
"base64-js",
+
"ieee754"
+
]
+
},
+
"buffers@0.1.1": {
+
"integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="
+
},
+
"call-bind-apply-helpers@1.0.2": {
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+
"dependencies": [
+
"es-errors",
+
"function-bind"
+
]
+
},
+
"callsites@3.1.0": {
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+
},
+
"chainsaw@0.1.0": {
+
"integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==",
+
"dependencies": [
+
"traverse"
+
]
+
},
+
"chromedriver@135.0.4": {
+
"integrity": "sha512-x0DESUcvCfKydljOCTQUve6f0+78Vq71FHcAMmdzBoWzAnyzB+2Fd2PouGRoJJkqk/vgfNzCiuwFosT0hnIjEg==",
+
"dependencies": [
+
"@testim/chrome-version",
+
"axios",
+
"compare-versions",
+
"extract-zip",
+
"proxy-agent",
+
"proxy-from-env",
+
"tcp-port-used"
+
]
+
},
+
"chromium-bidi@0.6.3_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-qXlsCmpCZJAnoTYI83Iu6EdYQpMYdVkCfq08KDh2pmlVqK5t5IA9mGs4/LwCwp4fqisSOMXZxP3HIh8w8aRn0A==",
+
"dependencies": [
+
"devtools-protocol",
+
"mitt",
+
"urlpattern-polyfill",
+
"zod"
+
]
+
},
+
"cliui@8.0.1": {
+
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+
"dependencies": [
+
"string-width@4.2.3",
+
"strip-ansi@6.0.1",
+
"wrap-ansi@7.0.0"
+
]
+
},
"color-convert@2.0.1": {
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": [
···
"colorette@2.0.20": {
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
},
+
"combined-stream@1.0.8": {
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+
"dependencies": [
+
"delayed-stream"
+
]
+
},
+
"commander@7.2.0": {
+
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
+
},
+
"compare-versions@6.1.1": {
+
"integrity": "sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg=="
+
},
+
"compress-commons@4.1.2": {
+
"integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==",
+
"dependencies": [
+
"buffer-crc32",
+
"crc32-stream",
+
"normalize-path",
+
"readable-stream@3.6.2"
+
]
+
},
+
"concat-map@0.0.1": {
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
+
},
+
"core-util-is@1.0.3": {
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+
},
+
"cosmiconfig@9.0.0": {
+
"integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
+
"dependencies": [
+
"env-paths",
+
"import-fresh",
+
"js-yaml",
+
"parse-json"
+
]
+
},
+
"crc-32@1.2.2": {
+
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
+
},
+
"crc32-stream@4.0.3": {
+
"integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==",
+
"dependencies": [
+
"crc-32",
+
"readable-stream@3.6.2"
+
]
+
},
"cross-spawn@7.0.6": {
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dependencies": [
···
"which"
]
},
+
"css-select@5.1.0": {
+
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
+
"dependencies": [
+
"boolbase",
+
"css-what",
+
"domhandler",
+
"domutils",
+
"nth-check"
+
]
+
},
+
"css-tree@2.2.1": {
+
"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
+
"dependencies": [
+
"mdn-data@2.0.28",
+
"source-map-js"
+
]
+
},
+
"css-tree@2.3.1": {
+
"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
+
"dependencies": [
+
"mdn-data@2.0.30",
+
"source-map-js"
+
]
+
},
+
"css-what@6.1.0": {
+
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
+
},
+
"csso@5.0.5": {
+
"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
+
"dependencies": [
+
"css-tree@2.2.1"
+
]
+
},
+
"data-uri-to-buffer@6.0.2": {
+
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw=="
+
},
+
"date-fns@4.1.0": {
+
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg=="
+
},
+
"dayjs@1.11.13": {
+
"integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
+
},
+
"debug@4.3.1": {
+
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
+
"dependencies": [
+
"ms@2.1.2"
+
]
+
},
"debug@4.4.0": {
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"dependencies": [
-
"ms"
+
"ms@2.1.3"
]
},
+
"deep-diff@1.0.2": {
+
"integrity": "sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg=="
+
},
+
"deep-is@0.1.4": {
+
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
+
},
+
"degenerator@5.0.1": {
+
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
+
"dependencies": [
+
"ast-types",
+
"escodegen",
+
"esprima"
+
]
+
},
+
"delayed-stream@1.0.0": {
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
+
},
"detect-libc@2.0.4": {
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="
},
+
"devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA=="
+
},
+
"dom-serializer@2.0.0": {
+
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+
"dependencies": [
+
"domelementtype",
+
"domhandler",
+
"entities"
+
]
+
},
+
"domelementtype@2.3.0": {
+
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
+
},
+
"domhandler@5.0.3": {
+
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+
"dependencies": [
+
"domelementtype"
+
]
+
},
+
"domutils@3.2.2": {
+
"integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
+
"dependencies": [
+
"dom-serializer",
+
"domelementtype",
+
"domhandler"
+
]
+
},
+
"dprint@0.49.1": {
+
"integrity": "sha512-pO9XH79SyXybj2Vhc9ITZMEI8cJkdlQQRoD8oEfPH6Jjpp/7WX5kIgECVd3DBOjjAdCSiW6R47v3gJBx/qZVkw==",
+
"dependencies": [
+
"@dprint/darwin-arm64",
+
"@dprint/darwin-x64",
+
"@dprint/linux-arm64-glibc",
+
"@dprint/linux-arm64-musl",
+
"@dprint/linux-riscv64-glibc",
+
"@dprint/linux-x64-glibc",
+
"@dprint/linux-x64-musl",
+
"@dprint/win32-arm64",
+
"@dprint/win32-x64"
+
]
+
},
+
"dunder-proto@1.0.1": {
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-errors",
+
"gopd"
+
]
+
},
+
"duplexer2@0.1.4": {
+
"integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
"eastasianwidth@0.2.0": {
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
···
"emoji-regex@9.2.2": {
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
+
"end-of-stream@1.4.4": {
+
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+
"dependencies": [
+
"once"
+
]
+
},
"entities@4.5.0": {
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
},
+
"env-paths@2.2.1": {
+
"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="
+
},
+
"error-ex@1.3.2": {
+
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+
"dependencies": [
+
"is-arrayish@0.2.1"
+
]
+
},
+
"es-define-property@1.0.1": {
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
+
},
+
"es-errors@1.3.0": {
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
+
},
+
"es-object-atoms@1.1.1": {
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+
"dependencies": [
+
"es-errors"
+
]
+
},
+
"es-set-tostringtag@2.1.0": {
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+
"dependencies": [
+
"es-errors",
+
"get-intrinsic",
+
"has-tostringtag",
+
"hasown"
+
]
+
},
+
"escalade@3.2.0": {
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="
+
},
"escape-string-regexp@5.0.0": {
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
+
},
+
"escodegen@2.1.0": {
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
+
"dependencies": [
+
"esprima",
+
"estraverse",
+
"esutils",
+
"source-map"
+
]
+
},
+
"esprima@4.0.1": {
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+
},
+
"estraverse@5.3.0": {
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
},
"estree-walker@3.0.3": {
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
···
"@types/estree"
]
},
+
"esutils@2.0.3": {
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
+
},
+
"exceljs@4.4.0": {
+
"integrity": "sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==",
+
"dependencies": [
+
"archiver",
+
"dayjs",
+
"fast-csv",
+
"jszip",
+
"readable-stream@3.6.2",
+
"saxes",
+
"tmp",
+
"unzipper",
+
"uuid"
+
]
+
},
+
"extract-zip@2.0.1": {
+
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+
"dependencies": [
+
"@types/yauzl",
+
"debug@4.4.0",
+
"get-stream",
+
"yauzl"
+
]
+
},
+
"fast-csv@4.3.6": {
+
"integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==",
+
"dependencies": [
+
"@fast-csv/format",
+
"@fast-csv/parse"
+
]
+
},
"fast-deep-equal@3.1.3": {
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+
},
+
"fast-fifo@1.3.2": {
+
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
},
"fast-uri@3.0.6": {
"integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="
},
+
"fd-slicer@1.1.0": {
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
+
"dependencies": [
+
"pend"
+
]
+
},
"fdir@6.4.4_picomatch@4.0.2": {
"integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==",
"dependencies": [
"picomatch"
]
},
+
"follow-redirects@1.15.9": {
+
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="
+
},
"foreground-child@3.3.1": {
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dependencies": [
···
"signal-exit"
]
},
+
"form-data@4.0.2": {
+
"integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==",
+
"dependencies": [
+
"asynckit",
+
"combined-stream",
+
"es-set-tostringtag",
+
"mime-types"
+
]
+
},
+
"fs-constants@1.0.0": {
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
+
},
+
"fs.realpath@1.0.0": {
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+
},
+
"fstream@1.0.12": {
+
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
+
"dependencies": [
+
"graceful-fs",
+
"inherits",
+
"mkdirp",
+
"rimraf"
+
]
+
},
+
"function-bind@1.1.2": {
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
+
},
+
"get-caller-file@2.0.5": {
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
+
},
+
"get-intrinsic@1.3.0": {
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-define-property",
+
"es-errors",
+
"es-object-atoms",
+
"function-bind",
+
"get-proto",
+
"gopd",
+
"has-symbols",
+
"hasown",
+
"math-intrinsics"
+
]
+
},
+
"get-proto@1.0.1": {
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+
"dependencies": [
+
"dunder-proto",
+
"es-object-atoms"
+
]
+
},
+
"get-stream@5.2.0": {
+
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+
"dependencies": [
+
"pump"
+
]
+
},
+
"get-uri@6.0.4": {
+
"integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==",
+
"dependencies": [
+
"basic-ftp",
+
"data-uri-to-buffer",
+
"debug@4.4.0"
+
]
+
},
"glob@10.4.5": {
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dependencies": [
"foreground-child",
"jackspeak",
-
"minimatch",
+
"minimatch@9.0.5",
"minipass",
"package-json-from-dist",
"path-scurry"
]
},
+
"glob@7.2.3": {
+
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+
"dependencies": [
+
"fs.realpath",
+
"inflight",
+
"inherits",
+
"minimatch@3.1.2",
+
"once",
+
"path-is-absolute"
+
]
+
},
+
"gopd@1.2.0": {
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
+
},
+
"graceful-fs@4.2.11": {
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
+
},
+
"has-symbols@1.1.0": {
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
+
},
+
"has-tostringtag@1.0.2": {
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+
"dependencies": [
+
"has-symbols"
+
]
+
},
+
"hasown@2.0.2": {
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+
"dependencies": [
+
"function-bind"
+
]
+
},
"html-validate@9.5.2_ajv@8.17.1": {
"integrity": "sha512-YXJfMprAZYiA6Nc09REC/4wURTCc8sd2MF59U0dto3ZSKqzkUoTGcy/3Tu7kJrLFdiYoKwoOvqQVL/N+sN5MMQ==",
"dependencies": [
"@html-validate/stylish",
"@sidvind/better-ajv-errors",
"ajv",
-
"glob",
+
"glob@10.4.5",
"kleur@4.1.5",
"minimist",
"prompts",
"semver"
]
},
+
"http-proxy-agent@7.0.2": {
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.0"
+
]
+
},
+
"https-proxy-agent@7.0.6": {
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.0"
+
]
+
},
+
"ico-endec@0.1.6": {
+
"integrity": "sha512-ZdLU38ZoED3g1j3iEyzcQj+wAkY2xfWNkymszfJPoxucIUhK7NayQ+/C4Kv0nDFMIsbtbEHldv3V8PU494/ueQ=="
+
},
+
"ieee754@1.2.1": {
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+
},
+
"immediate@3.0.6": {
+
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
+
},
+
"import-fresh@3.3.1": {
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+
"dependencies": [
+
"parent-module",
+
"resolve-from"
+
]
+
},
+
"inflight@1.0.6": {
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+
"dependencies": [
+
"once",
+
"wrappy"
+
]
+
},
+
"inherits@2.0.4": {
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+
},
+
"ip-address@9.0.5": {
+
"integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
+
"dependencies": [
+
"jsbn",
+
"sprintf-js"
+
]
+
},
+
"ip-regex@4.3.0": {
+
"integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q=="
+
},
+
"is-arrayish@0.2.1": {
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
+
},
"is-arrayish@0.3.2": {
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
},
"is-fullwidth-code-point@3.0.0": {
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
+
"is-url@1.2.4": {
+
"integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+
},
+
"is2@2.0.9": {
+
"integrity": "sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==",
+
"dependencies": [
+
"deep-is",
+
"ip-regex",
+
"is-url"
+
]
+
},
+
"isarray@1.0.0": {
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
+
},
"isexe@2.0.0": {
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
···
"@pkgjs/parseargs"
]
},
+
"js-tokens@4.0.0": {
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+
},
+
"js-yaml@4.1.0": {
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+
"dependencies": [
+
"argparse"
+
]
+
},
+
"jsbn@1.1.0": {
+
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="
+
},
+
"json-parse-even-better-errors@2.3.1": {
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
+
},
"json-schema-traverse@1.0.0": {
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
+
},
+
"jszip@3.10.1": {
+
"integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
+
"dependencies": [
+
"lie",
+
"pako",
+
"readable-stream@2.3.8",
+
"setimmediate"
+
]
},
"kleur@3.0.3": {
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
···
"kleur@4.1.5": {
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
},
+
"lazystream@1.0.1": {
+
"integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
+
"lie@3.3.0": {
+
"integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+
"dependencies": [
+
"immediate"
+
]
+
},
"lightningcss-wasm@1.29.3": {
"integrity": "sha512-j02QNSRVBKxsSBinpSCgx3x8XwwOoO50ekDO1O5rBf+dS0j46qSojv+3BDzMNCaGFJ18EjcnXGDkG3ImIbU/PQ==",
"dependencies": [
"napi-wasm"
]
},
+
"lines-and-columns@1.2.4": {
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
+
},
"linkify-it@5.0.0": {
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
"dependencies": [
"uc.micro"
]
},
+
"listenercount@1.0.1": {
+
"integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ=="
+
},
+
"lodash.defaults@4.2.0": {
+
"integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ=="
+
},
+
"lodash.difference@4.5.0": {
+
"integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA=="
+
},
+
"lodash.escaperegexp@4.1.2": {
+
"integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw=="
+
},
+
"lodash.flatten@4.4.0": {
+
"integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g=="
+
},
+
"lodash.groupby@4.6.0": {
+
"integrity": "sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw=="
+
},
+
"lodash.isboolean@3.0.3": {
+
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+
},
+
"lodash.isequal@4.5.0": {
+
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
+
},
+
"lodash.isfunction@3.0.9": {
+
"integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw=="
+
},
+
"lodash.isnil@4.0.0": {
+
"integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng=="
+
},
+
"lodash.isplainobject@4.0.6": {
+
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+
},
+
"lodash.isundefined@3.0.1": {
+
"integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA=="
+
},
+
"lodash.union@4.6.0": {
+
"integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw=="
+
},
+
"lodash.uniq@4.5.0": {
+
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
+
},
"lru-cache@10.4.3": {
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
+
},
+
"lru-cache@7.18.3": {
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="
},
"markdown-it-attrs@4.3.1_markdown-it@14.1.0": {
"integrity": "sha512-/ko6cba+H6gdZ0DOw7BbNMZtfuJTRp9g/IrGIuz8lYc/EfnmWRpaR3CFPnNbVz0LDvF8Gf1hFGPqrQqq7De0rg==",
···
"uc.micro"
]
},
+
"math-intrinsics@1.1.0": {
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="
+
},
+
"mdn-data@2.0.28": {
+
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
+
},
+
"mdn-data@2.0.30": {
+
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
+
},
"mdurl@2.0.0": {
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
},
"meriyah@6.0.5": {
"integrity": "sha512-SrMqQCox7TTwtftWKHy/ZaVe+ZRpRl20pAgDo+PS9hzcAJrMjYsBJQPPiLXTnjztrqdfGS+Zz99r6Bwvydta1w=="
},
+
"mime-db@1.52.0": {
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
+
},
+
"mime-types@2.1.35": {
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+
"dependencies": [
+
"mime-db"
+
]
+
},
+
"minimatch@3.1.2": {
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+
"dependencies": [
+
"brace-expansion@1.1.11"
+
]
+
},
+
"minimatch@5.1.6": {
+
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+
"dependencies": [
+
"brace-expansion@2.0.1"
+
]
+
},
"minimatch@9.0.5": {
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dependencies": [
-
"brace-expansion"
+
"brace-expansion@2.0.1"
]
},
"minimist@1.2.8": {
···
"minipass@7.1.2": {
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
},
+
"mitt@3.0.1": {
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
+
},
+
"mkdirp@0.5.6": {
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+
"dependencies": [
+
"minimist"
+
]
+
},
+
"ms@2.1.2": {
+
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+
},
"ms@2.1.3": {
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"napi-wasm@1.1.3": {
"integrity": "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="
},
+
"netmask@2.0.2": {
+
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="
+
},
+
"normalize-path@3.0.0": {
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+
},
+
"nth-check@2.1.1": {
+
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+
"dependencies": [
+
"boolbase"
+
]
+
},
+
"once@1.4.0": {
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+
"dependencies": [
+
"wrappy"
+
]
+
},
+
"pac-proxy-agent@7.2.0": {
+
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
+
"dependencies": [
+
"@tootallnate/quickjs-emscripten",
+
"agent-base",
+
"debug@4.4.0",
+
"get-uri",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"pac-resolver",
+
"socks-proxy-agent"
+
]
+
},
+
"pac-resolver@7.0.1": {
+
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
+
"dependencies": [
+
"degenerator",
+
"netmask"
+
]
+
},
"package-json-from-dist@1.0.1": {
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
},
+
"pako@1.0.11": {
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+
},
+
"parent-module@1.0.1": {
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+
"dependencies": [
+
"callsites"
+
]
+
},
+
"parse-json@5.2.0": {
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+
"dependencies": [
+
"@babel/code-frame",
+
"error-ex",
+
"json-parse-even-better-errors",
+
"lines-and-columns"
+
]
+
},
+
"path-is-absolute@1.0.1": {
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
+
},
"path-key@3.1.1": {
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
},
"path-scurry@1.11.1": {
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": [
-
"lru-cache",
+
"lru-cache@10.4.3",
"minipass"
]
},
+
"pend@1.2.0": {
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
+
},
+
"picocolors@1.1.1": {
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+
},
"picomatch@4.0.2": {
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="
},
+
"process-nextick-args@2.0.1": {
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+
},
+
"progress@2.0.3": {
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
+
},
"prompts@2.4.2": {
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dependencies": [
···
"sisteransi"
]
},
+
"proxy-agent@6.5.0": {
+
"integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.0",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"lru-cache@7.18.3",
+
"pac-proxy-agent",
+
"proxy-from-env",
+
"socks-proxy-agent"
+
]
+
},
+
"proxy-from-env@1.1.0": {
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
+
},
+
"pump@3.0.2": {
+
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
+
"dependencies": [
+
"end-of-stream",
+
"once"
+
]
+
},
"punycode.js@2.3.1": {
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
},
+
"puppeteer-core@22.15.0_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-cHArnywCiAAVXa3t4GGL2vttNxh7GqXtIYGym99egkNJ3oG//wL9LkvO4WE8W1TJe95t1F1ocu9X4xWaGsOKOA==",
+
"dependencies": [
+
"@puppeteer/browsers",
+
"chromium-bidi",
+
"debug@4.4.0",
+
"devtools-protocol",
+
"ws"
+
]
+
},
+
"puppeteer@22.15.0": {
+
"integrity": "sha512-XjCY1SiSEi1T7iSYuxS82ft85kwDJUS7wj1Z0eGVXKdtr5g4xnVcbjwxhq5xBnpK/E7x1VZZoJDxpjAOasHT4Q==",
+
"dependencies": [
+
"@puppeteer/browsers",
+
"cosmiconfig",
+
"devtools-protocol",
+
"puppeteer-core"
+
]
+
},
+
"readable-stream@2.3.8": {
+
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+
"dependencies": [
+
"core-util-is",
+
"inherits",
+
"isarray",
+
"process-nextick-args",
+
"safe-buffer@5.1.2",
+
"string_decoder@1.1.1",
+
"util-deprecate"
+
]
+
},
+
"readable-stream@3.6.2": {
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+
"dependencies": [
+
"inherits",
+
"string_decoder@1.3.0",
+
"util-deprecate"
+
]
+
},
+
"readdir-glob@1.1.3": {
+
"integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
+
"dependencies": [
+
"minimatch@5.1.6"
+
]
+
},
+
"remove-markdown@0.6.0": {
+
"integrity": "sha512-B9g8yo5Zp1wXfZ77M1RLpqI7xrBBERkp7+3/Btm9N/uZV5xhXZjzIxDbCKz7CSj141lWDuCnQuH12DKLUv4Ghw=="
+
},
+
"require-directory@2.1.1": {
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
+
},
"require-from-string@2.0.2": {
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
},
+
"resolve-from@4.0.0": {
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+
},
+
"rimraf@2.7.1": {
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+
"dependencies": [
+
"glob@7.2.3"
+
]
+
},
+
"safe-buffer@5.1.2": {
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+
},
+
"safe-buffer@5.2.1": {
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+
},
+
"saxes@5.0.1": {
+
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
+
"dependencies": [
+
"xmlchars"
+
]
+
},
"semver@7.7.1": {
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="
},
+
"setimmediate@1.0.5": {
+
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
+
},
"sharp@0.33.5": {
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
"dependencies": [
-
"@img/sharp-darwin-arm64",
-
"@img/sharp-darwin-x64",
-
"@img/sharp-libvips-darwin-arm64",
-
"@img/sharp-libvips-darwin-x64",
-
"@img/sharp-libvips-linux-arm",
-
"@img/sharp-libvips-linux-arm64",
-
"@img/sharp-libvips-linux-s390x",
-
"@img/sharp-libvips-linux-x64",
-
"@img/sharp-libvips-linuxmusl-arm64",
-
"@img/sharp-libvips-linuxmusl-x64",
-
"@img/sharp-linux-arm",
-
"@img/sharp-linux-arm64",
-
"@img/sharp-linux-s390x",
-
"@img/sharp-linux-x64",
-
"@img/sharp-linuxmusl-arm64",
-
"@img/sharp-linuxmusl-x64",
-
"@img/sharp-wasm32",
-
"@img/sharp-win32-ia32",
-
"@img/sharp-win32-x64",
+
"@img/sharp-darwin-arm64@0.33.5",
+
"@img/sharp-darwin-x64@0.33.5",
+
"@img/sharp-libvips-darwin-arm64@1.0.4",
+
"@img/sharp-libvips-darwin-x64@1.0.4",
+
"@img/sharp-libvips-linux-arm@1.0.5",
+
"@img/sharp-libvips-linux-arm64@1.0.4",
+
"@img/sharp-libvips-linux-s390x@1.0.4",
+
"@img/sharp-libvips-linux-x64@1.0.4",
+
"@img/sharp-libvips-linuxmusl-arm64@1.0.4",
+
"@img/sharp-libvips-linuxmusl-x64@1.0.4",
+
"@img/sharp-linux-arm@0.33.5",
+
"@img/sharp-linux-arm64@0.33.5",
+
"@img/sharp-linux-s390x@0.33.5",
+
"@img/sharp-linux-x64@0.33.5",
+
"@img/sharp-linuxmusl-arm64@0.33.5",
+
"@img/sharp-linuxmusl-x64@0.33.5",
+
"@img/sharp-wasm32@0.33.5",
+
"@img/sharp-win32-ia32@0.33.5",
+
"@img/sharp-win32-x64@0.33.5",
+
"color",
+
"detect-libc",
+
"semver"
+
]
+
},
+
"sharp@0.34.1": {
+
"integrity": "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==",
+
"dependencies": [
+
"@img/sharp-darwin-arm64@0.34.1",
+
"@img/sharp-darwin-x64@0.34.1",
+
"@img/sharp-libvips-darwin-arm64@1.1.0",
+
"@img/sharp-libvips-darwin-x64@1.1.0",
+
"@img/sharp-libvips-linux-arm@1.1.0",
+
"@img/sharp-libvips-linux-arm64@1.1.0",
+
"@img/sharp-libvips-linux-ppc64",
+
"@img/sharp-libvips-linux-s390x@1.1.0",
+
"@img/sharp-libvips-linux-x64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0",
+
"@img/sharp-linux-arm@0.34.1",
+
"@img/sharp-linux-arm64@0.34.1",
+
"@img/sharp-linux-s390x@0.34.1",
+
"@img/sharp-linux-x64@0.34.1",
+
"@img/sharp-linuxmusl-arm64@0.34.1",
+
"@img/sharp-linuxmusl-x64@0.34.1",
+
"@img/sharp-wasm32@0.34.1",
+
"@img/sharp-win32-ia32@0.34.1",
+
"@img/sharp-win32-x64@0.34.1",
"color",
"detect-libc",
"semver"
···
"simple-swizzle@0.2.2": {
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
"dependencies": [
-
"is-arrayish"
+
"is-arrayish@0.3.2"
]
},
"sisteransi@1.0.5": {
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
},
+
"smart-buffer@4.2.0": {
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
+
},
+
"socks-proxy-agent@8.0.5": {
+
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.0",
+
"socks"
+
]
+
},
+
"socks@2.8.4": {
+
"integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==",
+
"dependencies": [
+
"ip-address",
+
"smart-buffer"
+
]
+
},
+
"source-map-js@1.2.1": {
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
+
},
+
"source-map@0.6.1": {
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+
},
+
"sprintf-js@1.1.3": {
+
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
+
},
+
"streamx@2.22.0": {
+
"integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==",
+
"dependencies": [
+
"bare-events",
+
"fast-fifo",
+
"text-decoder"
+
]
+
},
+
"string-hash@1.1.3": {
+
"integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A=="
+
},
"string-width@4.2.3": {
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": [
···
"strip-ansi@7.1.0"
]
},
+
"string_decoder@1.1.1": {
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+
"dependencies": [
+
"safe-buffer@5.1.2"
+
]
+
},
+
"string_decoder@1.3.0": {
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+
"dependencies": [
+
"safe-buffer@5.2.1"
+
]
+
},
"strip-ansi@6.0.1": {
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dependencies": [
···
"ansi-regex@6.1.0"
]
},
+
"svg2png-wasm@1.4.1": {
+
"integrity": "sha512-ZFy1NtwZVAsslaTQoI+/QqX2sg0vjmgJ/jGAuLZZvYcRlndI54hLPiwLC9JzXlFBerfxN5JiS7kpEUG0mrXS3Q=="
+
},
+
"svgo@3.3.2": {
+
"integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
+
"dependencies": [
+
"@trysound/sax",
+
"commander",
+
"css-select",
+
"css-tree@2.3.1",
+
"css-what",
+
"csso",
+
"picocolors"
+
]
+
},
+
"tailwindcss@4.1.4": {
+
"integrity": "sha512-1ZIUqtPITFbv/DxRmDr5/agPqJwF69d24m9qmM1939TJehgY539CtzeZRjbLt5G6fSy/7YqqYsfvoTEw9xUI2A=="
+
},
+
"tar-fs@3.0.8": {
+
"integrity": "sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==",
+
"dependencies": [
+
"bare-fs",
+
"bare-path",
+
"pump",
+
"tar-stream@3.1.7"
+
]
+
},
+
"tar-stream@2.2.0": {
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+
"dependencies": [
+
"bl",
+
"end-of-stream",
+
"fs-constants",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
+
},
+
"tar-stream@3.1.7": {
+
"integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
+
"dependencies": [
+
"b4a",
+
"fast-fifo",
+
"streamx"
+
]
+
},
+
"tcp-port-used@1.0.2": {
+
"integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==",
+
"dependencies": [
+
"debug@4.3.1",
+
"is2"
+
]
+
},
+
"text-decoder@1.2.3": {
+
"integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
+
"dependencies": [
+
"b4a"
+
]
+
},
+
"through@2.3.8": {
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
+
},
"tinyglobby@0.2.13_picomatch@4.0.2": {
"integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==",
"dependencies": [
···
"picomatch"
]
},
+
"tmp@0.2.3": {
+
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="
+
},
+
"traverse@0.3.9": {
+
"integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ=="
+
},
"tslib@2.8.1": {
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"uc.micro@2.1.0": {
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
},
+
"unbzip2-stream@1.4.3": {
+
"integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
+
"dependencies": [
+
"buffer",
+
"through"
+
]
+
},
"undici-types@6.20.0": {
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="
},
+
"unzipper@0.10.14": {
+
"integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==",
+
"dependencies": [
+
"big-integer",
+
"binary",
+
"bluebird",
+
"buffer-indexof-polyfill",
+
"duplexer2",
+
"fstream",
+
"graceful-fs",
+
"listenercount",
+
"readable-stream@2.3.8",
+
"setimmediate"
+
]
+
},
+
"urlpattern-polyfill@10.0.0": {
+
"integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
+
},
+
"util-deprecate@1.0.2": {
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+
},
+
"uuid@8.3.2": {
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
+
},
"which@2.0.2": {
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dependencies": [
···
"string-width@5.1.2",
"strip-ansi@7.1.0"
]
+
},
+
"wrappy@1.0.2": {
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+
},
+
"ws@8.18.1": {
+
"integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w=="
+
},
+
"xmlchars@2.2.0": {
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+
},
+
"y18n@5.0.8": {
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+
},
+
"yargs-parser@21.1.1": {
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
+
},
+
"yargs@17.7.2": {
+
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+
"dependencies": [
+
"cliui",
+
"escalade",
+
"get-caller-file",
+
"require-directory",
+
"string-width@4.2.3",
+
"y18n",
+
"yargs-parser"
+
]
+
},
+
"yauzl@2.10.0": {
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
+
"dependencies": [
+
"buffer-crc32",
+
"fd-slicer"
+
]
+
},
+
"zip-stream@4.1.1": {
+
"integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==",
+
"dependencies": [
+
"archiver-utils@3.0.4",
+
"compress-commons",
+
"readable-stream@3.6.2"
+
]
+
},
+
"zod@3.23.8": {
+
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g=="
}
},
"remote": {
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@006e4aeda5bea28316e0eb98b91ce2da4b59420b/lume-bar.js": "37fa4c70f213095ef49851eec962a5469fa5b431b69c9ff73ac701e19a5ee5d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@d24249e5adfa8c5692aa778e38920b026531d1b8/lume-bar.js": "e9a6fc487dc5bd64b437387bece62a67594622c70a836cf47d59c30f76c43c39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build_worker.ts": "a13a9aa75d85c79768f18d95d8d7b17d5fb7cce0ca4c665fdb76a5f255e575a9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
···
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/site.ts": "fcc6acc7210bbf96875ddd719388e55c6ac55a945e91475cf3a22468313238bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_config.ts": "7552a61a87fdf70401522f50e601d8cf032f100fcbfffc7e3022d72f49279303",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
···
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload.ts": "98d9f9e1d2337f1c6c62e8210019ec3c327ac94af4929ee0d25b35e8cff42cd5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload_client.js": "eb06101148db8499240bdb910167eb25d13e7d7273f60b140ab9c2d4e55490a1",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/transform_images.ts": "000e8ceb653ab399a0a2bd9b152e599994ed8a517c5bb129f710bae3fe7ebd30",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/debugbar.ts": "db2d8eb01b61171ff642bf1a8393f96fa0b279dd54df85de733b287ef5d4ce88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/site.ts": "3f36b7eb1397194e222389673d20063096233f40280d54cc9975e1923e80ef39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/log.ts": "c04403c5fd81bc8c065f86251d233d7869a5730a777898fc62150b8ed44a43b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload_client.js": "30bb4d057ee2b88799bb28329d03d97dee6cc6c565fc811fa6da13e8acae0511",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/debugbar.ts": "85d52c5bcd7f5ef5213e9ab7730f5f5a30a9a59db361e517fae5dfe4f13766c0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/site.ts": "95c194b432fb301cba8722a9e37a9153d0a52ee66e7773433915010fa93d44d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload_client.js": "3712a605f695e97a7b72e86728f1aedb23e7a2fd732ae4adecf5fd6b510ab7eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.5/dom.js": "13a19df209f72e0548623233ddfd06c16ec56cb427e11bb1b174894c2c21a44c",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.6/dom.js": "5c9cbf211e94e1fb974100e6a322779d03b2e6a6390854333fe0199878f9ca48",
+
"https://deno.land/std@0.159.0/encoding/ascii85.ts": "f2b9cb8da1a55b3f120d3de2e78ac993183a4fd00dfa9cb03b51cf3a75bc0baa",
+
"https://deno.land/std@0.170.0/_util/asserts.ts": "d0844e9b62510f89ce1f9878b046f6a57bf88f208a10304aab50efcb48365272",
+
"https://deno.land/std@0.170.0/_util/os.ts": "8a33345f74990e627b9dfe2de9b040004b08ea5146c7c9e8fe9a29070d193934",
+
"https://deno.land/std@0.170.0/encoding/base64.ts": "8605e018e49211efc767686f6f687827d7f5fd5217163e981d8d693105640d7a",
+
"https://deno.land/std@0.170.0/fmt/colors.ts": "03ad95e543d2808bc43c17a3dd29d25b43d0f16287fe562a0be89bf632454a12",
+
"https://deno.land/std@0.170.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3",
+
"https://deno.land/std@0.170.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09",
+
"https://deno.land/std@0.170.0/path/_util.ts": "d16be2a16e1204b65f9d0dfc54a9bc472cafe5f4a190b3c8471ec2016ccd1677",
+
"https://deno.land/std@0.170.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633",
+
"https://deno.land/std@0.170.0/path/glob.ts": "81cc6c72be002cd546c7a22d1f263f82f63f37fe0035d9726aa96fc8f6e4afa1",
+
"https://deno.land/std@0.170.0/path/mod.ts": "cf7cec7ac11b7048bb66af8ae03513e66595c279c65cfa12bfc07d9599608b78",
+
"https://deno.land/std@0.170.0/path/posix.ts": "b859684bc4d80edfd4cad0a82371b50c716330bed51143d6dcdbe59e6278b30c",
+
"https://deno.land/std@0.170.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
+
"https://deno.land/std@0.170.0/path/win32.ts": "7cebd2bda6657371adc00061a1d23fdd87bcdf64b4843bb148b0b24c11b40f69",
+
"https://deno.land/std@0.224.0/assert/assert.ts": "09d30564c09de846855b7b071e62b5974b001bb72a4b797958fe0660e7849834",
+
"https://deno.land/std@0.224.0/assert/assertion_error.ts": "ba8752bd27ebc51f723702fac2f54d3e94447598f54264a6653d6413738a8917",
+
"https://deno.land/std@0.224.0/cli/parse_args.ts": "5250832fb7c544d9111e8a41ad272c016f5a53f975ef84d5a9fe5fcb70566ece",
+
"https://deno.land/std@0.224.0/fmt/colors.ts": "508563c0659dd7198ba4bbf87e97f654af3c34eb56ba790260f252ad8012e1c5",
+
"https://deno.land/std@0.224.0/fs/_get_file_info_type.ts": "da7bec18a7661dba360a1db475b826b18977582ce6fc9b25f3d4ee0403fe8cbd",
+
"https://deno.land/std@0.224.0/fs/ensure_dir.ts": "51a6279016c65d2985f8803c848e2888e206d1b510686a509fa7cc34ce59d29f",
+
"https://deno.land/std@0.224.0/jsonc/parse.ts": "06fbe10f0bb0cba684f7902bf7de5126b16eb0e5a82220c98a4b86675c7f9cff",
+
"https://deno.land/std@0.224.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8",
+
"https://deno.land/std@0.224.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c",
+
"https://deno.land/std@0.224.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3",
+
"https://deno.land/std@0.224.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a",
+
"https://deno.land/std@0.224.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d",
+
"https://deno.land/std@0.224.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00",
+
"https://deno.land/std@0.224.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63",
+
"https://deno.land/std@0.224.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91",
+
"https://deno.land/std@0.224.0/semver/_shared.ts": "5c53a675225cba9ad74ae2e17c124e333728fc2b551a13e8a32b99433b90c1c2",
+
"https://deno.land/std@0.224.0/semver/compare.ts": "7b5610c25ded57dc4aa41034ee02857d1a6fff609ab183afea17849284f86236",
+
"https://deno.land/std@0.224.0/semver/less_than.ts": "890eb36e6294d245934a33dbe6818164c4ec6fddf3aa585a590031393f781719",
+
"https://deno.land/std@0.224.0/semver/parse.ts": "94c09f3486643853e7438e64f2c6741462fbeb84cf141ad5bfe88b73ec4cb0f3",
+
"https://deno.land/x/brotli@0.1.7/mod.ts": "08b913e51488b6e7fa181f2814b9ad087fdb5520041db0368f8156bfa45fd73e",
+
"https://deno.land/x/brotli@0.1.7/wasm.js": "77771b89e89ec7ff6e3e0939a7fb4f9b166abec3504cec0532ad5c127d6f35d2",
+
"https://deno.land/x/cliffy@v0.25.7/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/ansi.ts": "7f43d07d31dd7c24b721bb434c39cbb5132029fa4be3dd8938873065f65e5810",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/ansi_escapes.ts": "885f61f343223f27b8ec69cc138a54bea30542924eacd0f290cd84edcf691387",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/chain.ts": "31fb9fcbf72fed9f3eb9b9487270d2042ccd46a612d07dd5271b1a80ae2140a0",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/colors.ts": "5f71993af5bd1aa0a795b15f41692d556d7c89584a601fed75997df844b832c9",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/cursor_position.ts": "d537491e31d9c254b208277448eff92ff7f55978c4928dea363df92c0df0813f",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/deps.ts": "0f35cb7e91868ce81561f6a77426ea8bc55dc15e13f84c7352f211023af79053",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/mod.ts": "bb4e6588e6704949766205709463c8c33b30fec66c0b1846bc84a3db04a4e075",
+
"https://deno.land/x/cliffy@v0.25.7/ansi/tty.ts": "8fb064c17ead6cdf00c2d3bc87a9fd17b1167f2daa575c42b516f38bdb604673",
+
"https://deno.land/x/cliffy@v0.25.7/command/_errors.ts": "a9bd23dc816b32ec96c9b8f3057218241778d8c40333b43341138191450965e5",
+
"https://deno.land/x/cliffy@v0.25.7/command/_utils.ts": "9ab3d69fabab6c335b881b8a5229cbd5db0c68f630a1c307aff988b6396d9baf",
+
"https://deno.land/x/cliffy@v0.25.7/command/command.ts": "a2b83c612acd65c69116f70dec872f6da383699b83874b70fcf38cddf790443f",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/_bash_completions_generator.ts": "43b4abb543d4dc60233620d51e69d82d3b7c44e274e723681e0dce2a124f69f9",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/_fish_completions_generator.ts": "d0289985f5cf0bd288c05273bfa286b24c27feb40822eb7fd9d7fee64e6580e8",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/_zsh_completions_generator.ts": "14461eb274954fea4953ee75938821f721da7da607dc49bcc7db1e3f33a207bd",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/bash.ts": "053aa2006ec327ccecacb00ba28e5eb836300e5c1bec1b3cfaee9ddcf8189756",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/complete.ts": "58df61caa5e6220ff2768636a69337923ad9d4b8c1932aeb27165081c4d07d8b",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/fish.ts": "9938beaa6458c6cf9e2eeda46a09e8cd362d4f8c6c9efe87d3cd8ca7477402a5",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/mod.ts": "aeef7ec8e319bb157c39a4bab8030c9fe8fa327b4c1e94c9c1025077b45b40c0",
+
"https://deno.land/x/cliffy@v0.25.7/command/completions/zsh.ts": "8b04ab244a0b582f7927d405e17b38602428eeb347a9968a657e7ea9f40e721a",
+
"https://deno.land/x/cliffy@v0.25.7/command/deprecated.ts": "bbe6670f1d645b773d04b725b8b8e7814c862c9f1afba460c4d599ffe9d4983c",
+
"https://deno.land/x/cliffy@v0.25.7/command/deps.ts": "275b964ce173770bae65f6b8ebe9d2fd557dc10292cdd1ed3db1735f0d77fa1d",
+
"https://deno.land/x/cliffy@v0.25.7/command/help/_help_generator.ts": "f7c349cb2ddb737e70dc1f89bcb1943ca9017a53506be0d4138e0aadb9970a49",
+
"https://deno.land/x/cliffy@v0.25.7/command/help/mod.ts": "09d74d3eb42d21285407cda688074c29595d9c927b69aedf9d05ff3f215820d3",
+
"https://deno.land/x/cliffy@v0.25.7/command/mod.ts": "d0a32df6b14028e43bb2d41fa87d24bc00f9662a44e5a177b3db02f93e473209",
+
"https://deno.land/x/cliffy@v0.25.7/command/type.ts": "24e88e3085e1574662b856ccce70d589959648817135d4469fab67b9cce1b364",
+
"https://deno.land/x/cliffy@v0.25.7/command/types.ts": "ae02eec0ed7a769f7dba2dd5d3a931a61724b3021271b1b565cf189d9adfd4a0",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/action_list.ts": "33c98d449617c7a563a535c9ceb3741bde9f6363353fd492f90a74570c611c27",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/boolean.ts": "3879ec16092b4b5b1a0acb8675f8c9250c0b8a972e1e4c7adfba8335bd2263ed",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/child_command.ts": "f1fca390c7fbfa7a713ca15ef55c2c7656bcbb394d50e8ef54085bdf6dc22559",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/command.ts": "325d0382e383b725fd8d0ef34ebaeae082c5b76a1f6f2e843fee5dbb1a4fe3ac",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/enum.ts": "2178345972adf7129a47e5f02856ca3e6852a91442a1c78307dffb8a6a3c6c9f",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/file.ts": "8618f16ac9015c8589cbd946b3de1988cc4899b90ea251f3325c93c46745140e",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/integer.ts": "29864725fd48738579d18123d7ee78fed37515e6dc62146c7544c98a82f1778d",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/number.ts": "aeba96e6f470309317a16b308c82e0e4138a830ec79c9877e4622c682012bc1f",
+
"https://deno.land/x/cliffy@v0.25.7/command/types/string.ts": "e4dadb08a11795474871c7967beab954593813bb53d9f69ea5f9b734e43dc0e0",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/mod.ts": "17e2df3b620905583256684415e6c4a31e8de5c59066eb6d6c9c133919292dc4",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider.ts": "d6fb846043232cbd23c57d257100c7fc92274984d75a5fead0f3e4266dc76ab8",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/deno_land.ts": "24f8d82e38c51e09be989f30f8ad21f9dd41ac1bb1973b443a13883e8ba06d6d",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/github.ts": "99e1b133dd446c6aa79f69e69c46eb8bc1c968dd331c2a7d4064514a317c7b59",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/nest_land.ts": "0e07936cea04fa41ac9297f32d87f39152ea873970c54cb5b4934b12fee1885e",
+
"https://deno.land/x/cliffy@v0.25.7/command/upgrade/upgrade_command.ts": "3640a287d914190241ea1e636774b1b4b0e1828fa75119971dd5304784061e05",
+
"https://deno.land/x/cliffy@v0.25.7/flags/_errors.ts": "f1fbb6bfa009e7950508c9d491cfb4a5551027d9f453389606adb3f2327d048f",
+
"https://deno.land/x/cliffy@v0.25.7/flags/_utils.ts": "340d3ecab43cde9489187e1f176504d2c58485df6652d1cdd907c0e9c3ce4cc2",
+
"https://deno.land/x/cliffy@v0.25.7/flags/_validate_flags.ts": "16eb5837986c6f6f7620817820161a78d66ce92d690e3697068726bbef067452",
+
"https://deno.land/x/cliffy@v0.25.7/flags/deprecated.ts": "a72a35de3cc7314e5ebea605ca23d08385b218ef171c32a3f135fb4318b08126",
+
"https://deno.land/x/cliffy@v0.25.7/flags/flags.ts": "68a9dfcacc4983a84c07ba19b66e5e9fccd04389fad215210c60fb414cc62576",
+
"https://deno.land/x/cliffy@v0.25.7/flags/mod.ts": "b21c2c135cd2437cc16245c5f168a626091631d6d4907ad10db61c96c93bdb25",
+
"https://deno.land/x/cliffy@v0.25.7/flags/types.ts": "7452ea5296758fb7af89930349ce40d8eb9a43b24b3f5759283e1cb5113075fd",
+
"https://deno.land/x/cliffy@v0.25.7/flags/types/boolean.ts": "4c026dd66ec9c5436860dc6d0241427bdb8d8e07337ad71b33c08193428a2236",
+
"https://deno.land/x/cliffy@v0.25.7/flags/types/integer.ts": "b60d4d590f309ddddf066782d43e4dc3799f0e7d08e5ede7dc62a5ee94b9a6d9",
+
"https://deno.land/x/cliffy@v0.25.7/flags/types/number.ts": "610936e2d29de7c8c304b65489a75ebae17b005c6122c24e791fbed12444d51e",
+
"https://deno.land/x/cliffy@v0.25.7/flags/types/string.ts": "e89b6a5ce322f65a894edecdc48b44956ec246a1d881f03e97bbda90dd8638c5",
+
"https://deno.land/x/cliffy@v0.25.7/keycode/key_code.ts": "c4ab0ffd102c2534962b765ded6d8d254631821bf568143d9352c1cdcf7a24be",
+
"https://deno.land/x/cliffy@v0.25.7/keycode/key_codes.ts": "917f0a2da0dbace08cf29bcfdaaa2257da9fe7e705fff8867d86ed69dfb08cfe",
+
"https://deno.land/x/cliffy@v0.25.7/keycode/mod.ts": "292d2f295316c6e0da6955042a7b31ab2968ff09f2300541d00f05ed6c2aa2d4",
+
"https://deno.land/x/cliffy@v0.25.7/mod.ts": "e3515ccf6bd4e4ac89322034e07e2332ed71901e4467ee5bc9d72851893e167b",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/_generic_input.ts": "737cff2de02c8ce35250f5dd79c67b5fc176423191a2abd1f471a90dd725659e",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/_generic_list.ts": "79b301bf09eb19f0d070d897f613f78d4e9f93100d7e9a26349ef0bfaa7408d2",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/_generic_prompt.ts": "8630ce89a66d83e695922df41721cada52900b515385d86def597dea35971bb2",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/_generic_suggestions.ts": "2a8b619f91e8f9a270811eff557f10f1343a444a527b5fc22c94de832939920c",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/_utils.ts": "676cca30762656ed1a9bcb21a7254244278a23ffc591750e98a501644b6d2df3",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/checkbox.ts": "e5a5a9adbb86835dffa2afbd23c6f7a8fe25a9d166485388ef25aba5dc3fbf9e",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/confirm.ts": "94c8e55de3bbcd53732804420935c432eab29945497d1c47c357d236a89cb5f6",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/deps.ts": "4c38ab18e55a792c9a136c1c29b2b6e21ea4820c45de7ef4cf517ce94012c57d",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/figures.ts": "26af0fbfe21497220e4b887bb550fab997498cde14703b98e78faf370fbb4b94",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/input.ts": "ee45532e0a30c2463e436e08ae291d79d1c2c40872e17364c96d2b97c279bf4d",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/list.ts": "6780427ff2a932a48c9b882d173c64802081d6cdce9ff618d66ba6504b6abc50",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/mod.ts": "195aed14d10d279914eaa28c696dec404d576ca424c097a5bc2b4a7a13b66c89",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/number.ts": "015305a76b50138234dde4fd50eb886c6c7c0baa1b314caf811484644acdc2cf",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/prompt.ts": "0e7f6a1d43475ee33fb25f7d50749b2f07fc0bcddd9579f3f9af12d05b4a4412",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/secret.ts": "58745f5231fb2c44294c4acf2511f8c5bfddfa1e12f259580ff90dedea2703d6",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/select.ts": "1e982eae85718e4e15a3ee10a5ae2233e532d7977d55888f3a309e8e3982b784",
+
"https://deno.land/x/cliffy@v0.25.7/prompt/toggle.ts": "842c3754a40732f2e80bcd4670098713e402e64bd930e6cab2b787f7ad4d931a",
+
"https://deno.land/x/cliffy@v0.25.7/table/border.ts": "2514abae4e4f51eda60a5f8c927ba24efd464a590027e900926b38f68e01253c",
+
"https://deno.land/x/cliffy@v0.25.7/table/cell.ts": "1d787d8006ac8302020d18ec39f8d7f1113612c20801b973e3839de9c3f8b7b3",
+
"https://deno.land/x/cliffy@v0.25.7/table/deps.ts": "5b05fa56c1a5e2af34f2103fd199e5f87f0507549963019563eae519271819d2",
+
"https://deno.land/x/cliffy@v0.25.7/table/layout.ts": "46bf10ae5430cf4fbb92f23d588230e9c6336edbdb154e5c9581290562b169f4",
+
"https://deno.land/x/cliffy@v0.25.7/table/mod.ts": "e74f69f38810ee6139a71132783765feb94436a6619c07474ada45b465189834",
+
"https://deno.land/x/cliffy@v0.25.7/table/row.ts": "5f519ba7488d2ef76cbbf50527f10f7957bfd668ce5b9169abbc44ec88302645",
+
"https://deno.land/x/cliffy@v0.25.7/table/table.ts": "ec204c9d08bb3ff1939c5ac7412a4c9ed7d00925d4fc92aff9bfe07bd269258d",
+
"https://deno.land/x/cliffy@v0.25.7/table/utils.ts": "187bb7dcbcfb16199a5d906113f584740901dfca1007400cba0df7dcd341bc29",
"https://deno.land/x/deno_dom@v0.1.49/build/deno-wasm/deno-wasm.js": "d6841a06342eb6a2798ef28de79ad69c0f2fa349fa04d3ca45e5fcfbf50a9340",
"https://deno.land/x/deno_dom@v0.1.49/deno-dom-wasm.ts": "0669396686fb207f1354af33df6aabe2189b4eceafdb1bf7f3d6bbb2637b6b03",
"https://deno.land/x/deno_dom@v0.1.49/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7",
···
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate.js": "b9f9ad9457d3f12f28b1fb35c555f57443427f74decb403113d67364e4f2caf4",
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate_bg.wasm.js": "d581956245407a2115a3d7e8d85a9641c032940a8e810acbd59ca86afd34d44d",
"https://deno.land/x/esbuild@v0.25.2/mod.js": "fde73e72559dc2932556506581bc61462cff72d0394382334500d956851cd9f5",
+
"https://deno.land/x/lume_init@v0.3.1/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.1/init.ts": "051fa551fca62c4844a986a18e1e15084b6332366fbe05613a1b1399d03f8bec",
+
"https://deno.land/x/lume_init@v0.3.1/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.3.1/steps/cms.ts": "3544d01bb1b0e904bad22289104810792ea75a266bc50f230aebbc12c7799bc5",
+
"https://deno.land/x/lume_init@v0.3.1/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.1/steps/load.ts": "30047e55ad89f8f674192eec30f2fdf3ce7dc2e39250eb75e434308570df70db",
+
"https://deno.land/x/lume_init@v0.3.1/steps/plugins.ts": "d0c916800e97c1f4664e83c3dd2c780f8e491664bc6b050a60e3f563237f77ba",
+
"https://deno.land/x/lume_init@v0.3.1/steps/save.ts": "8ae5b20ac02d43a8ab608825ad2c1f093aa2cd0099fb80da1ecc866aeea58c6f",
+
"https://deno.land/x/lume_init@v0.3.1/steps/start.ts": "8f39e47368dc2e50b3a8f5dd9e5759885d0025cecad9a35dcd4b3dc3b53a760e",
+
"https://deno.land/x/lume_init@v0.3.1/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.1/steps/themes.ts": "008d9c7c9371bd73c0f86d18a46f17aa70d775181934a2d4cea3bf2cb5e466a7",
+
"https://deno.land/x/lume_init@v0.3.1/steps/update.ts": "eb3df6b218ee744eff19a0effc41b9aea5fe91aca9230636b93c3bda8d03f83c",
+
"https://deno.land/x/lume_init@v0.3.1/steps/utils.ts": "d94b4b4bb718450ed4dcffc6031035cc068df8e01927ab5881333b10804b7ac7",
+
"https://deno.land/x/lume_init@v0.3.1/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
+
"https://deno.land/x/lume_init@v0.3.4/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.4/init.ts": "82f2b2846651a1239c7a89c9a83e7c2eb95032413b9817d267066fcabae26c9c",
+
"https://deno.land/x/lume_init@v0.3.4/mod.ts": "ddcc4f23d248649a06642498ac4c1c1d129424f8a357eb338db441d02f4cb087",
+
"https://deno.land/x/lume_init@v0.3.4/steps/cms.ts": "82935cbcaa649d4bbb3e7b2d64b4a30ea7a4d36bee3faabfc19c5bc380dd7416",
+
"https://deno.land/x/lume_init@v0.3.4/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.4/steps/load.ts": "82ce37a99d1fd182c355692c7ec91f72658e81172b11bca0829e4ae4da58cdfb",
+
"https://deno.land/x/lume_init@v0.3.4/steps/plugins.ts": "f672205df3370a4b6b1338120b7fab08ac183d3ab4f5830c67252f7894abe3bd",
+
"https://deno.land/x/lume_init@v0.3.4/steps/save.ts": "91b033d3a07b1cef365ce27f5dd3925c90a3923290e2120eaec1c1c79bbc34c2",
+
"https://deno.land/x/lume_init@v0.3.4/steps/start.ts": "229b6bf89a78858237f7c1233a9666fb63484caa001d0ff8f45e389b3b0938aa",
+
"https://deno.land/x/lume_init@v0.3.4/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.4/steps/themes.ts": "755f3a05078db11facdae103713d2671f27f1b9324846349cab244d7581c5f19",
+
"https://deno.land/x/lume_init@v0.3.4/steps/update.ts": "1271c0d6895dfb2acf1495a36676e4f1c454e9ba090a85bf88835e0756f26d3a",
+
"https://deno.land/x/lume_init@v0.3.4/steps/utils.ts": "fa1eba2ae29193395465022119069b322f8164c3064bbdd9e0664cb385f00e7b",
+
"https://deno.land/x/lume_init@v0.3.4/upgrade.ts": "caddf7613b93b5a92473b450b06ee9477322f31d191b583d5716a6870929a20e",
+
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc.ts": "1fe2769056a022303b3871fc4b7be26b7738d44a31e5fd08debd527e9dc49ecc",
+
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/anchors.ts": "8a4a1c6b2c63156622695ceba57fa7100a6e5f109c9a383a1dcaf755233c8184",
+
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/mod.ts": "8c7aa6e1dcfabda4264503495a3875388108cd9a5a94b54853b45a8e8cba9f78",
+
"https://deno.land/x/lume_markdown_plugins@v0.8.0/utils.ts": "6e6c3c394709eff39080562732c2dafe404f225253aaded937133ea694c4b735",
+
"https://deno.land/x/lz4@v0.1.2/mod.ts": "4decfc1a3569d03fd1813bd39128b71c8f082850fe98ecfdde20025772916582",
+
"https://deno.land/x/lz4@v0.1.2/wasm.js": "b9c65605327ba273f0c76a6dc596ec534d4cda0f0225d7a94ebc606782319e46",
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/@types/index.ts": "46cd40eb4d19172a67dea39849dd3c89642345a70ef8fff4501343713fb0cad9",
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts": "f388a00e36a020d3e8ebad1fe60911e6fa8b001db8747a60efd11571377a22fa",
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/inspect.ts": "ff2eafd39916e86fbdf6c094e6cb0bf45078084d0cfeae60ce7ba869610ec857",
"https://deno.land/x/ssx@v0.1.8/css.ts": "6756e74b96e3694631745ce12f80f4eb89c88940f44fbd97e4b676811bbc225c",
"https://deno.land/x/ssx@v0.1.8/html.ts": "26185b76f311467f1e2f93131ebb6f48b709cf6e9eefd254d95260ccaa0e1e6b",
"https://deno.land/x/ssx@v0.1.8/jsx-runtime.ts": "79b5c6b482b43b84bc07ef5fe0d010572de5cffa94a6eecf9aaff6f51d102df9",
+
"https://deno.land/x/ssx@v0.1.9/css.ts": "39972fa9e375465b82e4fbf735dcc727acc89fdd836f93a395cfb3ccab54e7f0",
+
"https://deno.land/x/ssx@v0.1.9/html.ts": "5ad7bfd7a6a5b676b2686d406c105bbb02bea537183d95e0c04e76853a9ee155",
+
"https://deno.land/x/ssx@v0.1.9/jsx-runtime.ts": "d0df99b2a626dbe06d0fc5d968746bb070672365f15e7fdd3b84285843af3148",
"https://deno.land/x/vento@v1.12.16/bare.ts": "3aa85855ad52cb60df03644a63927cb6a04c8edb5e653175ebf0332094a3cf7d",
"https://deno.land/x/vento@v1.12.16/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
"https://deno.land/x/vento@v1.12.16/mod.ts": "53262793b5e0176acdec84aa9c34ed3ecb0c45cc9d396bf34a06ed4ad3d9930a",
···
"https://deno.land/x/vento@v1.12.16/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
"https://deno.land/x/vento@v1.12.16/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
"https://deno.land/x/vento@v1.12.16/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
-
"https://deno.land/x/vento@v1.12.16/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451"
+
"https://deno.land/x/vento@v1.12.16/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451",
+
"https://deno.land/x/xml@6.0.4/mod.ts": "b59e5c0dd9fe7ed597c21c39aacf089aa82fe5c5eaad3f411a43a9c104359f4e",
+
"https://deno.land/x/xml@6.0.4/parse.ts": "1302c75d8fd40df39310bb8ae6716302f0b77c61c607437dc023d3d792a0df54",
+
"https://deno.land/x/xml@6.0.4/stringify.ts": "0e2f79798d413c5386bf5de90bbe9901f99951ceae484050a8ef89e2b4da9dd0",
+
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd"
},
"workspace": {
"dependencies": [
"npm:@nolebase/markdown-it-bi-directional-links@^2.15.1",
+
"npm:accessibility-checker@^4.0.4",
"npm:html-validate@9.5.2",
"npm:sharp@0.33.5"
]
+74 -1
flake.lock
···
{
"nodes": {
+
"flake-compat": {
+
"locked": {
+
"lastModified": 1733328505,
+
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
+
"owner": "edolstra",
+
"repo": "flake-compat",
+
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
+
"type": "github"
+
},
+
"original": {
+
"owner": "edolstra",
+
"repo": "flake-compat",
+
"type": "github"
+
}
+
},
+
"nix-alien": {
+
"inputs": {
+
"flake-compat": "flake-compat",
+
"nix-index-database": "nix-index-database",
+
"nixpkgs": "nixpkgs"
+
},
+
"locked": {
+
"lastModified": 1745058368,
+
"narHash": "sha256-Y2wj9kIRpBK2nxGHPyvjWSMxKXHL+0WchLdsAfY3pRg=",
+
"owner": "thiagokokada",
+
"repo": "nix-alien",
+
"rev": "5970d8560eb0f454ffac11fe01c9a0dc3fd83ca9",
+
"type": "github"
+
},
+
"original": {
+
"owner": "thiagokokada",
+
"repo": "nix-alien",
+
"type": "github"
+
}
+
},
+
"nix-index-database": {
+
"inputs": {
+
"nixpkgs": [
+
"nix-alien",
+
"nixpkgs"
+
]
+
},
+
"locked": {
+
"lastModified": 1744518957,
+
"narHash": "sha256-RLBSWQfTL0v+7uyskC5kP6slLK1jvIuhaAh8QvB75m4=",
+
"owner": "nix-community",
+
"repo": "nix-index-database",
+
"rev": "4fc9ea78c962904f4ea11046f3db37c62e8a02fd",
+
"type": "github"
+
},
+
"original": {
+
"owner": "nix-community",
+
"repo": "nix-index-database",
+
"type": "github"
+
}
+
},
"nixpkgs": {
"locked": {
+
"lastModified": 1744932701,
+
"narHash": "sha256-fusHbZCyv126cyArUwwKrLdCkgVAIaa/fQJYFlCEqiU=",
+
"owner": "NixOS",
+
"repo": "nixpkgs",
+
"rev": "b024ced1aac25639f8ca8fdfc2f8c4fbd66c48ef",
+
"type": "github"
+
},
+
"original": {
+
"owner": "NixOS",
+
"ref": "nixos-unstable",
+
"repo": "nixpkgs",
+
"type": "github"
+
}
+
},
+
"nixpkgs_2": {
+
"locked": {
"lastModified": 1741865919,
"narHash": "sha256-4thdbnP6dlbdq+qZWTsm4ffAwoS8Tiq1YResB+RP6WE=",
"owner": "nixos",
···
},
"root": {
"inputs": {
-
"nixpkgs": "nixpkgs"
+
"nix-alien": "nix-alien",
+
"nixpkgs": "nixpkgs_2"
}
}
},
+4 -1
flake.nix
···
description = "Pyroblog v8 DevShell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
+
nix-alien.url = "github:thiagokokada/nix-alien";
};
-
outputs = { self, nixpkgs, ... }: let
+
outputs = { self, nixpkgs, nix-alien, ... }: let
pkgs = import nixpkgs {
allowUnfree = true;
};
···
runScript = "deno";
targetPkgs = pkgs: [
pkgs.deno
+
pkgs.nss
];
};
in {
···
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = [
fhs
+
nix-alien.packages.x86_64-linux.nix-alien
pkgs.just
pkgs.caddy
(pkgs.python3.withPackages (
+82
plugins/checkAccessibility.ts
···
+
import * as aChecker from "accessibility-checker";
+
import "lume/types.ts";
+
import { rm } from "node:fs";
+
+
// HTML Accessibility Plugin, by dish
+
// version 1.0.0
+
// Based on IBM's accessibility-checker library
+
+
export default function () {
+
return (site: Lume.Site) => {
+
site.process([".html"], checkPages);
+
+
async function checkPages(pages: Lume.Page[]) {
+
const barReport = site.debugBar?.collection("Accessibility Checker");
+
if (barReport) {
+
barReport.icon = "wheelchair-motion";
+
barReport.contexts = {
+
"violation": {
+
background: "error",
+
},
+
"potentialviolation": {
+
background: "error",
+
},
+
"recommendation": {
+
background: "info",
+
},
+
"potentialrecommendation": {
+
background: "info",
+
},
+
};
+
}
+
console.info("[checkAccessibility] Starting...");
+
rm(`${Deno.cwd()}/accessibility-results`, { recursive: true, force: true }, (err) => {
+
if (err) throw err;
+
});
+
for (const page of pages) {
+
const label = page.outputPath.substring(0, page.outputPath.length - 5);
+
try {
+
let res = await aChecker.getCompliance(
+
page.content,
+
label,
+
);
+
if (aChecker.assertCompliance(res.report) === 0) {
+
(() => {});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${res.report.results.length} errors`,
+
items: Array.from(res.report.results).map((rep) => ({
+
title: `${rep.ruleId} - ${rep.reasonId}`,
+
context: rep.level,
+
text: rep.message,
+
actions: [
+
{
+
text: "Highlight",
+
icon: "question",
+
onclick: `highlightElement("${rep.path.dom}", "${page.outputPath}")`,
+
},
+
{
+
text: "Help",
+
icon: "question",
+
href: rep.help,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
+
} catch (err) {
+
console.error(err);
+
}
+
}
+
await aChecker.close();
+
}
+
};
+
}
+
+
function lookupRule(rules: Object, ruleId: string, reasonId: string) {
+
const rule = rules[ruleId];
+
const reason: string = rule[reasonId];
+
return reason;
+
}
+48 -14
plugins/validateHTML.ts
···
export default function (userOptions?: ConfigData) {
const options = merge(defaults, userOptions);
const htmlvalidate = new HtmlValidate(options);
-
const format = formatterFactory("text");
return (site: Lume.Site) => {
site.process([".html"], validatePages);
+
const barReport = site.debugBar?.collection("HTML Validator");
+
if (barReport) {
+
barReport.icon = "shield-check";
+
barReport.contexts = {
+
"error": {
+
background: "error",
+
},
+
"warning": {
+
background: "warning",
+
},
+
"success": {
+
background: "success",
+
},
+
};
+
}
async function validatePages(pages: Lume.Page[]) {
-
let reports: Array<Report> = [];
for (const page of pages) {
const report = await htmlvalidate.validateString(page.content as string, page.outputPath);
-
reports.push(report);
-
}
-
const merged: Report | Promise<Report> = Reporter.merge(reports);
-
// Clear the reports table to ensure we don't get duplicates
-
reports = [];
-
-
if (merged.valid) {
-
log.info("[validateHTML] Validation successful!");
-
}
-
-
if (!merged.valid) {
-
log.error("[validateHTML]:\n" + format(merged.results));
+
if (report.valid == true) {
+
barReport?.items.push({
+
title: page.data.url,
+
context: "success",
+
text: "No errors or warnings on page",
+
});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${report.errorCount} errors, ${report.warningCount} warnings`,
+
items: Array.from(report.results[0].messages).map((msg) => ({
+
title: msg.message,
+
context: severity(msg.severity),
+
code: msg.ruleId,
+
actions: [
+
{
+
text: "Rule",
+
icon: "question",
+
href: msg.ruleUrl,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
}
}
};
}
+
+
function severity(level: number) {
+
if (level == 1) {
+
return "warning";
+
}
+
+
return "error";
+
}
+1
src/_components/head.vto
···
<title>{{ title }}</title>
{{ if !production }}
<script defer src="/static/scripts/open-in-editor.js"></script>
+
<script src="/static/scripts/highlight-accessibility.js"></script>
{{# Load Sa11y #}}
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<link
+29
src/static/scripts/highlight-accessibility.js
···
+
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
+
+
function highlightElement(xpath, url) {
+
url2 = url.replace("index.html", "");
+
if (!(window.location.pathname == url2)) {
+
window.location.pathname = url2;
+
console.info(
+
`Returned Early: ${window.location.pathname} does not equal ${url2}`,
+
);
+
return;
+
}
+
const node = document.evaluate(
+
xpath,
+
document,
+
null,
+
XPathResult.FIRST_ORDERED_NODE_TYPE,
+
null,
+
);
+
+
el = node.singleNodeValue;
+
const prevBorder = el.style.border;
+
const prevRadius = el.style.borderRadius;
+
el.style.border = "solid red";
+
// el.style.borderRadius = "100%";
+
el.scrollIntoView({ behavior: "smooth", block: "center" });
+
// delay(5000);
+
// el.style.border = prevBorder;
+
// el.style.borderRadius = prevRadius;
+
}