commit ebcad771507c0c6702b71ed93a08d7a7f79b4484 Author: Tree Date: Mon Jun 26 20:38:43 2023 +0000 first commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..018fcd2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 ATScan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3f5e93d --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: all + +all: plc-crawl + +plc-daemon: + deno run --unstable --allow-net ./backend/plc-crawler.js daemon + +plc-init: + deno run --unstable --allow-net ./backend/plc-crawler.js init + +plc-crawl: + deno run --unstable --allow-net ./backend/plc-crawler.js + +test: + deno test --unstable --allow-read ./backend/test.js + diff --git a/README.md b/README.md new file mode 100644 index 0000000..642c6ea --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# ATScan + +This is a monorepo containing the backend and frontend of ATScan. The current version is hosted on [atscan.net](https://atscan.net). + +## Authors +- Tree ([burningtree](https://github.com/burningtree)) + +## License +MIT \ No newline at end of file diff --git a/backend/.env.example b/backend/.env.example new file mode 100644 index 0000000..4aaa6ea --- /dev/null +++ b/backend/.env.example @@ -0,0 +1 @@ +IPINFO_TOKEN=XXXXX \ No newline at end of file diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/backend/api.js b/backend/api.js new file mode 100644 index 0000000..7736c82 --- /dev/null +++ b/backend/api.js @@ -0,0 +1,79 @@ +import { ATScan } from "./lib/atscan.js"; +import { Application, Router } from "https://deno.land/x/oak/mod.ts"; +import { oakCors } from "https://deno.land/x/cors/mod.ts"; + +const ats = new ATScan(); +await ats.init(); + +const HTTP_PORT = 6677; +const app = new Application(); + +const router = new Router(); +router + .get("/pds", async (ctx) => { + const out = [] + for (const item of (await ats.db.pds.find({}).toArray())) { + item.host = item.url.replace(/^https?:\/\//, ""); + item.env = (ats.BSKY_OFFICIAL_PDS.includes(item.url) && + item.plcs.includes("https://plc.directory")) + ? "bsky" + : (item.plcs.includes("https://plc.bsky-sandbox.dev") + ? "sandbox" + : null); + //item.didsCount = await ats.db.did.countDocuments({ 'pds': { $in: [ item.url ] }}) + out.push(item) + } + ctx.response.body = out.filter((i) => i.env) + }) + .get("/plc", async (ctx) => { + const out = [] + for (const plc of ats.defaultPLC) { + plc.host = plc.url.replace(/^https?:\/\//, ""); + plc.didsCount = await ats.db.did.countDocuments({ src: plc.url }) + plc.lastUpdate = (await ats.db.meta.findOne({ key: `lastUpdate:${plc.url}` })).value + out.push(plc) + } + ctx.response.body = out; + }) + .get("/did", async (ctx) => { + const out = [] + for (const did of (await ats.db.did.find({}).sort({ time: -1 }).limit(100).toArray())) { + did.srcHost = did.src.replace(/^https?:\/\//, ""); + out.push(did) + } + ctx.response.body = out; + }) + .get("/:id", async (ctx) => { + if (!ctx.params.id.match(/^did\:/)) { + return ctx.status = 404; + } + const did = ctx.params.id + const item = await ats.db.did.findOne({ did }) + item.env = ((item.src === "https://plc.directory") + ? "bsky" + : (item.src === "https://plc.bsky-sandbox.dev") + ? "sbox" + : null); + ctx.response.body = item + }) + .get("/pds/:host", async (ctx) => { + const host = ctx.params.host + const item = await ats.db.pds.findOne({ url: `https://${host}` }) + item.host = item.url.replace(/^https?:\/\//, ""); + item.env = (ats.BSKY_OFFICIAL_PDS.includes(item.url) && + item.plcs.includes("https://plc.directory")) + ? "bsky" + : (item.plcs.includes("https://plc.bsky-sandbox.dev") + ? "sandbox" + : null); + ctx.response.body = item + }) + .get("/", ctx => { + ctx.response.body = "ATScan API" + }) + +app.use(oakCors()); // Enable CORS for All Routes +app.use(router.routes()); +app.listen({ port: HTTP_PORT }); + +console.log(`ATScan API started at port ${HTTP_PORT}`); diff --git a/backend/lib/atscan.js b/backend/lib/atscan.js new file mode 100644 index 0000000..a32e8b9 --- /dev/null +++ b/backend/lib/atscan.js @@ -0,0 +1,99 @@ +import { Bson, MongoClient } from "https://deno.land/x/mongo@v0.31.2/mod.ts"; +import { parse, stringify } from "https://deno.land/std@0.184.0/yaml/mod.ts"; + +const BSKY_OFFICIAL_PDS = [ + "https://bsky.social", +]; + +export class ATScan { + constructor(opts = {}) { + this.verbose = opts.verbose; + this.debug = opts.debug; + this.defaultPLC = parse(Deno.readTextFileSync('./spec/plc.yaml')) + this.BSKY_OFFICIAL_PDS = BSKY_OFFICIAL_PDS; + } + + async init() { + this.client = new MongoClient(); + await this.client.connect("mongodb://127.0.0.1:27017"); + this.dbRaw = this.client.database("test"); + this.db = { + did: this.dbRaw.collection("did"), + pds: this.dbRaw.collection("pds"), + meta: this.dbRaw.collection("meta"), + }; + } + + async processPlcExport(plc, after = null) { + const url = plc.url + "/export?after=" + (after || ""); + if (this.debug) { + console.log(`ProcessPlcExport: ${url}`); + } + const req = await fetch(url); + const lines = await req.text(); + const arr = lines.split("\n").map((l) => JSON.parse(l)); + + for (const data of arr) { + const pdsUrl = data.operation.services?.atproto_pds?.endpoint; + const matcher = { did: data.did, src: plc.url }; + const obj = { + did: data.did, + src: plc.url, + revs: [data], + time: new Date().toISOString(), + pds: pdsUrl ? [pdsUrl] : [], + }; + let didRev = 0; + const found = await this.db.did.findOne(matcher); + if (found) { + const revFound = found.revs.find((r) => r.cid === data.cid); + let updated = false; + if (!revFound) { + updated = true; + didRev = found.revs.length; + found.revs.push(data); + //found.time = new Date().toISOString() + console.log(`DID: Adding new DID revision: ${data.did}@${didRev}`); + } + if (pdsUrl && !found.pds.includes(pdsUrl)) { + updated = true; + found.pds.push(pdsUrl); + } + if (updated) { + await this.db.did.updateOne(matcher, { + $set: { + time: new Date().toISOString(), + revs: found.revs, + pds: found.pds, + }, + }); + } + } else { + console.log(`DID: Adding new DID revision: ${data.did}@0 (init)`); + await this.db.did.insertOne(obj); + } + const pdsFound = await this.db.pds.findOne({ url: pdsUrl }); + const didId = [data.did, didRev].join("@"); + if (pdsFound) { + if (!pdsFound.plcs.includes(plc.url)) { + pdsFound.plcs.push(plcUrl); + console.log(`PDS [${pdsUrl}]: Adding new PLC: ${plc.url}`); + await this.db.pds.updateOne({ url: pdsUrl }, { + $set: { plcs: pdsFound.plcs }, + }); + } + } else { + await this.db.pds.insertOne({ + url: pdsUrl, + plcs: [plc.url], + time: new Date().toISOString(), + }); + } + } + const key = `lastUpdate:${plc.url}`; + await this.db.meta.updateOne({ key }, { + $set: { key, value: arr[arr.length - 1].createdAt }, + }, { upsert: true }); + return arr.length !== 1 ? arr[arr.length - 1].createdAt : false; + } +} diff --git a/backend/pds-crawler.js b/backend/pds-crawler.js new file mode 100644 index 0000000..efb2fc5 --- /dev/null +++ b/backend/pds-crawler.js @@ -0,0 +1,114 @@ +import { ATScan } from "./lib/atscan.js"; +import { pooledMap } from "https://deno.land/std/async/mod.ts"; +import "https://deno.land/std@0.192.0/dotenv/load.ts"; + +function timeout(ms, promise) { + return new Promise(function (resolve, reject) { + const start = performance.now(); + setTimeout(function () { + reject(new Error("timeout")); + }, ms); + promise.then((v) => { + const end = performance.now(); + return resolve([v, end - start]); + }, reject); + }); +} + +async function crawl(ats) { + const arr = await ats.db.pds.find().toArray(); + const results = pooledMap(25, arr.slice(0, 1000), async (i) => { + let err = null; + let res, data, ms; + + const host = i.url.replace(/^https?:\/\//, ""); + if (!i.dns) { + console.log('sending dns request: ', i.url) + let dns = + await (await fetch(`https://dns.google/resolve?name=${host}&type=A`)) + .json(); + i.dns = dns; + ats.db.pds.updateOne({ url: i.url }, { $set: { dns } }); + } + if (!i.ip && (i.dns.Answer && i.dns.Answer.filter(a => a.type === 1).length > 0)) { + const ipAddr = i.dns.Answer.filter(a => a.type === 1)[0].data + let ip; + try { + ip = + await (await fetch(`http://ipinfo.io/${ipAddr}?token=${Deno.env.get('IPINFO_TOKEN')}`)) + .json(); + } catch (e) {} + if (ip || (i.ip && i.ip.Question && i.ip && i.ip.Question[0].name !== host+'.') || !i.ip) { + i.ip = ip; + ats.db.pds.updateOne({ url: i.url }, { $set: { ip } }); + } + } + + if (i.url.match(/^https?:\/\/(localhost|example.com)/)) { + err = "not allowed domain"; + } + if (!i.dns.Answer) { + err = "not existing domain"; + } + + if (!err) { + const url = `${i.url}/xrpc/com.atproto.server.describeServer`; + try { + [res, ms] = await timeout( + 5000, + fetch(url, { + headers: { + "User-Agent": + "ATScan Crawler", + }, + }), + ); + if (res) { + data = await res.json(); + } + } catch (e) { + err = e.message; + } + } + const inspect = { + err, + data, + ms, + time: new Date().toISOString(), + }; + const dbSet = { "inspect.current": inspect }; + if (!err && data) { + dbSet["inspect.lastOnline"] = (new Date()).toISOString(); + } + await ats.db.pds.updateOne({ url: i.url }, { + $set: dbSet, + }); + console.log( + `-> ${i.url} ${ms ? "[" + ms + "ms]" : ""} ${ + err ? "error = " + err : "" + }`, + ); + }); + for await (const value of results) {} +} + +if (Deno.args[0] === "daemon") { + const wait = 60 * 10; + + console.log("Initializing ATScan .."); + const ats = new ATScan(); + ats.debug = true; + await ats.init(); + console.log("pds-crawl daemon started"); + console.log("Performing initial crawl .."); + // initial crawl + await crawl(ats); + console.log(`Initial crawl done`); + ats.debug = false; + console.log(`Processing events [wait=${wait}s] ..`); + setInterval(() => crawl(ats), wait * 1000); +} else { + const ats = new ATScan({ debug: true }); + await ats.init(); + await crawl(ats); +} diff --git a/backend/plc-crawler.js b/backend/plc-crawler.js new file mode 100644 index 0000000..85d7cb9 --- /dev/null +++ b/backend/plc-crawler.js @@ -0,0 +1,38 @@ +import { ATScan } from "./lib/atscan.js"; + +async function crawl(ats) { + for (const plc of ats.defaultPLC) { + let start = 0; + if (Deno.args[0] !== "init") { + const item = await ats.db.meta.findOne({ key: `lastUpdate:${plc.url}` }); + if (item) { + start = item.value; + } + } + let after = await ats.processPlcExport(plc, start); + while (after) { + after = await ats.processPlcExport(plc, after); + } + } +} + +if (Deno.args[0] === "daemon") { + const wait = 60; + + console.log("Initializing ATScan .."); + const ats = new ATScan(); + ats.debug = true; + await ats.init(); + console.log("plc-crawl daemon started"); + console.log("Performing initial crawl .."); + // initial crawl + await crawl(ats); + console.log(`Initial crawl done`); + ats.debug = false; + console.log(`Processing events [wait=${wait}s] ..`); + setInterval(() => crawl(ats), wait * 1000); +} else { + const ats = new ATScan({ debug: true }); + await ats.init(); + await crawl(ats); +} diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..a44ee29 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,39 @@ +module.exports = { + apps: [{ + name: "atscan-plc-crawler", + script: "./backend/plc-crawler.js", + args: "daemon", + interpreter: "deno", + interpreterArgs: "run --unstable --allow-net --allow-read", + }, { + name: "atscan-pds-crawler", + script: "./backend/pds-crawler.js", + args: "daemon", + interpreter: "mullvad-exclude", + interpreterArgs: "deno run --unstable --allow-net --allow-read", + }, { + name: "atscan-fe-dev", + interpreter: "mullvad-exclude", + interpreterArgs: "npm run dev", + env: { + HOST: "127.0.0.1", + PORT: 4010, + } + }, { + name: "atscan-fe", + script: "./frontend/build/index.js", + interpreter: "mullvad-exclude", + interpreterArgs: "node", + env: { + HOST: "127.0.0.1", + PORT: 4000, + } + }, { + name: "atscan-api", + script: "./backend/api.js", + //args : "daemon", + interpreter: "deno", + interpreterArgs: "run --unstable -A", + watch: true, + }], +}; diff --git a/frontend/.eslintignore b/frontend/.eslintignore new file mode 100644 index 0000000..3897265 --- /dev/null +++ b/frontend/.eslintignore @@ -0,0 +1,13 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example + +# Ignore files for PNPM, NPM and YARN +pnpm-lock.yaml +package-lock.json +yarn.lock diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs new file mode 100644 index 0000000..08879ef --- /dev/null +++ b/frontend/.eslintrc.cjs @@ -0,0 +1,14 @@ +module.exports = { + root: true, + extends: ["eslint:recommended", "plugin:svelte/recommended", "prettier"], + parserOptions: { + sourceType: "module", + ecmaVersion: 2020, + extraFileExtensions: [".svelte"], + }, + env: { + browser: true, + es2017: true, + node: true, + }, +}; diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..6635cf5 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,10 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +vite.config.js.timestamp-* +vite.config.ts.timestamp-* diff --git a/frontend/.npmrc b/frontend/.npmrc new file mode 100644 index 0000000..0c05da4 --- /dev/null +++ b/frontend/.npmrc @@ -0,0 +1,2 @@ +engine-strict=true +resolution-mode=highest diff --git a/frontend/.prettierignore b/frontend/.prettierignore new file mode 100644 index 0000000..3897265 --- /dev/null +++ b/frontend/.prettierignore @@ -0,0 +1,13 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example + +# Ignore files for PNPM, NPM and YARN +pnpm-lock.yaml +package-lock.json +yarn.lock diff --git a/frontend/.prettierrc b/frontend/.prettierrc new file mode 100644 index 0000000..a77fdde --- /dev/null +++ b/frontend/.prettierrc @@ -0,0 +1,9 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte"], + "pluginSearchDirs": ["."], + "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] +} diff --git a/frontend/.vscode/settings.json b/frontend/.vscode/settings.json new file mode 100644 index 0000000..f0a5b1f --- /dev/null +++ b/frontend/.vscode/settings.json @@ -0,0 +1,106 @@ +{ + "prettier.documentSelectors": [ + "**/*.svelte" + ], + "tailwindCSS.classAttributes": [ + "class", + "accent", + "active", + "background", + "badge", + "bgBackdrop", + "bgDark", + "bgDrawer", + "bgLight", + "blur", + "border", + "button", + "buttonAction", + "buttonBack", + "buttonClasses", + "buttonComplete", + "buttonDismiss", + "buttonNeutral", + "buttonNext", + "buttonPositive", + "buttonTextCancel", + "buttonTextConfirm", + "buttonTextFirst", + "buttonTextLast", + "buttonTextNext", + "buttonTextPrevious", + "buttonTextSubmit", + "caretClosed", + "caretOpen", + "chips", + "color", + "controlSeparator", + "controlVariant", + "cursor", + "display", + "element", + "fill", + "fillDark", + "fillLight", + "flex", + "gap", + "gridColumns", + "height", + "hover", + "justify", + "meter", + "padding", + "position", + "regionBackdrop", + "regionBody", + "regionCaption", + "regionCaret", + "regionCell", + "regionCone", + "regionContent", + "regionControl", + "regionDefault", + "regionDrawer", + "regionFoot", + "regionFootCell", + "regionFooter", + "regionHead", + "regionHeadCell", + "regionHeader", + "regionIcon", + "regionInterface", + "regionInterfaceText", + "regionLabel", + "regionLead", + "regionLegend", + "regionList", + "regionNavigation", + "regionPage", + "regionPanel", + "regionRowHeadline", + "regionRowMain", + "regionTab", + "regionTrail", + "ring", + "rounded", + "select", + "shadow", + "slotDefault", + "slotFooter", + "slotHeader", + "slotLead", + "slotMessage", + "slotMeta", + "slotPageContent", + "slotPageFooter", + "slotPageHeader", + "slotSidebarLeft", + "slotSidebarRight", + "slotTrail", + "spacing", + "text", + "track", + "width", + "zIndex" + ] +} diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..dd491a3 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,41 @@ +# create-svelte + +Everything you need to build a Svelte project, powered by +[`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). + +## Creating a project + +If you're seeing this, you've probably already done this step. Congrats! + +```bash +# create a new project in the current directory +npm create svelte@latest + +# create a new project in my-app +npm create svelte@latest my-app +``` + +## Developing + +Once you've created a project and installed dependencies with `npm install` (or +`pnpm install` or `yarn`), start a development server: + +```bash +npm run dev + +# or start the server and open the app in a new browser tab +npm run dev -- --open +``` + +## Building + +To create a production version of your app: + +```bash +npm run build +``` + +You can preview the production build with `npm run preview`. + +> To deploy your app, you may need to install an +> [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..fc1891f --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,3353 @@ +{ + "name": "frontend", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "version": "0.0.1", + "dependencies": { + "highlight.js": "^11.8.0", + "minidenticons": "^4.2.0" + }, + "devDependencies": { + "@floating-ui/dom": "^1.4.2", + "@skeletonlabs/skeleton": "^1.8.0", + "@sveltejs/adapter-auto": "^2.0.0", + "@sveltejs/adapter-node": "^1.2.4", + "@sveltejs/kit": "^1.5.0", + "@tailwindcss/forms": "^0.5.3", + "autoprefixer": "^10.4.14", + "date-fns": "^2.30.0", + "eslint": "^8.28.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-svelte": "^2.26.0", + "lodash": "^4.17.21", + "postcss": "^8.4.24", + "prettier": "^2.8.0", + "prettier-plugin-svelte": "^2.8.1", + "svelte": "^3.54.0", + "tailwindcss": "^3.3.2", + "vite": "^4.3.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.43.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.43.0.tgz", + "integrity": "sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.3.1.tgz", + "integrity": "sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==", + "dev": true + }, + "node_modules/@floating-ui/dom": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.4.2.tgz", + "integrity": "sha512-VKmvHVatWnewmGGy+7Mdy4cTJX71Pli6v/Wjb5RQBuq5wjUYx+Ef+kRThi8qggZqDgD8CogCpqhRoVp3+yQk+g==", + "dev": true, + "dependencies": { + "@floating-ui/core": "^1.3.1" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, + "node_modules/@rollup/plugin-commonjs": { + "version": "24.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-24.1.0.tgz", + "integrity": "sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "glob": "^8.0.3", + "is-reference": "1.2.1", + "magic-string": "^0.27.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-commonjs/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@rollup/plugin-commonjs/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@rollup/plugin-commonjs/node_modules/magic-string": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@rollup/plugin-commonjs/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rollup/plugin-json": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.0.0.tgz", + "integrity": "sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.1.0.tgz", + "integrity": "sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.2.1", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", + "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@skeletonlabs/skeleton": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@skeletonlabs/skeleton/-/skeleton-1.8.0.tgz", + "integrity": "sha512-dO4ukU34MGUY1yA1Gln+YUFEEew25AHm6GMpbzCOX8p8b9NmVBWiSuF3me9jnbrV15TGJxmUGzdiRN/70b4KIg==", + "dev": true, + "dependencies": { + "esm-env": "1.0.0", + "svelte": "3.58.0" + } + }, + "node_modules/@skeletonlabs/skeleton/node_modules/svelte": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.58.0.tgz", + "integrity": "sha512-brIBNNB76mXFmU/Kerm4wFnkskBbluBDCjx/8TcpYRb298Yh2dztS2kQ6bhtjMcvUhd5ynClfwpz5h2gnzdQ1A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sveltejs/adapter-auto": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-2.1.0.tgz", + "integrity": "sha512-o2pZCfATFtA/Gw/BB0Xm7k4EYaekXxaPGER3xGSY3FvzFJGTlJlZjBseaXwYSM94lZ0HniOjTokN3cWaLX6fow==", + "dev": true, + "dependencies": { + "import-meta-resolve": "^3.0.0" + }, + "peerDependencies": { + "@sveltejs/kit": "^1.0.0" + } + }, + "node_modules/@sveltejs/adapter-node": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-node/-/adapter-node-1.2.4.tgz", + "integrity": "sha512-TNnhS+OKRZ9RKnC+ho5mlE2FJquI61i0v7yOXxBUSU3LAoYH2kwVVL8P8ecjefmZ8BOfM1V54pBnDODBU5CEaA==", + "dev": true, + "dependencies": { + "@rollup/plugin-commonjs": "^24.0.0", + "@rollup/plugin-json": "^6.0.0", + "@rollup/plugin-node-resolve": "^15.0.1", + "rollup": "^3.7.0" + }, + "peerDependencies": { + "@sveltejs/kit": "^1.0.0" + } + }, + "node_modules/@sveltejs/kit": { + "version": "1.20.5", + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-1.20.5.tgz", + "integrity": "sha512-8rJYZ2boRlO75lwpbpB+DlSzIwmTuamXTpVlDtw4dBk86o3UaDe/+Ro4xCsV/4FtTw2U8xPHyV83edAWbQHG0w==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@sveltejs/vite-plugin-svelte": "^2.4.1", + "@types/cookie": "^0.5.1", + "cookie": "^0.5.0", + "devalue": "^4.3.1", + "esm-env": "^1.0.0", + "kleur": "^4.1.5", + "magic-string": "^0.30.0", + "mime": "^3.0.0", + "sade": "^1.8.1", + "set-cookie-parser": "^2.6.0", + "sirv": "^2.0.2", + "undici": "~5.22.0" + }, + "bin": { + "svelte-kit": "svelte-kit.js" + }, + "engines": { + "node": "^16.14 || >=18" + }, + "peerDependencies": { + "svelte": "^3.54.0 || ^4.0.0-next.0", + "vite": "^4.0.0" + } + }, + "node_modules/@sveltejs/vite-plugin-svelte": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-2.4.2.tgz", + "integrity": "sha512-ePfcC48ftMKhkT0OFGdOyycYKnnkT6i/buzey+vHRTR/JpQvuPzzhf1PtKqCDQfJRgoPSN2vscXs6gLigx/zGw==", + "dev": true, + "dependencies": { + "@sveltejs/vite-plugin-svelte-inspector": "^1.0.3", + "debug": "^4.3.4", + "deepmerge": "^4.3.1", + "kleur": "^4.1.5", + "magic-string": "^0.30.0", + "svelte-hmr": "^0.15.2", + "vitefu": "^0.2.4" + }, + "engines": { + "node": "^14.18.0 || >= 16" + }, + "peerDependencies": { + "svelte": "^3.54.0 || ^4.0.0", + "vite": "^4.0.0" + } + }, + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-1.0.3.tgz", + "integrity": "sha512-Khdl5jmmPN6SUsVuqSXatKpQTMIifoQPDanaxC84m9JxIibWvSABJyHpyys0Z+1yYrxY5TTEQm+6elh0XCMaOA==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": "^14.18.0 || >= 16" + }, + "peerDependencies": { + "@sveltejs/vite-plugin-svelte": "^2.2.0", + "svelte": "^3.54.0 || ^4.0.0", + "vite": "^4.0.0" + } + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz", + "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, + "node_modules/@types/cookie": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.5.1.tgz", + "integrity": "sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==", + "dev": true + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dev": true, + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001507", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001507.tgz", + "integrity": "sha512-SFpUDoSLCaE5XYL2jfqe9ova/pbQHEmbheDf5r4diNwbAgR3qxM9NQtfsiSscjqoya5K7kFcHPUQ+VsUkIJR4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/devalue": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz", + "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==", + "dev": true + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.440", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.440.tgz", + "integrity": "sha512-r6dCgNpRhPwiWlxbHzZQ/d9swfPaEJGi8ekqRBwQYaR3WmA5VkqQfBWSDDjuJU1ntO+W9tHx8OHV/96Q8e0dVw==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.43.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.43.0.tgz", + "integrity": "sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.43.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-svelte": { + "version": "2.31.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-2.31.1.tgz", + "integrity": "sha512-08v+DqzHiwIVEbi+266D7+BDhayp9OSqCwa/lHaZlZOlFY0vZLYs/h7SkkUPzA5fTVt8OUJBtvCxFiWEYOvvGg==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@jridgewell/sourcemap-codec": "^1.4.14", + "debug": "^4.3.1", + "esutils": "^2.0.3", + "known-css-properties": "^0.27.0", + "postcss": "^8.4.5", + "postcss-load-config": "^3.1.4", + "postcss-safe-parser": "^6.0.0", + "postcss-selector-parser": "^6.0.11", + "semver": "^7.5.3", + "svelte-eslint-parser": "^0.31.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ota-meshi" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0-0", + "svelte": "^3.37.0 || ^4.0.0-0" + }, + "peerDependenciesMeta": { + "svelte": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esm-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz", + "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==", + "dev": true + }, + "node_modules/espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/highlight.js": { + "version": "11.8.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz", + "integrity": "sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-meta-resolve": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.0.0.tgz", + "integrity": "sha512-4IwhLhNNA8yy445rPjD/lWh++7hMDOml2eHtd58eG7h+qK3EryMuuRbsHGPikCoAgIkkDnckKfWSk2iDla/ejg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jiti": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", + "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/known-css-properties": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.27.0.tgz", + "integrity": "sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==", + "dev": true + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minidenticons": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/minidenticons/-/minidenticons-4.2.0.tgz", + "integrity": "sha512-2T3VU1N30yI3kXMRbdLsJ5DgsBoGLi2+2hbm1xTOU2RQXWW5wwpmz9XQohVSsVlhymf4W69sMGj6s39t796PBA==", + "engines": { + "node": ">=15.14.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-safe-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "dev": true, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/postcss-scss": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.6.tgz", + "integrity": "sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-scss" + } + ], + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.4.19" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-svelte": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.10.1.tgz", + "integrity": "sha512-Wlq7Z5v2ueCubWo0TZzKc9XHcm7TDxqcuzRuGd0gcENfzfT4JZ9yDlCbEgxWgiPmLHkBjfOtpAWkcT28MCDpUQ==", + "dev": true, + "peerDependencies": { + "prettier": "^1.16.4 || ^2.0.0", + "svelte": "^3.2.0 || ^4.0.0-next.0" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.2.tgz", + "integrity": "sha512-VLnkxZMDr3jpxgtmS8pQZ0UvhslmF4ADq/9w4erkctbgjCqLW9oa89fJuXEs4ZmgyoF7Dm8rMDKSS5b5u2hHUg==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sirv": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", + "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sucrase": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", + "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svelte": { + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/svelte-eslint-parser": { + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-0.31.0.tgz", + "integrity": "sha512-/31RpBf/e3YjoFphjsyo3JRyN1r4UalGAGafXrZ6EJK4h4COOO0rbfBoen5byGsXnIJKsrlC1lkEd2Vzpq2IDg==", + "dev": true, + "dependencies": { + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "postcss": "^8.4.23", + "postcss-scss": "^4.0.6" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ota-meshi" + }, + "peerDependencies": { + "svelte": "^3.37.0 || ^4.0.0-0" + }, + "peerDependenciesMeta": { + "svelte": { + "optional": true + } + } + }, + "node_modules/svelte-hmr": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.2.tgz", + "integrity": "sha512-q/bAruCvFLwvNbeE1x3n37TYFb3mTBJ6TrCq6p2CoFbSTNhDE9oAtEfpy+wmc9So8AG0Tja+X0/mJzX9tSfvIg==", + "dev": true, + "engines": { + "node": "^12.20 || ^14.13.1 || >= 16" + }, + "peerDependencies": { + "svelte": "^3.19.0 || ^4.0.0-next.0" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", + "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/tailwindcss/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/undici": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", + "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "dev": true, + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", + "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "dev": true, + "dependencies": { + "esbuild": "^0.17.5", + "postcss": "^8.4.23", + "rollup": "^3.21.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitefu": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.4.tgz", + "integrity": "sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==", + "dev": true, + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..dc9d2ac --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,37 @@ +{ + "name": "atscan-fe", + "version": "0.0.1", + "private": true, + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "lint": "prettier --plugin-search-dir . --check . && eslint .", + "format": "prettier --plugin-search-dir . --write ." + }, + "devDependencies": { + "@floating-ui/dom": "^1.4.2", + "@skeletonlabs/skeleton": "^1.8.0", + "@sveltejs/adapter-auto": "^2.0.0", + "@sveltejs/adapter-node": "^1.2.4", + "@sveltejs/kit": "^1.5.0", + "@tailwindcss/forms": "^0.5.3", + "autoprefixer": "^10.4.14", + "date-fns": "^2.30.0", + "eslint": "^8.28.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-svelte": "^2.26.0", + "lodash": "^4.17.21", + "postcss": "^8.4.24", + "prettier": "^2.8.0", + "prettier-plugin-svelte": "^2.8.1", + "svelte": "^3.54.0", + "tailwindcss": "^3.3.2", + "vite": "^4.3.0" + }, + "type": "module", + "dependencies": { + "highlight.js": "^11.8.0", + "minidenticons": "^4.2.0" + } +} diff --git a/frontend/postcss.config.cjs b/frontend/postcss.config.cjs new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/frontend/postcss.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/frontend/src/app.d.ts b/frontend/src/app.d.ts new file mode 100644 index 0000000..3e4ed20 --- /dev/null +++ b/frontend/src/app.d.ts @@ -0,0 +1,9 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +// and what to do when importing types +declare namespace App { + // interface Locals {} + // interface PageData {} + // interface Error {} + // interface Platform {} +} diff --git a/frontend/src/app.html b/frontend/src/app.html new file mode 100644 index 0000000..ec615f0 --- /dev/null +++ b/frontend/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/frontend/src/app.postcss b/frontend/src/app.postcss new file mode 100644 index 0000000..ce15868 --- /dev/null +++ b/frontend/src/app.postcss @@ -0,0 +1,5 @@ +/*place global styles here */ +html, +body { + @apply h-full overflow-hidden; +} diff --git a/frontend/src/lib/components/Breadcrumb.svelte b/frontend/src/lib/components/Breadcrumb.svelte new file mode 100644 index 0000000..9ac439c --- /dev/null +++ b/frontend/src/lib/components/Breadcrumb.svelte @@ -0,0 +1,21 @@ + + + \ No newline at end of file diff --git a/frontend/src/lib/utils.js b/frontend/src/lib/utils.js new file mode 100644 index 0000000..07663ec --- /dev/null +++ b/frontend/src/lib/utils.js @@ -0,0 +1,11 @@ + +import { formatDistanceToNow } from 'date-fns'; +import { minidenticon } from 'minidenticons'; + +export function dateDistance (date) { + return formatDistanceToNow(new Date(date)) +} + +export function identicon (...args) { + return 'data:image/svg+xml;utf8,' + encodeURIComponent(minidenticon(...args)) +} \ No newline at end of file diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte new file mode 100644 index 0000000..7ae0d57 --- /dev/null +++ b/frontend/src/routes/+layout.svelte @@ -0,0 +1,70 @@ + + + + + + + + + ATScan +
+ + + +
+
+ + + + GitHub + + + +
+
+ + +
diff --git a/frontend/src/routes/+page.js b/frontend/src/routes/+page.js new file mode 100644 index 0000000..15879c0 --- /dev/null +++ b/frontend/src/routes/+page.js @@ -0,0 +1,6 @@ +import { redirect } from '@sveltejs/kit'; + +export function load() { + // ... + throw redirect(302, '/did'); +} \ No newline at end of file diff --git a/frontend/src/routes/+page.svelte b/frontend/src/routes/+page.svelte new file mode 100644 index 0000000..0420591 --- /dev/null +++ b/frontend/src/routes/+page.svelte @@ -0,0 +1,6 @@ + +
+ + \ No newline at end of file diff --git a/frontend/src/routes/did/+page.js b/frontend/src/routes/did/+page.js new file mode 100644 index 0000000..69b107c --- /dev/null +++ b/frontend/src/routes/did/+page.js @@ -0,0 +1,13 @@ +import * as _ from "lodash"; + +/** @type {import('./$types').PageLoad} */ +export async function load({ params }) { + const res = await fetch("https://api.atscan.net/did"); + const did = _.orderBy(await res.json(), ["time"], [ + "desc", + ]); + return { + did, + plc: await (await fetch("https://api.atscan.net/plc")).json() + }; +} diff --git a/frontend/src/routes/did/+page.svelte b/frontend/src/routes/did/+page.svelte new file mode 100644 index 0000000..9fc9bb9 --- /dev/null +++ b/frontend/src/routes/did/+page.svelte @@ -0,0 +1,97 @@ + + +
+

DIDs

+ +
+ +
+ + + + + + \ No newline at end of file diff --git a/frontend/src/routes/did:[id]/+page.js b/frontend/src/routes/did:[id]/+page.js new file mode 100644 index 0000000..a4b1426 --- /dev/null +++ b/frontend/src/routes/did:[id]/+page.js @@ -0,0 +1,9 @@ + +export async function load({ params }) { + const did = `did:${params.id}` + const res = await fetch(`https://api.atscan.net/${did}`); + return { + item: res.json(), + did + } +} \ No newline at end of file diff --git a/frontend/src/routes/did:[id]/+page.svelte b/frontend/src/routes/did:[id]/+page.svelte new file mode 100644 index 0000000..77b329c --- /dev/null +++ b/frontend/src/routes/did:[id]/+page.svelte @@ -0,0 +1,69 @@ + + +
+ ${item.env} federation`, link: `/did?federation=${item.env}` } + ]} /> +
+
+ +
+
+

+ did:plc:{item.did.replace(/^did:plc:/, '')} +

+
+ {@html handles.map(h => `@${h}`).join(', ')} +
+
+
+ +

Revisions ({sourceData.length})

+
+ +

Source

+ + + + \ No newline at end of file diff --git a/frontend/src/routes/pds/+page.js b/frontend/src/routes/pds/+page.js new file mode 100644 index 0000000..abbab91 --- /dev/null +++ b/frontend/src/routes/pds/+page.js @@ -0,0 +1,14 @@ +import * as _ from "lodash"; + +/** @type {import('./$types').PageLoad} */ +export async function load({ params }) { + const res = await fetch("https://api.atscan.net/pds"); + const pds = _.orderBy(await res.json(), ["env", "inspect.current.ms"], [ + "asc", + "asc", + ]); + return { + pds, + plc: await (await fetch("https://api.atscan.net/plc")).json() + }; +} diff --git a/frontend/src/routes/pds/+page.svelte b/frontend/src/routes/pds/+page.svelte new file mode 100644 index 0000000..da5111f --- /dev/null +++ b/frontend/src/routes/pds/+page.svelte @@ -0,0 +1,125 @@ + + +
+

PDS Instances ({sourceData.length})

+ +
+ + + + + + + +
+ + + \ No newline at end of file diff --git a/frontend/src/routes/pds/[host]/+page.js b/frontend/src/routes/pds/[host]/+page.js new file mode 100644 index 0000000..79d4ff5 --- /dev/null +++ b/frontend/src/routes/pds/[host]/+page.js @@ -0,0 +1,7 @@ + +export async function load({ params }) { + const res = await fetch(`https://api.atscan.net/pds/${params.host}`); + return { + item: res.json() + } +} \ No newline at end of file diff --git a/frontend/src/routes/pds/[host]/+page.svelte b/frontend/src/routes/pds/[host]/+page.svelte new file mode 100644 index 0000000..ea0b362 --- /dev/null +++ b/frontend/src/routes/pds/[host]/+page.svelte @@ -0,0 +1,22 @@ + + +
+ ${item.env} federation`, link: `/pds?federation=${item.env}` } + ]} /> +

+ {item.host} +

+ +

Source

+ + + +
\ No newline at end of file diff --git a/frontend/src/routes/plc/+page.js b/frontend/src/routes/plc/+page.js new file mode 100644 index 0000000..3412d2c --- /dev/null +++ b/frontend/src/routes/plc/+page.js @@ -0,0 +1,10 @@ +import * as _ from "lodash"; + +/** @type {import('./$types').PageLoad} */ +export async function load({ params }) { + const res = await fetch("https://api.atscan.net/plc"); + const plc = _.orderBy(await res.json(), ["code"], [ + "asc", + ]); + return { plc }; +} diff --git a/frontend/src/routes/plc/+page.svelte b/frontend/src/routes/plc/+page.svelte new file mode 100644 index 0000000..6b18b97 --- /dev/null +++ b/frontend/src/routes/plc/+page.svelte @@ -0,0 +1,52 @@ + + + +
+

PLC Directories ({sourceData.length})

+ + + + +
+ \ No newline at end of file diff --git a/frontend/static/cc/_abkhazia.png b/frontend/static/cc/_abkhazia.png new file mode 100644 index 0000000..ad5d130 Binary files /dev/null and b/frontend/static/cc/_abkhazia.png differ diff --git a/frontend/static/cc/_basque-country.png b/frontend/static/cc/_basque-country.png new file mode 100644 index 0000000..616a65a Binary files /dev/null and b/frontend/static/cc/_basque-country.png differ diff --git a/frontend/static/cc/_british-antarctic-territory.png b/frontend/static/cc/_british-antarctic-territory.png new file mode 100644 index 0000000..114bcba Binary files /dev/null and b/frontend/static/cc/_british-antarctic-territory.png differ diff --git a/frontend/static/cc/_commonwealth.png b/frontend/static/cc/_commonwealth.png new file mode 100644 index 0000000..2cb8848 Binary files /dev/null and b/frontend/static/cc/_commonwealth.png differ diff --git a/frontend/static/cc/_england.png b/frontend/static/cc/_england.png new file mode 100644 index 0000000..87d6ded Binary files /dev/null and b/frontend/static/cc/_england.png differ diff --git a/frontend/static/cc/_gosquared.png b/frontend/static/cc/_gosquared.png new file mode 100644 index 0000000..87fa676 Binary files /dev/null and b/frontend/static/cc/_gosquared.png differ diff --git a/frontend/static/cc/_kosovo.png b/frontend/static/cc/_kosovo.png new file mode 100644 index 0000000..e143b3a Binary files /dev/null and b/frontend/static/cc/_kosovo.png differ diff --git a/frontend/static/cc/_mars.png b/frontend/static/cc/_mars.png new file mode 100644 index 0000000..7a472a7 Binary files /dev/null and b/frontend/static/cc/_mars.png differ diff --git a/frontend/static/cc/_nagorno-karabakh.png b/frontend/static/cc/_nagorno-karabakh.png new file mode 100644 index 0000000..53d7a93 Binary files /dev/null and b/frontend/static/cc/_nagorno-karabakh.png differ diff --git a/frontend/static/cc/_nato.png b/frontend/static/cc/_nato.png new file mode 100644 index 0000000..f52845a Binary files /dev/null and b/frontend/static/cc/_nato.png differ diff --git a/frontend/static/cc/_northern-cyprus.png b/frontend/static/cc/_northern-cyprus.png new file mode 100644 index 0000000..37e5cf6 Binary files /dev/null and b/frontend/static/cc/_northern-cyprus.png differ diff --git a/frontend/static/cc/_olympics.png b/frontend/static/cc/_olympics.png new file mode 100644 index 0000000..c4a764c Binary files /dev/null and b/frontend/static/cc/_olympics.png differ diff --git a/frontend/static/cc/_red-cross.png b/frontend/static/cc/_red-cross.png new file mode 100644 index 0000000..c672f88 Binary files /dev/null and b/frontend/static/cc/_red-cross.png differ diff --git a/frontend/static/cc/_scotland.png b/frontend/static/cc/_scotland.png new file mode 100644 index 0000000..3cccbb8 Binary files /dev/null and b/frontend/static/cc/_scotland.png differ diff --git a/frontend/static/cc/_somaliland.png b/frontend/static/cc/_somaliland.png new file mode 100644 index 0000000..46ce0d5 Binary files /dev/null and b/frontend/static/cc/_somaliland.png differ diff --git a/frontend/static/cc/_south-ossetia.png b/frontend/static/cc/_south-ossetia.png new file mode 100644 index 0000000..c076713 Binary files /dev/null and b/frontend/static/cc/_south-ossetia.png differ diff --git a/frontend/static/cc/_united-nations.png b/frontend/static/cc/_united-nations.png new file mode 100644 index 0000000..732eef9 Binary files /dev/null and b/frontend/static/cc/_united-nations.png differ diff --git a/frontend/static/cc/_unknown.png b/frontend/static/cc/_unknown.png new file mode 100644 index 0000000..44a6fc9 Binary files /dev/null and b/frontend/static/cc/_unknown.png differ diff --git a/frontend/static/cc/_wales.png b/frontend/static/cc/_wales.png new file mode 100644 index 0000000..aad4ede Binary files /dev/null and b/frontend/static/cc/_wales.png differ diff --git a/frontend/static/cc/ad.png b/frontend/static/cc/ad.png new file mode 100644 index 0000000..c330f5c Binary files /dev/null and b/frontend/static/cc/ad.png differ diff --git a/frontend/static/cc/ae.png b/frontend/static/cc/ae.png new file mode 100644 index 0000000..351b5c5 Binary files /dev/null and b/frontend/static/cc/ae.png differ diff --git a/frontend/static/cc/af.png b/frontend/static/cc/af.png new file mode 100644 index 0000000..1ae8674 Binary files /dev/null and b/frontend/static/cc/af.png differ diff --git a/frontend/static/cc/ag.png b/frontend/static/cc/ag.png new file mode 100644 index 0000000..0f22d74 Binary files /dev/null and b/frontend/static/cc/ag.png differ diff --git a/frontend/static/cc/ai.png b/frontend/static/cc/ai.png new file mode 100644 index 0000000..3a45b36 Binary files /dev/null and b/frontend/static/cc/ai.png differ diff --git a/frontend/static/cc/al.png b/frontend/static/cc/al.png new file mode 100644 index 0000000..49d01e8 Binary files /dev/null and b/frontend/static/cc/al.png differ diff --git a/frontend/static/cc/am.png b/frontend/static/cc/am.png new file mode 100644 index 0000000..6255e2e Binary files /dev/null and b/frontend/static/cc/am.png differ diff --git a/frontend/static/cc/an.png b/frontend/static/cc/an.png new file mode 100644 index 0000000..0fc1c3b Binary files /dev/null and b/frontend/static/cc/an.png differ diff --git a/frontend/static/cc/ao.png b/frontend/static/cc/ao.png new file mode 100644 index 0000000..f98f37b Binary files /dev/null and b/frontend/static/cc/ao.png differ diff --git a/frontend/static/cc/aq.png b/frontend/static/cc/aq.png new file mode 100644 index 0000000..a502638 Binary files /dev/null and b/frontend/static/cc/aq.png differ diff --git a/frontend/static/cc/ar.png b/frontend/static/cc/ar.png new file mode 100644 index 0000000..e1fa97b Binary files /dev/null and b/frontend/static/cc/ar.png differ diff --git a/frontend/static/cc/as.png b/frontend/static/cc/as.png new file mode 100644 index 0000000..6b79481 Binary files /dev/null and b/frontend/static/cc/as.png differ diff --git a/frontend/static/cc/at.png b/frontend/static/cc/at.png new file mode 100644 index 0000000..794bd2f Binary files /dev/null and b/frontend/static/cc/at.png differ diff --git a/frontend/static/cc/au.png b/frontend/static/cc/au.png new file mode 100644 index 0000000..11f4d1c Binary files /dev/null and b/frontend/static/cc/au.png differ diff --git a/frontend/static/cc/aw.png b/frontend/static/cc/aw.png new file mode 100644 index 0000000..98e7300 Binary files /dev/null and b/frontend/static/cc/aw.png differ diff --git a/frontend/static/cc/ax.png b/frontend/static/cc/ax.png new file mode 100644 index 0000000..19312e9 Binary files /dev/null and b/frontend/static/cc/ax.png differ diff --git a/frontend/static/cc/az.png b/frontend/static/cc/az.png new file mode 100644 index 0000000..9e2c6ba Binary files /dev/null and b/frontend/static/cc/az.png differ diff --git a/frontend/static/cc/ba.png b/frontend/static/cc/ba.png new file mode 100644 index 0000000..24b609d Binary files /dev/null and b/frontend/static/cc/ba.png differ diff --git a/frontend/static/cc/bb.png b/frontend/static/cc/bb.png new file mode 100644 index 0000000..d69f58d Binary files /dev/null and b/frontend/static/cc/bb.png differ diff --git a/frontend/static/cc/bd.png b/frontend/static/cc/bd.png new file mode 100644 index 0000000..266eff8 Binary files /dev/null and b/frontend/static/cc/bd.png differ diff --git a/frontend/static/cc/be.png b/frontend/static/cc/be.png new file mode 100644 index 0000000..e3ea806 Binary files /dev/null and b/frontend/static/cc/be.png differ diff --git a/frontend/static/cc/bf.png b/frontend/static/cc/bf.png new file mode 100644 index 0000000..20c6c2e Binary files /dev/null and b/frontend/static/cc/bf.png differ diff --git a/frontend/static/cc/bg.png b/frontend/static/cc/bg.png new file mode 100644 index 0000000..775550c Binary files /dev/null and b/frontend/static/cc/bg.png differ diff --git a/frontend/static/cc/bh.png b/frontend/static/cc/bh.png new file mode 100644 index 0000000..b3eb851 Binary files /dev/null and b/frontend/static/cc/bh.png differ diff --git a/frontend/static/cc/bi.png b/frontend/static/cc/bi.png new file mode 100644 index 0000000..394a829 Binary files /dev/null and b/frontend/static/cc/bi.png differ diff --git a/frontend/static/cc/bj.png b/frontend/static/cc/bj.png new file mode 100644 index 0000000..d8842e3 Binary files /dev/null and b/frontend/static/cc/bj.png differ diff --git a/frontend/static/cc/bl.png b/frontend/static/cc/bl.png new file mode 100644 index 0000000..67a69ec Binary files /dev/null and b/frontend/static/cc/bl.png differ diff --git a/frontend/static/cc/bm.png b/frontend/static/cc/bm.png new file mode 100644 index 0000000..132e990 Binary files /dev/null and b/frontend/static/cc/bm.png differ diff --git a/frontend/static/cc/bn.png b/frontend/static/cc/bn.png new file mode 100644 index 0000000..62882e8 Binary files /dev/null and b/frontend/static/cc/bn.png differ diff --git a/frontend/static/cc/bo.png b/frontend/static/cc/bo.png new file mode 100644 index 0000000..7f4186b Binary files /dev/null and b/frontend/static/cc/bo.png differ diff --git a/frontend/static/cc/br.png b/frontend/static/cc/br.png new file mode 100644 index 0000000..6bb4378 Binary files /dev/null and b/frontend/static/cc/br.png differ diff --git a/frontend/static/cc/bs.png b/frontend/static/cc/bs.png new file mode 100644 index 0000000..6a08b9d Binary files /dev/null and b/frontend/static/cc/bs.png differ diff --git a/frontend/static/cc/bt.png b/frontend/static/cc/bt.png new file mode 100644 index 0000000..fe1df29 Binary files /dev/null and b/frontend/static/cc/bt.png differ diff --git a/frontend/static/cc/bv.png b/frontend/static/cc/bv.png new file mode 100644 index 0000000..160b6b5 Binary files /dev/null and b/frontend/static/cc/bv.png differ diff --git a/frontend/static/cc/bw.png b/frontend/static/cc/bw.png new file mode 100644 index 0000000..b4a502b Binary files /dev/null and b/frontend/static/cc/bw.png differ diff --git a/frontend/static/cc/by.png b/frontend/static/cc/by.png new file mode 100644 index 0000000..55b61e8 Binary files /dev/null and b/frontend/static/cc/by.png differ diff --git a/frontend/static/cc/bz.png b/frontend/static/cc/bz.png new file mode 100644 index 0000000..fd97f8a Binary files /dev/null and b/frontend/static/cc/bz.png differ diff --git a/frontend/static/cc/ca.png b/frontend/static/cc/ca.png new file mode 100644 index 0000000..06671e7 Binary files /dev/null and b/frontend/static/cc/ca.png differ diff --git a/frontend/static/cc/cc.png b/frontend/static/cc/cc.png new file mode 100644 index 0000000..c10a918 Binary files /dev/null and b/frontend/static/cc/cc.png differ diff --git a/frontend/static/cc/cd.png b/frontend/static/cc/cd.png new file mode 100644 index 0000000..724caf2 Binary files /dev/null and b/frontend/static/cc/cd.png differ diff --git a/frontend/static/cc/cf.png b/frontend/static/cc/cf.png new file mode 100644 index 0000000..32cb360 Binary files /dev/null and b/frontend/static/cc/cf.png differ diff --git a/frontend/static/cc/cg.png b/frontend/static/cc/cg.png new file mode 100644 index 0000000..7a1bc57 Binary files /dev/null and b/frontend/static/cc/cg.png differ diff --git a/frontend/static/cc/ch.png b/frontend/static/cc/ch.png new file mode 100644 index 0000000..de304f3 Binary files /dev/null and b/frontend/static/cc/ch.png differ diff --git a/frontend/static/cc/ci.png b/frontend/static/cc/ci.png new file mode 100644 index 0000000..47251d3 Binary files /dev/null and b/frontend/static/cc/ci.png differ diff --git a/frontend/static/cc/ck.png b/frontend/static/cc/ck.png new file mode 100644 index 0000000..d74d1f4 Binary files /dev/null and b/frontend/static/cc/ck.png differ diff --git a/frontend/static/cc/cl.png b/frontend/static/cc/cl.png new file mode 100644 index 0000000..57bf33e Binary files /dev/null and b/frontend/static/cc/cl.png differ diff --git a/frontend/static/cc/cm.png b/frontend/static/cc/cm.png new file mode 100644 index 0000000..1d13837 Binary files /dev/null and b/frontend/static/cc/cm.png differ diff --git a/frontend/static/cc/cn.png b/frontend/static/cc/cn.png new file mode 100644 index 0000000..5ac1e13 Binary files /dev/null and b/frontend/static/cc/cn.png differ diff --git a/frontend/static/cc/co.png b/frontend/static/cc/co.png new file mode 100644 index 0000000..85db6f6 Binary files /dev/null and b/frontend/static/cc/co.png differ diff --git a/frontend/static/cc/cr.png b/frontend/static/cc/cr.png new file mode 100644 index 0000000..17eeb62 Binary files /dev/null and b/frontend/static/cc/cr.png differ diff --git a/frontend/static/cc/cs.png b/frontend/static/cc/cs.png new file mode 100644 index 0000000..8254790 Binary files /dev/null and b/frontend/static/cc/cs.png differ diff --git a/frontend/static/cc/ct.png b/frontend/static/cc/ct.png new file mode 100644 index 0000000..1e8b74b Binary files /dev/null and b/frontend/static/cc/ct.png differ diff --git a/frontend/static/cc/cu.png b/frontend/static/cc/cu.png new file mode 100644 index 0000000..cd80f6d Binary files /dev/null and b/frontend/static/cc/cu.png differ diff --git a/frontend/static/cc/cv.png b/frontend/static/cc/cv.png new file mode 100644 index 0000000..4fac2a3 Binary files /dev/null and b/frontend/static/cc/cv.png differ diff --git a/frontend/static/cc/cw.png b/frontend/static/cc/cw.png new file mode 100644 index 0000000..340cee8 Binary files /dev/null and b/frontend/static/cc/cw.png differ diff --git a/frontend/static/cc/cx.png b/frontend/static/cc/cx.png new file mode 100644 index 0000000..79452bb Binary files /dev/null and b/frontend/static/cc/cx.png differ diff --git a/frontend/static/cc/cy.png b/frontend/static/cc/cy.png new file mode 100644 index 0000000..664cd5c Binary files /dev/null and b/frontend/static/cc/cy.png differ diff --git a/frontend/static/cc/cz.png b/frontend/static/cc/cz.png new file mode 100644 index 0000000..196f74e Binary files /dev/null and b/frontend/static/cc/cz.png differ diff --git a/frontend/static/cc/de.png b/frontend/static/cc/de.png new file mode 100644 index 0000000..8458c23 Binary files /dev/null and b/frontend/static/cc/de.png differ diff --git a/frontend/static/cc/dj.png b/frontend/static/cc/dj.png new file mode 100644 index 0000000..78660a1 Binary files /dev/null and b/frontend/static/cc/dj.png differ diff --git a/frontend/static/cc/dk.png b/frontend/static/cc/dk.png new file mode 100644 index 0000000..a81768c Binary files /dev/null and b/frontend/static/cc/dk.png differ diff --git a/frontend/static/cc/dm.png b/frontend/static/cc/dm.png new file mode 100644 index 0000000..a9d8f89 Binary files /dev/null and b/frontend/static/cc/dm.png differ diff --git a/frontend/static/cc/do.png b/frontend/static/cc/do.png new file mode 100644 index 0000000..4b2c207 Binary files /dev/null and b/frontend/static/cc/do.png differ diff --git a/frontend/static/cc/dz.png b/frontend/static/cc/dz.png new file mode 100644 index 0000000..705dbba Binary files /dev/null and b/frontend/static/cc/dz.png differ diff --git a/frontend/static/cc/ec.png b/frontend/static/cc/ec.png new file mode 100644 index 0000000..234cf8c Binary files /dev/null and b/frontend/static/cc/ec.png differ diff --git a/frontend/static/cc/ee.png b/frontend/static/cc/ee.png new file mode 100644 index 0000000..c8f3721 Binary files /dev/null and b/frontend/static/cc/ee.png differ diff --git a/frontend/static/cc/eg.png b/frontend/static/cc/eg.png new file mode 100644 index 0000000..96c93ed Binary files /dev/null and b/frontend/static/cc/eg.png differ diff --git a/frontend/static/cc/eh.png b/frontend/static/cc/eh.png new file mode 100644 index 0000000..621dc79 Binary files /dev/null and b/frontend/static/cc/eh.png differ diff --git a/frontend/static/cc/er.png b/frontend/static/cc/er.png new file mode 100644 index 0000000..3530096 Binary files /dev/null and b/frontend/static/cc/er.png differ diff --git a/frontend/static/cc/es.png b/frontend/static/cc/es.png new file mode 100644 index 0000000..c915d36 Binary files /dev/null and b/frontend/static/cc/es.png differ diff --git a/frontend/static/cc/et.png b/frontend/static/cc/et.png new file mode 100644 index 0000000..f743e64 Binary files /dev/null and b/frontend/static/cc/et.png differ diff --git a/frontend/static/cc/eu.png b/frontend/static/cc/eu.png new file mode 100644 index 0000000..70378d6 Binary files /dev/null and b/frontend/static/cc/eu.png differ diff --git a/frontend/static/cc/fi.png b/frontend/static/cc/fi.png new file mode 100644 index 0000000..627ad2e Binary files /dev/null and b/frontend/static/cc/fi.png differ diff --git a/frontend/static/cc/fj.png b/frontend/static/cc/fj.png new file mode 100644 index 0000000..a90ae00 Binary files /dev/null and b/frontend/static/cc/fj.png differ diff --git a/frontend/static/cc/fk.png b/frontend/static/cc/fk.png new file mode 100644 index 0000000..da821cc Binary files /dev/null and b/frontend/static/cc/fk.png differ diff --git a/frontend/static/cc/fm.png b/frontend/static/cc/fm.png new file mode 100644 index 0000000..5d73677 Binary files /dev/null and b/frontend/static/cc/fm.png differ diff --git a/frontend/static/cc/fo.png b/frontend/static/cc/fo.png new file mode 100644 index 0000000..4264083 Binary files /dev/null and b/frontend/static/cc/fo.png differ diff --git a/frontend/static/cc/fr.png b/frontend/static/cc/fr.png new file mode 100644 index 0000000..a76cb1a Binary files /dev/null and b/frontend/static/cc/fr.png differ diff --git a/frontend/static/cc/ga.png b/frontend/static/cc/ga.png new file mode 100644 index 0000000..3e8abf1 Binary files /dev/null and b/frontend/static/cc/ga.png differ diff --git a/frontend/static/cc/gb.png b/frontend/static/cc/gb.png new file mode 100644 index 0000000..99a3cc3 Binary files /dev/null and b/frontend/static/cc/gb.png differ diff --git a/frontend/static/cc/gd.png b/frontend/static/cc/gd.png new file mode 100644 index 0000000..e07a669 Binary files /dev/null and b/frontend/static/cc/gd.png differ diff --git a/frontend/static/cc/ge.png b/frontend/static/cc/ge.png new file mode 100644 index 0000000..086967e Binary files /dev/null and b/frontend/static/cc/ge.png differ diff --git a/frontend/static/cc/gf.png b/frontend/static/cc/gf.png new file mode 100644 index 0000000..8332c4e Binary files /dev/null and b/frontend/static/cc/gf.png differ diff --git a/frontend/static/cc/gg.png b/frontend/static/cc/gg.png new file mode 100644 index 0000000..f2c1b71 Binary files /dev/null and b/frontend/static/cc/gg.png differ diff --git a/frontend/static/cc/gh.png b/frontend/static/cc/gh.png new file mode 100644 index 0000000..b07163d Binary files /dev/null and b/frontend/static/cc/gh.png differ diff --git a/frontend/static/cc/gi.png b/frontend/static/cc/gi.png new file mode 100644 index 0000000..7a79f3e Binary files /dev/null and b/frontend/static/cc/gi.png differ diff --git a/frontend/static/cc/gl.png b/frontend/static/cc/gl.png new file mode 100644 index 0000000..a2ed3e9 Binary files /dev/null and b/frontend/static/cc/gl.png differ diff --git a/frontend/static/cc/gm.png b/frontend/static/cc/gm.png new file mode 100644 index 0000000..b056657 Binary files /dev/null and b/frontend/static/cc/gm.png differ diff --git a/frontend/static/cc/gn.png b/frontend/static/cc/gn.png new file mode 100644 index 0000000..243d8f0 Binary files /dev/null and b/frontend/static/cc/gn.png differ diff --git a/frontend/static/cc/gp.png b/frontend/static/cc/gp.png new file mode 100644 index 0000000..dbb086d Binary files /dev/null and b/frontend/static/cc/gp.png differ diff --git a/frontend/static/cc/gq.png b/frontend/static/cc/gq.png new file mode 100644 index 0000000..9168ef2 Binary files /dev/null and b/frontend/static/cc/gq.png differ diff --git a/frontend/static/cc/gr.png b/frontend/static/cc/gr.png new file mode 100644 index 0000000..9321a1e Binary files /dev/null and b/frontend/static/cc/gr.png differ diff --git a/frontend/static/cc/gs.png b/frontend/static/cc/gs.png new file mode 100644 index 0000000..fbd3fd7 Binary files /dev/null and b/frontend/static/cc/gs.png differ diff --git a/frontend/static/cc/gt.png b/frontend/static/cc/gt.png new file mode 100644 index 0000000..dacd490 Binary files /dev/null and b/frontend/static/cc/gt.png differ diff --git a/frontend/static/cc/gu.png b/frontend/static/cc/gu.png new file mode 100644 index 0000000..b0ac67b Binary files /dev/null and b/frontend/static/cc/gu.png differ diff --git a/frontend/static/cc/gw.png b/frontend/static/cc/gw.png new file mode 100644 index 0000000..c1e5415 Binary files /dev/null and b/frontend/static/cc/gw.png differ diff --git a/frontend/static/cc/gy.png b/frontend/static/cc/gy.png new file mode 100644 index 0000000..63d5148 Binary files /dev/null and b/frontend/static/cc/gy.png differ diff --git a/frontend/static/cc/hk.png b/frontend/static/cc/hk.png new file mode 100644 index 0000000..a4cf92c Binary files /dev/null and b/frontend/static/cc/hk.png differ diff --git a/frontend/static/cc/hm.png b/frontend/static/cc/hm.png new file mode 100644 index 0000000..a01389a Binary files /dev/null and b/frontend/static/cc/hm.png differ diff --git a/frontend/static/cc/hn.png b/frontend/static/cc/hn.png new file mode 100644 index 0000000..51f6eae Binary files /dev/null and b/frontend/static/cc/hn.png differ diff --git a/frontend/static/cc/hr.png b/frontend/static/cc/hr.png new file mode 100644 index 0000000..6e86e8d Binary files /dev/null and b/frontend/static/cc/hr.png differ diff --git a/frontend/static/cc/ht.png b/frontend/static/cc/ht.png new file mode 100644 index 0000000..3522053 Binary files /dev/null and b/frontend/static/cc/ht.png differ diff --git a/frontend/static/cc/hu.png b/frontend/static/cc/hu.png new file mode 100644 index 0000000..ae5c6c9 Binary files /dev/null and b/frontend/static/cc/hu.png differ diff --git a/frontend/static/cc/ic.png b/frontend/static/cc/ic.png new file mode 100644 index 0000000..c1d8d46 Binary files /dev/null and b/frontend/static/cc/ic.png differ diff --git a/frontend/static/cc/id.png b/frontend/static/cc/id.png new file mode 100644 index 0000000..0640473 Binary files /dev/null and b/frontend/static/cc/id.png differ diff --git a/frontend/static/cc/ie.png b/frontend/static/cc/ie.png new file mode 100644 index 0000000..c970d38 Binary files /dev/null and b/frontend/static/cc/ie.png differ diff --git a/frontend/static/cc/il.png b/frontend/static/cc/il.png new file mode 100644 index 0000000..2f58f14 Binary files /dev/null and b/frontend/static/cc/il.png differ diff --git a/frontend/static/cc/im.png b/frontend/static/cc/im.png new file mode 100644 index 0000000..c4a6b6a Binary files /dev/null and b/frontend/static/cc/im.png differ diff --git a/frontend/static/cc/in.png b/frontend/static/cc/in.png new file mode 100644 index 0000000..109281e Binary files /dev/null and b/frontend/static/cc/in.png differ diff --git a/frontend/static/cc/io.png b/frontend/static/cc/io.png new file mode 100644 index 0000000..3e74b6a Binary files /dev/null and b/frontend/static/cc/io.png differ diff --git a/frontend/static/cc/iq.png b/frontend/static/cc/iq.png new file mode 100644 index 0000000..f352c63 Binary files /dev/null and b/frontend/static/cc/iq.png differ diff --git a/frontend/static/cc/ir.png b/frontend/static/cc/ir.png new file mode 100644 index 0000000..6fcdfa3 Binary files /dev/null and b/frontend/static/cc/ir.png differ diff --git a/frontend/static/cc/is.png b/frontend/static/cc/is.png new file mode 100644 index 0000000..d535f7f Binary files /dev/null and b/frontend/static/cc/is.png differ diff --git a/frontend/static/cc/it.png b/frontend/static/cc/it.png new file mode 100644 index 0000000..a45445a Binary files /dev/null and b/frontend/static/cc/it.png differ diff --git a/frontend/static/cc/je.png b/frontend/static/cc/je.png new file mode 100644 index 0000000..2e04508 Binary files /dev/null and b/frontend/static/cc/je.png differ diff --git a/frontend/static/cc/jm.png b/frontend/static/cc/jm.png new file mode 100644 index 0000000..6d93858 Binary files /dev/null and b/frontend/static/cc/jm.png differ diff --git a/frontend/static/cc/jo.png b/frontend/static/cc/jo.png new file mode 100644 index 0000000..8e11b7b Binary files /dev/null and b/frontend/static/cc/jo.png differ diff --git a/frontend/static/cc/jp.png b/frontend/static/cc/jp.png new file mode 100644 index 0000000..a742140 Binary files /dev/null and b/frontend/static/cc/jp.png differ diff --git a/frontend/static/cc/ke.png b/frontend/static/cc/ke.png new file mode 100644 index 0000000..e1ac097 Binary files /dev/null and b/frontend/static/cc/ke.png differ diff --git a/frontend/static/cc/kg.png b/frontend/static/cc/kg.png new file mode 100644 index 0000000..70f5d3b Binary files /dev/null and b/frontend/static/cc/kg.png differ diff --git a/frontend/static/cc/kh.png b/frontend/static/cc/kh.png new file mode 100644 index 0000000..4690096 Binary files /dev/null and b/frontend/static/cc/kh.png differ diff --git a/frontend/static/cc/ki.png b/frontend/static/cc/ki.png new file mode 100644 index 0000000..df235ed Binary files /dev/null and b/frontend/static/cc/ki.png differ diff --git a/frontend/static/cc/km.png b/frontend/static/cc/km.png new file mode 100644 index 0000000..310d53a Binary files /dev/null and b/frontend/static/cc/km.png differ diff --git a/frontend/static/cc/kn.png b/frontend/static/cc/kn.png new file mode 100644 index 0000000..bb3efe4 Binary files /dev/null and b/frontend/static/cc/kn.png differ diff --git a/frontend/static/cc/kp.png b/frontend/static/cc/kp.png new file mode 100644 index 0000000..9716adc Binary files /dev/null and b/frontend/static/cc/kp.png differ diff --git a/frontend/static/cc/kr.png b/frontend/static/cc/kr.png new file mode 100644 index 0000000..f055313 Binary files /dev/null and b/frontend/static/cc/kr.png differ diff --git a/frontend/static/cc/kw.png b/frontend/static/cc/kw.png new file mode 100644 index 0000000..af0191c Binary files /dev/null and b/frontend/static/cc/kw.png differ diff --git a/frontend/static/cc/ky.png b/frontend/static/cc/ky.png new file mode 100644 index 0000000..c787eb0 Binary files /dev/null and b/frontend/static/cc/ky.png differ diff --git a/frontend/static/cc/kz.png b/frontend/static/cc/kz.png new file mode 100644 index 0000000..061b7c4 Binary files /dev/null and b/frontend/static/cc/kz.png differ diff --git a/frontend/static/cc/la.png b/frontend/static/cc/la.png new file mode 100644 index 0000000..d68c937 Binary files /dev/null and b/frontend/static/cc/la.png differ diff --git a/frontend/static/cc/lb.png b/frontend/static/cc/lb.png new file mode 100644 index 0000000..627a3aa Binary files /dev/null and b/frontend/static/cc/lb.png differ diff --git a/frontend/static/cc/lc.png b/frontend/static/cc/lc.png new file mode 100644 index 0000000..672aea9 Binary files /dev/null and b/frontend/static/cc/lc.png differ diff --git a/frontend/static/cc/li.png b/frontend/static/cc/li.png new file mode 100644 index 0000000..f71507f Binary files /dev/null and b/frontend/static/cc/li.png differ diff --git a/frontend/static/cc/lk.png b/frontend/static/cc/lk.png new file mode 100644 index 0000000..61887d2 Binary files /dev/null and b/frontend/static/cc/lk.png differ diff --git a/frontend/static/cc/lr.png b/frontend/static/cc/lr.png new file mode 100644 index 0000000..4918491 Binary files /dev/null and b/frontend/static/cc/lr.png differ diff --git a/frontend/static/cc/ls.png b/frontend/static/cc/ls.png new file mode 100644 index 0000000..c8a5493 Binary files /dev/null and b/frontend/static/cc/ls.png differ diff --git a/frontend/static/cc/lt.png b/frontend/static/cc/lt.png new file mode 100644 index 0000000..51513de Binary files /dev/null and b/frontend/static/cc/lt.png differ diff --git a/frontend/static/cc/lu.png b/frontend/static/cc/lu.png new file mode 100644 index 0000000..59b08cc Binary files /dev/null and b/frontend/static/cc/lu.png differ diff --git a/frontend/static/cc/lv.png b/frontend/static/cc/lv.png new file mode 100644 index 0000000..c31180d Binary files /dev/null and b/frontend/static/cc/lv.png differ diff --git a/frontend/static/cc/ly.png b/frontend/static/cc/ly.png new file mode 100644 index 0000000..8804e5a Binary files /dev/null and b/frontend/static/cc/ly.png differ diff --git a/frontend/static/cc/ma.png b/frontend/static/cc/ma.png new file mode 100644 index 0000000..2012156 Binary files /dev/null and b/frontend/static/cc/ma.png differ diff --git a/frontend/static/cc/mc.png b/frontend/static/cc/mc.png new file mode 100644 index 0000000..0640473 Binary files /dev/null and b/frontend/static/cc/mc.png differ diff --git a/frontend/static/cc/md.png b/frontend/static/cc/md.png new file mode 100644 index 0000000..01353a3 Binary files /dev/null and b/frontend/static/cc/md.png differ diff --git a/frontend/static/cc/me.png b/frontend/static/cc/me.png new file mode 100644 index 0000000..9e275ec Binary files /dev/null and b/frontend/static/cc/me.png differ diff --git a/frontend/static/cc/mf.png b/frontend/static/cc/mf.png new file mode 100644 index 0000000..4aafb1f Binary files /dev/null and b/frontend/static/cc/mf.png differ diff --git a/frontend/static/cc/mg.png b/frontend/static/cc/mg.png new file mode 100644 index 0000000..c55a2f4 Binary files /dev/null and b/frontend/static/cc/mg.png differ diff --git a/frontend/static/cc/mh.png b/frontend/static/cc/mh.png new file mode 100644 index 0000000..ed647dc Binary files /dev/null and b/frontend/static/cc/mh.png differ diff --git a/frontend/static/cc/mk.png b/frontend/static/cc/mk.png new file mode 100644 index 0000000..b8d15b8 Binary files /dev/null and b/frontend/static/cc/mk.png differ diff --git a/frontend/static/cc/ml.png b/frontend/static/cc/ml.png new file mode 100644 index 0000000..40b696d Binary files /dev/null and b/frontend/static/cc/ml.png differ diff --git a/frontend/static/cc/mm.png b/frontend/static/cc/mm.png new file mode 100644 index 0000000..547b1d0 Binary files /dev/null and b/frontend/static/cc/mm.png differ diff --git a/frontend/static/cc/mn.png b/frontend/static/cc/mn.png new file mode 100644 index 0000000..9c56174 Binary files /dev/null and b/frontend/static/cc/mn.png differ diff --git a/frontend/static/cc/mo.png b/frontend/static/cc/mo.png new file mode 100644 index 0000000..108c88c Binary files /dev/null and b/frontend/static/cc/mo.png differ diff --git a/frontend/static/cc/mp.png b/frontend/static/cc/mp.png new file mode 100644 index 0000000..0a80d84 Binary files /dev/null and b/frontend/static/cc/mp.png differ diff --git a/frontend/static/cc/mq.png b/frontend/static/cc/mq.png new file mode 100644 index 0000000..5d78e64 Binary files /dev/null and b/frontend/static/cc/mq.png differ diff --git a/frontend/static/cc/mr.png b/frontend/static/cc/mr.png new file mode 100644 index 0000000..1b4b7f4 Binary files /dev/null and b/frontend/static/cc/mr.png differ diff --git a/frontend/static/cc/ms.png b/frontend/static/cc/ms.png new file mode 100644 index 0000000..1689556 Binary files /dev/null and b/frontend/static/cc/ms.png differ diff --git a/frontend/static/cc/mt.png b/frontend/static/cc/mt.png new file mode 100644 index 0000000..e77d8b2 Binary files /dev/null and b/frontend/static/cc/mt.png differ diff --git a/frontend/static/cc/mu.png b/frontend/static/cc/mu.png new file mode 100644 index 0000000..c5352f3 Binary files /dev/null and b/frontend/static/cc/mu.png differ diff --git a/frontend/static/cc/mv.png b/frontend/static/cc/mv.png new file mode 100644 index 0000000..94d63cf Binary files /dev/null and b/frontend/static/cc/mv.png differ diff --git a/frontend/static/cc/mw.png b/frontend/static/cc/mw.png new file mode 100644 index 0000000..838b135 Binary files /dev/null and b/frontend/static/cc/mw.png differ diff --git a/frontend/static/cc/mx.png b/frontend/static/cc/mx.png new file mode 100644 index 0000000..d05b37a Binary files /dev/null and b/frontend/static/cc/mx.png differ diff --git a/frontend/static/cc/my.png b/frontend/static/cc/my.png new file mode 100644 index 0000000..bea68c4 Binary files /dev/null and b/frontend/static/cc/my.png differ diff --git a/frontend/static/cc/mz.png b/frontend/static/cc/mz.png new file mode 100644 index 0000000..a919a16 Binary files /dev/null and b/frontend/static/cc/mz.png differ diff --git a/frontend/static/cc/na.png b/frontend/static/cc/na.png new file mode 100644 index 0000000..9a584c3 Binary files /dev/null and b/frontend/static/cc/na.png differ diff --git a/frontend/static/cc/nc.png b/frontend/static/cc/nc.png new file mode 100644 index 0000000..ad88c0c Binary files /dev/null and b/frontend/static/cc/nc.png differ diff --git a/frontend/static/cc/ne.png b/frontend/static/cc/ne.png new file mode 100644 index 0000000..258b692 Binary files /dev/null and b/frontend/static/cc/ne.png differ diff --git a/frontend/static/cc/nf.png b/frontend/static/cc/nf.png new file mode 100644 index 0000000..33df782 Binary files /dev/null and b/frontend/static/cc/nf.png differ diff --git a/frontend/static/cc/ng.png b/frontend/static/cc/ng.png new file mode 100644 index 0000000..4265810 Binary files /dev/null and b/frontend/static/cc/ng.png differ diff --git a/frontend/static/cc/ni.png b/frontend/static/cc/ni.png new file mode 100644 index 0000000..6699ec0 Binary files /dev/null and b/frontend/static/cc/ni.png differ diff --git a/frontend/static/cc/nl.png b/frontend/static/cc/nl.png new file mode 100644 index 0000000..e1ede53 Binary files /dev/null and b/frontend/static/cc/nl.png differ diff --git a/frontend/static/cc/no.png b/frontend/static/cc/no.png new file mode 100644 index 0000000..9f79424 Binary files /dev/null and b/frontend/static/cc/no.png differ diff --git a/frontend/static/cc/np.png b/frontend/static/cc/np.png new file mode 100644 index 0000000..23c3c6d Binary files /dev/null and b/frontend/static/cc/np.png differ diff --git a/frontend/static/cc/nr.png b/frontend/static/cc/nr.png new file mode 100644 index 0000000..008629e Binary files /dev/null and b/frontend/static/cc/nr.png differ diff --git a/frontend/static/cc/nu.png b/frontend/static/cc/nu.png new file mode 100644 index 0000000..354a67c Binary files /dev/null and b/frontend/static/cc/nu.png differ diff --git a/frontend/static/cc/nz.png b/frontend/static/cc/nz.png new file mode 100644 index 0000000..c44ca79 Binary files /dev/null and b/frontend/static/cc/nz.png differ diff --git a/frontend/static/cc/om.png b/frontend/static/cc/om.png new file mode 100644 index 0000000..0e12bf9 Binary files /dev/null and b/frontend/static/cc/om.png differ diff --git a/frontend/static/cc/pa.png b/frontend/static/cc/pa.png new file mode 100644 index 0000000..87f2a4b Binary files /dev/null and b/frontend/static/cc/pa.png differ diff --git a/frontend/static/cc/pe.png b/frontend/static/cc/pe.png new file mode 100644 index 0000000..792a9ce Binary files /dev/null and b/frontend/static/cc/pe.png differ diff --git a/frontend/static/cc/pf.png b/frontend/static/cc/pf.png new file mode 100644 index 0000000..5f9a5a5 Binary files /dev/null and b/frontend/static/cc/pf.png differ diff --git a/frontend/static/cc/pg.png b/frontend/static/cc/pg.png new file mode 100644 index 0000000..8fb2eb6 Binary files /dev/null and b/frontend/static/cc/pg.png differ diff --git a/frontend/static/cc/ph.png b/frontend/static/cc/ph.png new file mode 100644 index 0000000..fd9d8fb Binary files /dev/null and b/frontend/static/cc/ph.png differ diff --git a/frontend/static/cc/pk.png b/frontend/static/cc/pk.png new file mode 100644 index 0000000..819eea2 Binary files /dev/null and b/frontend/static/cc/pk.png differ diff --git a/frontend/static/cc/pl.png b/frontend/static/cc/pl.png new file mode 100644 index 0000000..c3855d3 Binary files /dev/null and b/frontend/static/cc/pl.png differ diff --git a/frontend/static/cc/pm.png b/frontend/static/cc/pm.png new file mode 100644 index 0000000..ba91d2c Binary files /dev/null and b/frontend/static/cc/pm.png differ diff --git a/frontend/static/cc/pn.png b/frontend/static/cc/pn.png new file mode 100644 index 0000000..18b8e38 Binary files /dev/null and b/frontend/static/cc/pn.png differ diff --git a/frontend/static/cc/pr.png b/frontend/static/cc/pr.png new file mode 100644 index 0000000..bac124c Binary files /dev/null and b/frontend/static/cc/pr.png differ diff --git a/frontend/static/cc/ps.png b/frontend/static/cc/ps.png new file mode 100644 index 0000000..7145cbe Binary files /dev/null and b/frontend/static/cc/ps.png differ diff --git a/frontend/static/cc/pt.png b/frontend/static/cc/pt.png new file mode 100644 index 0000000..009ccc5 Binary files /dev/null and b/frontend/static/cc/pt.png differ diff --git a/frontend/static/cc/pw.png b/frontend/static/cc/pw.png new file mode 100644 index 0000000..2fd3f7b Binary files /dev/null and b/frontend/static/cc/pw.png differ diff --git a/frontend/static/cc/py.png b/frontend/static/cc/py.png new file mode 100644 index 0000000..ab391d7 Binary files /dev/null and b/frontend/static/cc/py.png differ diff --git a/frontend/static/cc/qa.png b/frontend/static/cc/qa.png new file mode 100644 index 0000000..995f281 Binary files /dev/null and b/frontend/static/cc/qa.png differ diff --git a/frontend/static/cc/re.png b/frontend/static/cc/re.png new file mode 100644 index 0000000..a7ca8d0 Binary files /dev/null and b/frontend/static/cc/re.png differ diff --git a/frontend/static/cc/ro.png b/frontend/static/cc/ro.png new file mode 100644 index 0000000..1f7d7e4 Binary files /dev/null and b/frontend/static/cc/ro.png differ diff --git a/frontend/static/cc/rs.png b/frontend/static/cc/rs.png new file mode 100644 index 0000000..95b00cc Binary files /dev/null and b/frontend/static/cc/rs.png differ diff --git a/frontend/static/cc/ru.png b/frontend/static/cc/ru.png new file mode 100644 index 0000000..0d74832 Binary files /dev/null and b/frontend/static/cc/ru.png differ diff --git a/frontend/static/cc/rw.png b/frontend/static/cc/rw.png new file mode 100644 index 0000000..d1ac663 Binary files /dev/null and b/frontend/static/cc/rw.png differ diff --git a/frontend/static/cc/sa.png b/frontend/static/cc/sa.png new file mode 100644 index 0000000..9e91d7f Binary files /dev/null and b/frontend/static/cc/sa.png differ diff --git a/frontend/static/cc/sb.png b/frontend/static/cc/sb.png new file mode 100644 index 0000000..94a9ee2 Binary files /dev/null and b/frontend/static/cc/sb.png differ diff --git a/frontend/static/cc/sc.png b/frontend/static/cc/sc.png new file mode 100644 index 0000000..0ff3930 Binary files /dev/null and b/frontend/static/cc/sc.png differ diff --git a/frontend/static/cc/sd.png b/frontend/static/cc/sd.png new file mode 100644 index 0000000..41aa35e Binary files /dev/null and b/frontend/static/cc/sd.png differ diff --git a/frontend/static/cc/se.png b/frontend/static/cc/se.png new file mode 100644 index 0000000..803b87b Binary files /dev/null and b/frontend/static/cc/se.png differ diff --git a/frontend/static/cc/sg.png b/frontend/static/cc/sg.png new file mode 100644 index 0000000..24256ff Binary files /dev/null and b/frontend/static/cc/sg.png differ diff --git a/frontend/static/cc/sh.png b/frontend/static/cc/sh.png new file mode 100644 index 0000000..020b335 Binary files /dev/null and b/frontend/static/cc/sh.png differ diff --git a/frontend/static/cc/si.png b/frontend/static/cc/si.png new file mode 100644 index 0000000..5b257f2 Binary files /dev/null and b/frontend/static/cc/si.png differ diff --git a/frontend/static/cc/sj.png b/frontend/static/cc/sj.png new file mode 100644 index 0000000..160b6b5 Binary files /dev/null and b/frontend/static/cc/sj.png differ diff --git a/frontend/static/cc/sk.png b/frontend/static/cc/sk.png new file mode 100644 index 0000000..f82cf6a Binary files /dev/null and b/frontend/static/cc/sk.png differ diff --git a/frontend/static/cc/sl.png b/frontend/static/cc/sl.png new file mode 100644 index 0000000..23695b3 Binary files /dev/null and b/frontend/static/cc/sl.png differ diff --git a/frontend/static/cc/sm.png b/frontend/static/cc/sm.png new file mode 100644 index 0000000..64e5428 Binary files /dev/null and b/frontend/static/cc/sm.png differ diff --git a/frontend/static/cc/sn.png b/frontend/static/cc/sn.png new file mode 100644 index 0000000..77a5d1d Binary files /dev/null and b/frontend/static/cc/sn.png differ diff --git a/frontend/static/cc/so.png b/frontend/static/cc/so.png new file mode 100644 index 0000000..021f6ca Binary files /dev/null and b/frontend/static/cc/so.png differ diff --git a/frontend/static/cc/sr.png b/frontend/static/cc/sr.png new file mode 100644 index 0000000..2b114de Binary files /dev/null and b/frontend/static/cc/sr.png differ diff --git a/frontend/static/cc/ss.png b/frontend/static/cc/ss.png new file mode 100644 index 0000000..8c6616c Binary files /dev/null and b/frontend/static/cc/ss.png differ diff --git a/frontend/static/cc/st.png b/frontend/static/cc/st.png new file mode 100644 index 0000000..7cb3ffa Binary files /dev/null and b/frontend/static/cc/st.png differ diff --git a/frontend/static/cc/sv.png b/frontend/static/cc/sv.png new file mode 100644 index 0000000..c595d57 Binary files /dev/null and b/frontend/static/cc/sv.png differ diff --git a/frontend/static/cc/sx.png b/frontend/static/cc/sx.png new file mode 100644 index 0000000..0f0b589 Binary files /dev/null and b/frontend/static/cc/sx.png differ diff --git a/frontend/static/cc/sy.png b/frontend/static/cc/sy.png new file mode 100644 index 0000000..7a0e97c Binary files /dev/null and b/frontend/static/cc/sy.png differ diff --git a/frontend/static/cc/sz.png b/frontend/static/cc/sz.png new file mode 100644 index 0000000..f3ce6c9 Binary files /dev/null and b/frontend/static/cc/sz.png differ diff --git a/frontend/static/cc/tc.png b/frontend/static/cc/tc.png new file mode 100644 index 0000000..5edc6e9 Binary files /dev/null and b/frontend/static/cc/tc.png differ diff --git a/frontend/static/cc/td.png b/frontend/static/cc/td.png new file mode 100644 index 0000000..2bbc6cb Binary files /dev/null and b/frontend/static/cc/td.png differ diff --git a/frontend/static/cc/tf.png b/frontend/static/cc/tf.png new file mode 100644 index 0000000..ff14546 Binary files /dev/null and b/frontend/static/cc/tf.png differ diff --git a/frontend/static/cc/tg.png b/frontend/static/cc/tg.png new file mode 100644 index 0000000..7779981 Binary files /dev/null and b/frontend/static/cc/tg.png differ diff --git a/frontend/static/cc/th.png b/frontend/static/cc/th.png new file mode 100644 index 0000000..485709a Binary files /dev/null and b/frontend/static/cc/th.png differ diff --git a/frontend/static/cc/tj.png b/frontend/static/cc/tj.png new file mode 100644 index 0000000..ab2805e Binary files /dev/null and b/frontend/static/cc/tj.png differ diff --git a/frontend/static/cc/tk.png b/frontend/static/cc/tk.png new file mode 100644 index 0000000..8761ab1 Binary files /dev/null and b/frontend/static/cc/tk.png differ diff --git a/frontend/static/cc/tl.png b/frontend/static/cc/tl.png new file mode 100644 index 0000000..cde8db6 Binary files /dev/null and b/frontend/static/cc/tl.png differ diff --git a/frontend/static/cc/tm.png b/frontend/static/cc/tm.png new file mode 100644 index 0000000..3200f49 Binary files /dev/null and b/frontend/static/cc/tm.png differ diff --git a/frontend/static/cc/tn.png b/frontend/static/cc/tn.png new file mode 100644 index 0000000..fd2b160 Binary files /dev/null and b/frontend/static/cc/tn.png differ diff --git a/frontend/static/cc/to.png b/frontend/static/cc/to.png new file mode 100644 index 0000000..ea666d2 Binary files /dev/null and b/frontend/static/cc/to.png differ diff --git a/frontend/static/cc/tr.png b/frontend/static/cc/tr.png new file mode 100644 index 0000000..f605875 Binary files /dev/null and b/frontend/static/cc/tr.png differ diff --git a/frontend/static/cc/tt.png b/frontend/static/cc/tt.png new file mode 100644 index 0000000..7f3a033 Binary files /dev/null and b/frontend/static/cc/tt.png differ diff --git a/frontend/static/cc/tv.png b/frontend/static/cc/tv.png new file mode 100644 index 0000000..5228a55 Binary files /dev/null and b/frontend/static/cc/tv.png differ diff --git a/frontend/static/cc/tw.png b/frontend/static/cc/tw.png new file mode 100644 index 0000000..b0602f3 Binary files /dev/null and b/frontend/static/cc/tw.png differ diff --git a/frontend/static/cc/tz.png b/frontend/static/cc/tz.png new file mode 100644 index 0000000..b3ed426 Binary files /dev/null and b/frontend/static/cc/tz.png differ diff --git a/frontend/static/cc/ua.png b/frontend/static/cc/ua.png new file mode 100644 index 0000000..5c920e3 Binary files /dev/null and b/frontend/static/cc/ua.png differ diff --git a/frontend/static/cc/ug.png b/frontend/static/cc/ug.png new file mode 100644 index 0000000..7b99c10 Binary files /dev/null and b/frontend/static/cc/ug.png differ diff --git a/frontend/static/cc/um.png b/frontend/static/cc/um.png new file mode 100644 index 0000000..c1dd965 Binary files /dev/null and b/frontend/static/cc/um.png differ diff --git a/frontend/static/cc/us.png b/frontend/static/cc/us.png new file mode 100644 index 0000000..5706b57 Binary files /dev/null and b/frontend/static/cc/us.png differ diff --git a/frontend/static/cc/uy.png b/frontend/static/cc/uy.png new file mode 100644 index 0000000..bc2a97d Binary files /dev/null and b/frontend/static/cc/uy.png differ diff --git a/frontend/static/cc/uz.png b/frontend/static/cc/uz.png new file mode 100644 index 0000000..b88e27e Binary files /dev/null and b/frontend/static/cc/uz.png differ diff --git a/frontend/static/cc/va.png b/frontend/static/cc/va.png new file mode 100644 index 0000000..da76146 Binary files /dev/null and b/frontend/static/cc/va.png differ diff --git a/frontend/static/cc/vc.png b/frontend/static/cc/vc.png new file mode 100644 index 0000000..da26903 Binary files /dev/null and b/frontend/static/cc/vc.png differ diff --git a/frontend/static/cc/ve.png b/frontend/static/cc/ve.png new file mode 100644 index 0000000..904c7ee Binary files /dev/null and b/frontend/static/cc/ve.png differ diff --git a/frontend/static/cc/vg.png b/frontend/static/cc/vg.png new file mode 100644 index 0000000..d337635 Binary files /dev/null and b/frontend/static/cc/vg.png differ diff --git a/frontend/static/cc/vi.png b/frontend/static/cc/vi.png new file mode 100644 index 0000000..5fa3126 Binary files /dev/null and b/frontend/static/cc/vi.png differ diff --git a/frontend/static/cc/vn.png b/frontend/static/cc/vn.png new file mode 100644 index 0000000..bffadb2 Binary files /dev/null and b/frontend/static/cc/vn.png differ diff --git a/frontend/static/cc/vu.png b/frontend/static/cc/vu.png new file mode 100644 index 0000000..41ac003 Binary files /dev/null and b/frontend/static/cc/vu.png differ diff --git a/frontend/static/cc/wf.png b/frontend/static/cc/wf.png new file mode 100644 index 0000000..79bf057 Binary files /dev/null and b/frontend/static/cc/wf.png differ diff --git a/frontend/static/cc/ws.png b/frontend/static/cc/ws.png new file mode 100644 index 0000000..d0bdf9b Binary files /dev/null and b/frontend/static/cc/ws.png differ diff --git a/frontend/static/cc/xz.png b/frontend/static/cc/xz.png new file mode 100644 index 0000000..44a6fc9 Binary files /dev/null and b/frontend/static/cc/xz.png differ diff --git a/frontend/static/cc/ye.png b/frontend/static/cc/ye.png new file mode 100644 index 0000000..19a9e90 Binary files /dev/null and b/frontend/static/cc/ye.png differ diff --git a/frontend/static/cc/yt.png b/frontend/static/cc/yt.png new file mode 100644 index 0000000..3665c0e Binary files /dev/null and b/frontend/static/cc/yt.png differ diff --git a/frontend/static/cc/za.png b/frontend/static/cc/za.png new file mode 100644 index 0000000..2c2eff8 Binary files /dev/null and b/frontend/static/cc/za.png differ diff --git a/frontend/static/cc/zm.png b/frontend/static/cc/zm.png new file mode 100644 index 0000000..a6e6eb5 Binary files /dev/null and b/frontend/static/cc/zm.png differ diff --git a/frontend/static/cc/zw.png b/frontend/static/cc/zw.png new file mode 100644 index 0000000..cbf90eb Binary files /dev/null and b/frontend/static/cc/zw.png differ diff --git a/frontend/static/favicon.png b/frontend/static/favicon.png new file mode 100644 index 0000000..c4e3735 Binary files /dev/null and b/frontend/static/favicon.png differ diff --git a/frontend/svelte.config.js b/frontend/svelte.config.js new file mode 100644 index 0000000..239e4dd --- /dev/null +++ b/frontend/svelte.config.js @@ -0,0 +1,16 @@ +import adapter from '@sveltejs/adapter-node'; +import { vitePreprocess } from "@sveltejs/kit/vite"; +/** @type {import('@sveltejs/kit').Config} */ +const config = { + // Consult https://kit.svelte.dev/docs/integrations#preprocessors + // for more information about preprocessors + preprocess: vitePreprocess(), + + kit: { + // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. + // If your environment is not supported or you settled on a specific environment, switch out the adapter. + // See https://kit.svelte.dev/docs/adapters for more information about adapters. + adapter: adapter(), + }, +}; +export default config; diff --git a/frontend/tailwind.config.cjs b/frontend/tailwind.config.cjs new file mode 100644 index 0000000..aa6bcac --- /dev/null +++ b/frontend/tailwind.config.cjs @@ -0,0 +1,27 @@ +import { join } from "path"; +import skeleton from "@skeletonlabs/skeleton/tailwind/skeleton.cjs"; + +/** @type {import('tailwindcss').Config} */ +module.exports = { + darkMode: "class", + content: [ + "./src/**/*.{html,js,svelte,ts}", + join( + require.resolve("@skeletonlabs/skeleton"), + "../**/*.{html,js,svelte,ts}", + ), + "../spec/*.yaml", + ], + theme: { + extend: { + colors: { + 'ats-bsky': '#3399ff', + 'ats-sbox': '#eab308', + } + } + }, + plugins: [ + require('@tailwindcss/forms'), + ...skeleton() + ], +}; diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000..80864b9 --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,6 @@ +import { sveltekit } from "@sveltejs/kit/vite"; +import { defineConfig } from "vite"; + +export default defineConfig({ + plugins: [sveltekit()], +}); diff --git a/spec/plc.yaml b/spec/plc.yaml new file mode 100644 index 0000000..da893bc --- /dev/null +++ b/spec/plc.yaml @@ -0,0 +1,9 @@ +- url: https://plc.directory + code: bsky + name: Bluesky + color: 'bg-ats-bsky' + +- url: https://plc.bsky-sandbox.dev + code: sbox + name: Sandbox + color: 'bg-ats-sbox' \ No newline at end of file