From b8085ee62b187ea6aed040adb82a3c92e18866b0 Mon Sep 17 00:00:00 2001 From: Robert Jeutter Date: Fri, 1 Apr 2022 17:03:49 +0200 Subject: [PATCH] initial commit --- README.md | 65 ++ app.py | 97 ++ frontend/.eslintrc.cjs | 14 + frontend/.gitignore | 28 + frontend/README.md | 35 + frontend/index.html | 16 + frontend/package.json | 27 + frontend/public/favicon.ico | Bin 0 -> 4286 bytes frontend/src/App.vue | 128 +++ frontend/src/assets/base.css | 74 ++ frontend/src/assets/logo.svg | 1 + frontend/src/components/ItemOverview.vue | 68 ++ frontend/src/components/TitleView.vue | 47 + frontend/src/main.js | 15 + frontend/src/router/index.js | 34 + frontend/src/views/HomeView.vue | 118 +++ frontend/src/views/ItemView.vue | 90 ++ frontend/src/views/PingView.vue | 55 ++ frontend/vite.config.js | 49 + frontend/yarn.lock | 1048 ++++++++++++++++++++++ requirements.txt | 3 + templates/favicon.ico | Bin 0 -> 4286 bytes templates/index.html | 18 + templates/manifest.json | 36 + templates/static/AboutView.2868233e.js | 1 + templates/static/AboutView.ab071ea6.css | 1 + templates/static/ItemView.0860556b.css | 1 + templates/static/ItemView.b93ae7d5.js | 1 + templates/static/PingView.3d2f7997.css | 1 + templates/static/PingView.f7a62302.js | 1 + templates/static/index.038ca730.css | 1 + templates/static/index.1f1b2f0d.js | 6 + templates/static/index.5ececa9d.css | 1 + templates/static/index.9cf12eac.js | 5 + templates/static/logo.da9b9095.svg | 1 + 35 files changed, 2086 insertions(+) create mode 100644 README.md create mode 100644 app.py create mode 100644 frontend/.eslintrc.cjs create mode 100644 frontend/.gitignore create mode 100644 frontend/README.md create mode 100644 frontend/index.html create mode 100644 frontend/package.json create mode 100644 frontend/public/favicon.ico create mode 100644 frontend/src/App.vue create mode 100644 frontend/src/assets/base.css create mode 100644 frontend/src/assets/logo.svg create mode 100644 frontend/src/components/ItemOverview.vue create mode 100644 frontend/src/components/TitleView.vue create mode 100644 frontend/src/main.js create mode 100644 frontend/src/router/index.js create mode 100644 frontend/src/views/HomeView.vue create mode 100644 frontend/src/views/ItemView.vue create mode 100644 frontend/src/views/PingView.vue create mode 100644 frontend/vite.config.js create mode 100644 frontend/yarn.lock create mode 100644 requirements.txt create mode 100644 templates/favicon.ico create mode 100644 templates/index.html create mode 100644 templates/manifest.json create mode 100644 templates/static/AboutView.2868233e.js create mode 100644 templates/static/AboutView.ab071ea6.css create mode 100644 templates/static/ItemView.0860556b.css create mode 100644 templates/static/ItemView.b93ae7d5.js create mode 100644 templates/static/PingView.3d2f7997.css create mode 100644 templates/static/PingView.f7a62302.js create mode 100644 templates/static/index.038ca730.css create mode 100644 templates/static/index.1f1b2f0d.js create mode 100644 templates/static/index.5ececa9d.css create mode 100644 templates/static/index.9cf12eac.js create mode 100644 templates/static/logo.da9b9095.svg diff --git a/README.md b/README.md new file mode 100644 index 0000000..def0f24 --- /dev/null +++ b/README.md @@ -0,0 +1,65 @@ +# HackerNews Fullstack +This project is a custom build to show a working implementation of FLASK with VUE.js + +## Goals +Backend +- Use the unofficial Hackernews REST API to fetch news: https://github.com/HackerNews/API (Only use the API, not a library) +- Implement a single REST endpoint using Python (e.g. with Flask) which returns an improved representation of the API response +- Provide a query parameter to select a story category +- Provide a query parameter to limit the story count + +Frontend +- Create a VUE.js project using the VUE cli +- Build a Master-Detail view which uses your Python API endpoint using VUE.js + +## How it works +The server is seperated into Front- and Backend. +The Frontend will be shown to the user and present everything as a Single-Page-Application. The inital call of the webpage will get the bundled frontend into the clients browser. +The Backend provides all vital data, like post overviews and rankings, and can communicate with the Frontend. + +### Develping and Running +1. Setup a virtual environment `python3 -m venv venv` +2. activate your virtual environment `source venv/bin/activate` +3. Run `pip3 install -r requirements` +4. Run `export FLASK_APP=wsgi:app` +5. Run `flask run` + +To deactivate your virtual environment run `deactivate` in your Terminal. + +### Build the Frontend +In order to rebuild the web app (Vue) +1. Navigate to the `frontend` folder +2. Run `yarn install` +3. while developing `yarn dev` +4. to build for deployment `yarn build` + + + +## About HackerNews +HackerNews got a public API at https://hacker-news.firebaseio.com for getting their +- Items (`/v0/item/`) like + - Stories + - Comments + - Jobs + - Polls and Pollopts +- Users (`/v0/user/`) +- and spezial live Data + - current largest item id (`/v0/maxitem`) + - top stories (`/v0/topstories`) (also contains jobs) + - new stories (`/v0/newstories`) + - best stories (`/v0/beststories`) + - ask stories (`/v0/askstories`) + - show stories(`/v0/showstories`) + - job stories (`/v0/jobstories`) + - changed items and profiles (`/v0/updates`) + + + +# links and resources +- https://github.com/HackerNews/API +- https://vuejs.org/ +- https://github.com/jrbarhydt/FlaskWebAPI +- https://dev.to/michaelbukachi/flask-vue-js-integration-tutorial-2g90 +- https://towardsdatascience.com/creating-a-beautiful-web-api-in-python-6415a40789af +- https://gist.github.com/jamescalam/0b309d275999f9df26fa063602753f73 +- https://www.stackhawk.com/blog/vue-cors-guide-what-it-is-and-how-to-enable-it/ \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000..f61347e --- /dev/null +++ b/app.py @@ -0,0 +1,97 @@ +from flask import Flask, render_template, jsonify, Response, request +import requests +from flask_cors import CORS + +# configuration +DEBUG = True + +# instantiate the app +app = Flask(__name__) +app.config.from_object(__name__) + +# enable CORS +CORS(app, resources={r'/*': {'origins': '*'}}) + +# sanity check route +@app.route('/ping', methods=['GET']) +def ping_pong(): + return jsonify('Pong!') + +# get list of items +@app.route("/items", methods=['GET']) +def getItems(): + """ + @return items:json + """ + # get latest item id + maxId = requests.get("https://hacker-news.firebaseio.com/v0/maxitem.json") + maxId = int(maxId.text) + itemlist = [] + for count in range(10): + newdata = requests.get("https://hacker-news.firebaseio.com/v0/item/" + str(maxId) + ".json") + # if any error occurrs, jump to next item + if(newdata.status_code != 200): + continue + itemlist.append(newdata.text) + maxId-=1 + response_object = {'status': 200} + response_object["items"] = itemlist + return jsonify(response_object) + +@app.route("/items", methods=["POST"]) +def getSpezialItems(): + """ + @param category:string + @param count:integer + @return items:json + """ + category = str(request.form["category"]) + count = int(request.form["count"]) + println(category) + println(count) + + # get latest item id + maxId = requests.get("https://hacker-news.firebaseio.com/v0/maxitem.json") + maxId = int(maxId.text) + itemlist = [] + # get count amount of items of certain category + counter = 0 + if count <= 0 | count >= 50: + count = 10 + while counter < count: + newdata = get("https://hacker-news.firebaseio.com/v0/item/" + str(maxId) + ".json") + # if any error occurrs, jump to next item + if(newdata.status_code != 200): + continue + # only if category matches it is pushed to the answer array + for dict in newdata.text: + if dict['category'] == category: + itemlist.append(newdata.text) + counter+=1 + maxId-=1 + response_object = {'status': 200} + response_object["items"] = itemlist + return jsonify(response_object) + +# get single item by id +@app.route("/item/", methods=["GET"]) +def getItem(itemId): + """ + @param itemId:integer + @return item:json + """ + data = requests.get("https://hacker-news.firebaseio.com/v0/item/" + itemId + ".json") + if(data.status_code != 200): + return jsonify({ + "status_code": 400, + "error": "Currently there is a problem with the HackerNews API" + }) + else: + response_object = {'status': 200} + response_object["item"] = data.text + return jsonify(response_object) + +# send single-page-app to client +@app.route("/") +def getIndex(): + return render_template("index.html") \ No newline at end of file diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs new file mode 100644 index 0000000..93ab45f --- /dev/null +++ b/frontend/.eslintrc.cjs @@ -0,0 +1,14 @@ +/* eslint-env node */ +require("@rushstack/eslint-patch/modern-module-resolution"); + +module.exports = { + "root": true, + "extends": [ + "plugin:vue/vue3-essential", + "eslint:recommended", + "@vue/eslint-config-prettier" + ], + "env": { + "vue/setup-compiler-macros": true + } +} diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..38adffa --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,28 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..e4da504 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,35 @@ +# HackerNewsFullstack + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.vscode-typescript-vue-plugin). + +## Customize configuration + +See [Vite Configuration Reference](https://vitejs.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Compile and Minify for Production + +```sh +npm run build +``` + +### Lint with [ESLint](https://eslint.org/) + +```sh +npm run lint +``` diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..b33ee39 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,16 @@ + + + + + + + + HackerNews + + + +
+ + + + \ No newline at end of file diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..aca73a2 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,27 @@ +{ + "name": "hackernewsfullstack", + "version": "0.0.0", + "license": "MIT", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview --port 5050", + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore" + }, + "dependencies": { + "axios": "^0.26.1", + "path": "^0.12.7", + "vue": "^3.2.31", + "vue-axios": "^3.4.1", + "vue-router": "^4.0.12" + }, + "devDependencies": { + "@rushstack/eslint-patch": "^1.1.0", + "@vitejs/plugin-vue": "^2.2.2", + "@vue/eslint-config-prettier": "^7.0.0", + "eslint": "^8.5.0", + "eslint-plugin-vue": "^8.2.0", + "prettier": "^2.5.1", + "vite": "^2.8.4" + } +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000..2463755 --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/frontend/src/assets/base.css b/frontend/src/assets/base.css new file mode 100644 index 0000000..71dc55a --- /dev/null +++ b/frontend/src/assets/base.css @@ -0,0 +1,74 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + position: relative; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: color 0.5s, background-color 0.5s; + line-height: 1.6; + font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; + font-size: 15px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/frontend/src/assets/logo.svg b/frontend/src/assets/logo.svg new file mode 100644 index 0000000..bc826fe --- /dev/null +++ b/frontend/src/assets/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/components/ItemOverview.vue b/frontend/src/components/ItemOverview.vue new file mode 100644 index 0000000..fe17898 --- /dev/null +++ b/frontend/src/components/ItemOverview.vue @@ -0,0 +1,68 @@ + + + + + + + diff --git a/frontend/src/components/TitleView.vue b/frontend/src/components/TitleView.vue new file mode 100644 index 0000000..b25e946 --- /dev/null +++ b/frontend/src/components/TitleView.vue @@ -0,0 +1,47 @@ + + + diff --git a/frontend/src/main.js b/frontend/src/main.js new file mode 100644 index 0000000..63067b3 --- /dev/null +++ b/frontend/src/main.js @@ -0,0 +1,15 @@ +import { + createApp +} from 'vue' +import App from './App.vue' +import router from './router' +import * as Vue from 'vue' +import axios from 'axios' +import VueAxios from 'vue-axios' + +const app = createApp(App) +app.use(VueAxios, axios) + +app.use(router) + +app.mount('#app') \ No newline at end of file diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js new file mode 100644 index 0000000..1641684 --- /dev/null +++ b/frontend/src/router/index.js @@ -0,0 +1,34 @@ +import { + createRouter, + createWebHistory +} from "vue-router" +import HomeView from "../views/HomeView.vue" + +const router = createRouter({ + history: createWebHistory( + import.meta.env.BASE_URL), + routes: [{ + path: "/", + name: "home", + component: HomeView + }, + { + path: "/item/:id", + name: "item", + // lazy-loaded when the route is visited + component: () => import("../views/ItemView.vue"), + props: true + }, + { + path: "/item", + redirect: "/" + }, + { + path: "/ping", + name: "Ping", + component: () => import("../views/PingView.vue") + }, + ] +}) + +export default router \ No newline at end of file diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue new file mode 100644 index 0000000..61394aa --- /dev/null +++ b/frontend/src/views/HomeView.vue @@ -0,0 +1,118 @@ + + + + + + + \ No newline at end of file diff --git a/frontend/src/views/ItemView.vue b/frontend/src/views/ItemView.vue new file mode 100644 index 0000000..703c956 --- /dev/null +++ b/frontend/src/views/ItemView.vue @@ -0,0 +1,90 @@ + + + + + + + diff --git a/frontend/src/views/PingView.vue b/frontend/src/views/PingView.vue new file mode 100644 index 0000000..c81748e --- /dev/null +++ b/frontend/src/views/PingView.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000..5296fec --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,49 @@ +import { + fileURLToPath, + URL +} from 'url' +import { + resolve +} from 'path' + +import { + defineConfig +} from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + build: { + outDir: resolve(__dirname, '../templates'), + assetsDir: 'static', + manifest: true + }, + plugins: [vue()], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', + import.meta.url)) + } + }, + server: { + proxy: { + "/api": { + target: "https://127.0.0.1:5000/", + changeOrigin: true, + secure: false, + rewrite: (path) => path.replace(/^\/api/, ""), + }, + "/hackernews": { + target: "https://hacker-news.firebaseio.com/", + changeOrigin: true, + secure: false, + ws: true + //rewrite: (path) => path.replace(/^\/hackernews/, "/v0/item/"), + } + }, + cors: true, + headers: { + "Access-Control-Allow-Origin": "https://localhost:3000" + } + } +}) \ No newline at end of file diff --git a/frontend/yarn.lock b/frontend/yarn.lock new file mode 100644 index 0000000..204f8d9 --- /dev/null +++ b/frontend/yarn.lock @@ -0,0 +1,1048 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/parser@^7.16.4": + version "7.17.8" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.8.tgz#2817fb9d885dd8132ea0f8eb615a6388cca1c240" + integrity sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ== + +"@eslint/eslintrc@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6" + integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.3.1" + globals "^13.9.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + +"@humanwhocodes/config-array@^0.9.2": + version "0.9.5" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" + integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@rushstack/eslint-patch@^1.1.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.1.tgz#782fa5da44c4f38ae9fd38e9184b54e451936118" + integrity sha512-BUyKJGdDWqvWC5GEhyOiUrGNi9iJUr4CU0O2WxJL6QJhHeeA/NVBalH+FeK0r/x/W0rPymXt5s78TDS7d6lCwg== + +"@vitejs/plugin-vue@^2.2.2": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-2.3.1.tgz#5f286b8d3515381c6d5c8fa8eee5e6335f727e14" + integrity sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ== + +"@vue/compiler-core@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.31.tgz#d38f06c2cf845742403b523ab4596a3fda152e89" + integrity sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ== + dependencies: + "@babel/parser" "^7.16.4" + "@vue/shared" "3.2.31" + estree-walker "^2.0.2" + source-map "^0.6.1" + +"@vue/compiler-dom@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.31.tgz#b1b7dfad55c96c8cc2b919cd7eb5fd7e4ddbf00e" + integrity sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg== + dependencies: + "@vue/compiler-core" "3.2.31" + "@vue/shared" "3.2.31" + +"@vue/compiler-sfc@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.31.tgz#d02b29c3fe34d599a52c5ae1c6937b4d69f11c2f" + integrity sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ== + dependencies: + "@babel/parser" "^7.16.4" + "@vue/compiler-core" "3.2.31" + "@vue/compiler-dom" "3.2.31" + "@vue/compiler-ssr" "3.2.31" + "@vue/reactivity-transform" "3.2.31" + "@vue/shared" "3.2.31" + estree-walker "^2.0.2" + magic-string "^0.25.7" + postcss "^8.1.10" + source-map "^0.6.1" + +"@vue/compiler-ssr@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.31.tgz#4fa00f486c9c4580b40a4177871ebbd650ecb99c" + integrity sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw== + dependencies: + "@vue/compiler-dom" "3.2.31" + "@vue/shared" "3.2.31" + +"@vue/devtools-api@^6.0.0": + version "6.1.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.1.4.tgz#b4aec2f4b4599e11ba774a50c67fa378c9824e53" + integrity sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ== + +"@vue/eslint-config-prettier@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz#44ab55ca22401102b57795c59428e9dade72be34" + integrity sha512-/CTc6ML3Wta1tCe1gUeO0EYnVXfo3nJXsIhZ8WJr3sov+cGASr6yuiibJTL6lmIBm7GobopToOuB3B6AWyV0Iw== + dependencies: + eslint-config-prettier "^8.3.0" + eslint-plugin-prettier "^4.0.0" + +"@vue/reactivity-transform@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.31.tgz#0f5b25c24e70edab2b613d5305c465b50fc00911" + integrity sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA== + dependencies: + "@babel/parser" "^7.16.4" + "@vue/compiler-core" "3.2.31" + "@vue/shared" "3.2.31" + estree-walker "^2.0.2" + magic-string "^0.25.7" + +"@vue/reactivity@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.31.tgz#fc90aa2cdf695418b79e534783aca90d63a46bbd" + integrity sha512-HVr0l211gbhpEKYr2hYe7hRsV91uIVGFYNHj73njbARVGHQvIojkImKMaZNDdoDZOIkMsBc9a1sMqR+WZwfSCw== + dependencies: + "@vue/shared" "3.2.31" + +"@vue/runtime-core@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.31.tgz#9d284c382f5f981b7a7b5971052a1dc4ef39ac7a" + integrity sha512-Kcog5XmSY7VHFEMuk4+Gap8gUssYMZ2+w+cmGI6OpZWYOEIcbE0TPzzPHi+8XTzAgx1w/ZxDFcXhZeXN5eKWsA== + dependencies: + "@vue/reactivity" "3.2.31" + "@vue/shared" "3.2.31" + +"@vue/runtime-dom@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.31.tgz#79ce01817cb3caf2c9d923f669b738d2d7953eff" + integrity sha512-N+o0sICVLScUjfLG7u9u5XCjvmsexAiPt17GNnaWHJUfsKed5e85/A3SWgKxzlxx2SW/Hw7RQxzxbXez9PtY3g== + dependencies: + "@vue/runtime-core" "3.2.31" + "@vue/shared" "3.2.31" + csstype "^2.6.8" + +"@vue/server-renderer@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.31.tgz#201e9d6ce735847d5989403af81ef80960da7141" + integrity sha512-8CN3Zj2HyR2LQQBHZ61HexF5NReqngLT3oahyiVRfSSvak+oAvVmu8iNLSu6XR77Ili2AOpnAt1y8ywjjqtmkg== + dependencies: + "@vue/compiler-ssr" "3.2.31" + "@vue/shared" "3.2.31" + +"@vue/shared@3.2.31": + version "3.2.31" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.31.tgz#c90de7126d833dcd3a4c7534d534be2fb41faa4e" + integrity sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ== + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.7.0: + version "8.7.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" + integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + 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" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +axios@^0.26.1: + version "0.26.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" + integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== + dependencies: + follow-redirects "^1.14.8" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +cross-spawn@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +csstype@^2.6.8: + version "2.6.20" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.20.tgz#9229c65ea0b260cf4d3d997cb06288e36a8d6dda" + integrity sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA== + +debug@^4.1.1, debug@^4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +esbuild-android-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.29.tgz#c0960c84c9b832bade20831515e89d32549d4769" + integrity sha512-tJuaN33SVZyiHxRaVTo1pwW+rn3qetJX/SRuc/83rrKYtyZG0XfsQ1ao1nEudIt9w37ZSNXR236xEfm2C43sbw== + +esbuild-android-arm64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.29.tgz#8eceb3abe5abde5489d6a5cbe6a7c1044f71115f" + integrity sha512-D74dCv6yYnMTlofVy1JKiLM5JdVSQd60/rQfJSDP9qvRAI0laPXIG/IXY1RG6jobmFMUfL38PbFnCqyI/6fPXg== + +esbuild-darwin-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.29.tgz#26f3f14102310ecb8f2d9351c5b7a47a60d2cc8a" + integrity sha512-+CJaRvfTkzs9t+CjGa0Oa28WoXa7EeLutQhxus+fFcu0MHhsBhlmeWHac3Cc/Sf/xPi1b2ccDFfzGYJCfV0RrA== + +esbuild-darwin-arm64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.29.tgz#6d2d89dfd937992649239711ed5b86e51b13bd89" + integrity sha512-5Wgz/+zK+8X2ZW7vIbwoZ613Vfr4A8HmIs1XdzRmdC1kG0n5EG5fvKk/jUxhNlrYPx1gSY7XadQ3l4xAManPSw== + +esbuild-freebsd-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.29.tgz#2cb41a0765d0040f0838280a213c81bbe62d6394" + integrity sha512-VTfS7Bm9QA12JK1YXF8+WyYOfvD7WMpbArtDj6bGJ5Sy5xp01c/q70Arkn596aGcGj0TvQRplaaCIrfBG1Wdtg== + +esbuild-freebsd-arm64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.29.tgz#e1b79fbb63eaeff324cf05519efa7ff12ce4586a" + integrity sha512-WP5L4ejwLWWvd3Fo2J5mlXvG3zQHaw5N1KxFGnUc4+2ZFZknP0ST63i0IQhpJLgEJwnQpXv2uZlU1iWZjFqEIg== + +esbuild-linux-32@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.29.tgz#a4a5a0b165b15081bc3227986e10dd4943edb7d6" + integrity sha512-4myeOvFmQBWdI2U1dEBe2DCSpaZyjdQtmjUY11Zu2eQg4ynqLb8Y5mNjNU9UN063aVsCYYfbs8jbken/PjyidA== + +esbuild-linux-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.29.tgz#4c450088c84f8bfd22c51d116f59416864b85481" + integrity sha512-iaEuLhssReAKE7HMwxwFJFn7D/EXEs43fFy5CJeA4DGmU6JHh0qVJD2p/UP46DvUXLRKXsXw0i+kv5TdJ1w5pg== + +esbuild-linux-arm64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.29.tgz#d1a23993b26cb1f63f740329b2fc09218e498bd1" + integrity sha512-KYf7s8wDfUy+kjKymW3twyGT14OABjGHRkm9gPJ0z4BuvqljfOOUbq9qT3JYFnZJHOgkr29atT//hcdD0Pi7Mw== + +esbuild-linux-arm@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.29.tgz#a7e2fea558525eab812b1fe27d7a2659cd1bb723" + integrity sha512-OXa9D9QL1hwrAnYYAHt/cXAuSCmoSqYfTW/0CEY0LgJNyTxJKtqc5mlwjAZAvgyjmha0auS/sQ0bXfGf2wAokQ== + +esbuild-linux-mips64le@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.29.tgz#e708c527f0785574e400828cdbed3d9b17b5ddff" + integrity sha512-05jPtWQMsZ1aMGfHOvnR5KrTvigPbU35BtuItSSWLI2sJu5VrM8Pr9Owym4wPvA4153DFcOJ1EPN/2ujcDt54g== + +esbuild-linux-ppc64le@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.29.tgz#0137d1b38beae36a57176ef45e90740e734df502" + integrity sha512-FYhBqn4Ir9xG+f6B5VIQVbRuM4S6qwy29dDNYFPoxLRnwTEKToIYIUESN1qHyUmIbfO0YB4phG2JDV2JDN9Kgw== + +esbuild-linux-riscv64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.29.tgz#a2f73235347a58029dcacf0fb91c9eb8bebc8abb" + integrity sha512-eqZMqPehkb4nZcffnuOpXJQdGURGd6GXQ4ZsDHSWyIUaA+V4FpMBe+5zMPtXRD2N4BtyzVvnBko6K8IWWr36ew== + +esbuild-linux-s390x@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.29.tgz#0f7310ff1daec463ead9b9e26b7aa083a9f9f1ee" + integrity sha512-o7EYajF1rC/4ho7kpSG3gENVx0o2SsHm7cJ5fvewWB/TEczWU7teDgusGSujxCYcMottE3zqa423VTglNTYhjg== + +esbuild-netbsd-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.29.tgz#ba9a0d9cb8aed73b684825126927f75d4fe44ff9" + integrity sha512-/esN6tb6OBSot6+JxgeOZeBk6P8V/WdR3GKBFeFpSqhgw4wx7xWUqPrdx4XNpBVO7X4Ipw9SAqgBrWHlXfddww== + +esbuild-openbsd-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.29.tgz#36dbe2c32d899106791b5f3af73f359213f71b8a" + integrity sha512-jUTdDzhEKrD0pLpjmk0UxwlfNJNg/D50vdwhrVcW/D26Vg0hVbthMfb19PJMatzclbK7cmgk1Nu0eNS+abzoHw== + +esbuild-sunos-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.29.tgz#e5f857c121441ec63bf9b399a2131409a7d344e5" + integrity sha512-EfhQN/XO+TBHTbkxwsxwA7EfiTHFe+MNDfxcf0nj97moCppD9JHPq48MLtOaDcuvrTYOcrMdJVeqmmeQ7doTcg== + +esbuild-windows-32@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.29.tgz#9c2f1ab071a828f3901d1d79d205982a74bdda6e" + integrity sha512-uoyb0YAJ6uWH4PYuYjfGNjvgLlb5t6b3zIaGmpWPOjgpr1Nb3SJtQiK4YCPGhONgfg2v6DcJgSbOteuKXhwqAw== + +esbuild-windows-64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.29.tgz#85fbce7c2492521896451b98d649a7db93e52667" + integrity sha512-X9cW/Wl95QjsH8WUyr3NqbmfdU72jCp71cH3pwPvI4CgBM2IeOUDdbt6oIGljPu2bf5eGDIo8K3Y3vvXCCTd8A== + +esbuild-windows-arm64@0.14.29: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.29.tgz#0aa7a9a1bc43a63350bcf574d94b639176f065b5" + integrity sha512-+O/PI+68fbUZPpl3eXhqGHTGK7DjLcexNnyJqtLZXOFwoAjaXlS5UBCvVcR3o2va+AqZTj8o6URaz8D2K+yfQQ== + +esbuild@^0.14.27: + version "0.14.29" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.29.tgz#24ad09c0674cbcb4aa2fe761485524eb1f6b1419" + integrity sha512-SQS8cO8xFEqevYlrHt6exIhK853Me4nZ4aMW6ieysInLa0FMAL+AKs87HYNRtR2YWRcEIqoXAHh+Ytt5/66qpg== + optionalDependencies: + esbuild-android-64 "0.14.29" + esbuild-android-arm64 "0.14.29" + esbuild-darwin-64 "0.14.29" + esbuild-darwin-arm64 "0.14.29" + esbuild-freebsd-64 "0.14.29" + esbuild-freebsd-arm64 "0.14.29" + esbuild-linux-32 "0.14.29" + esbuild-linux-64 "0.14.29" + esbuild-linux-arm "0.14.29" + esbuild-linux-arm64 "0.14.29" + esbuild-linux-mips64le "0.14.29" + esbuild-linux-ppc64le "0.14.29" + esbuild-linux-riscv64 "0.14.29" + esbuild-linux-s390x "0.14.29" + esbuild-netbsd-64 "0.14.29" + esbuild-openbsd-64 "0.14.29" + esbuild-sunos-64 "0.14.29" + esbuild-windows-32 "0.14.29" + esbuild-windows-64 "0.14.29" + esbuild-windows-arm64 "0.14.29" + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-prettier@^8.3.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" + integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== + +eslint-plugin-prettier@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz#8b99d1e4b8b24a762472b4567992023619cb98e0" + integrity sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-vue@^8.2.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-8.5.0.tgz#65832bba43ca713fa5da16bdfcf55d0095677f6f" + integrity sha512-i1uHCTAKOoEj12RDvdtONWrGzjFm/djkzqfhmQ0d6M/W8KM81mhswd/z+iTZ0jCpdUedW3YRgcVfQ37/J4zoYQ== + dependencies: + eslint-utils "^3.0.0" + natural-compare "^1.4.0" + semver "^7.3.5" + vue-eslint-parser "^8.0.1" + +eslint-scope@^7.0.0, eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.1.0, eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@^8.5.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.12.0.tgz#c7a5bd1cfa09079aae64c9076c07eada66a46e8e" + integrity sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q== + dependencies: + "@eslint/eslintrc" "^1.2.1" + "@humanwhocodes/config-array" "^0.9.2" + 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.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.3.1" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^6.0.1" + globals "^13.6.0" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.0.4" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^9.0.0, espree@^9.3.1: + version "9.3.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd" + integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ== + dependencies: + acorn "^8.7.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^3.3.0" + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.5" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" + integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== + +follow-redirects@^1.14.8: + version "1.14.9" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7" + integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^7.1.3: + version "7.2.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + 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" + +globals@^13.6.0, globals@^13.9.0: + version "13.13.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.13.0.tgz#ac32261060d8070e2719dd6998406e27d2b5727b" + integrity sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A== + dependencies: + type-fest "^0.20.2" + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +is-core-module@^2.8.1: + version "2.8.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" + integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== + dependencies: + has "^1.0.3" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-glob@^4.0.0, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +magic-string@^0.25.7: + version "0.25.9" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + +minimatch@^3.0.4: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +nanoid@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557" + integrity sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + 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" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path@^0.12.7: + version "0.12.7" + resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" + integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8= + dependencies: + process "^0.11.1" + util "^0.10.3" + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +postcss@^8.1.10, postcss@^8.4.12: + version "8.4.12" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905" + integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg== + dependencies: + nanoid "^3.3.1" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^2.5.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.1.tgz#d472797e0d7461605c1609808e27b80c0f9cfe17" + integrity sha512-8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A== + +process@^0.11.1: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +regexpp@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.22.0: + version "1.22.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" + integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + dependencies: + is-core-module "^2.8.1" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rollup@^2.59.0: + version "2.70.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.70.1.tgz#824b1f1f879ea396db30b0fc3ae8d2fead93523e" + integrity sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA== + optionalDependencies: + fsevents "~2.3.2" + +semver@^7.3.5: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util@^0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +vite@^2.8.4: + version "2.9.1" + resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.1.tgz#84bce95fae210a7beb566a0af06246748066b48f" + integrity sha512-vSlsSdOYGcYEJfkQ/NeLXgnRv5zZfpAsdztkIrs7AZHV8RCMZQkwjo4DS5BnrYTqoWqLoUe1Cah4aVO4oNNqCQ== + dependencies: + esbuild "^0.14.27" + postcss "^8.4.12" + resolve "^1.22.0" + rollup "^2.59.0" + optionalDependencies: + fsevents "~2.3.2" + +vue-axios@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/vue-axios/-/vue-axios-3.4.1.tgz#e092ec4060b42e941ea5059df9b8f09058c3eea9" + integrity sha512-8YZYUOQrBEJktxoQtrM4rr2LfVcDaWfJqv8MqtLlgLlkuBvCYKFSZSo6AXQ4YcCzdgccDqstmuaEh68lcH9xWA== + +vue-eslint-parser@^8.0.1: + version "8.3.0" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz#5d31129a1b3dd89c0069ca0a1c88f970c360bd0d" + integrity sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g== + dependencies: + debug "^4.3.2" + eslint-scope "^7.0.0" + eslint-visitor-keys "^3.1.0" + espree "^9.0.0" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^7.3.5" + +vue-router@^4.0.12: + version "4.0.14" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.14.tgz#ce2028c1c5c33e30c7287950c973f397fce1bd65" + integrity sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw== + dependencies: + "@vue/devtools-api" "^6.0.0" + +vue@^3.2.31: + version "3.2.31" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.31.tgz#e0c49924335e9f188352816788a4cca10f817ce6" + integrity sha512-odT3W2tcffTiQCy57nOT93INw1auq5lYLLYtWpPYQQYQOOdHiqFct9Xhna6GJ+pJQaF67yZABraH47oywkJgFw== + dependencies: + "@vue/compiler-dom" "3.2.31" + "@vue/compiler-sfc" "3.2.31" + "@vue/runtime-dom" "3.2.31" + "@vue/server-renderer" "3.2.31" + "@vue/shared" "3.2.31" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2c47fd2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +Flask==2.1.1 +Flask-Cors==3.0.10 +requests2==2.16.0 \ No newline at end of file diff --git a/templates/favicon.ico b/templates/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..6b4a04c --- /dev/null +++ b/templates/index.html @@ -0,0 +1,18 @@ + + + + + + + + HackerNews + + + + + +
+ + + + \ No newline at end of file diff --git a/templates/manifest.json b/templates/manifest.json new file mode 100644 index 0000000..21abf95 --- /dev/null +++ b/templates/manifest.json @@ -0,0 +1,36 @@ +{ + "index.html": { + "file": "static/index.1f1b2f0d.js", + "src": "index.html", + "isEntry": true, + "dynamicImports": [ + "src/views/ItemView.vue", + "src/views/PingView.vue" + ], + "css": [ + "static/index.5ececa9d.css" + ] + }, + "src/views/ItemView.vue": { + "file": "static/ItemView.b93ae7d5.js", + "src": "src/views/ItemView.vue", + "isDynamicEntry": true, + "imports": [ + "index.html" + ], + "css": [ + "static/ItemView.0860556b.css" + ] + }, + "src/views/PingView.vue": { + "file": "static/PingView.f7a62302.js", + "src": "src/views/PingView.vue", + "isDynamicEntry": true, + "imports": [ + "index.html" + ], + "css": [ + "static/PingView.3d2f7997.css" + ] + } +} \ No newline at end of file diff --git a/templates/static/AboutView.2868233e.js b/templates/static/AboutView.2868233e.js new file mode 100644 index 0000000..bbf94a8 --- /dev/null +++ b/templates/static/AboutView.2868233e.js @@ -0,0 +1 @@ +import{_ as e,o as t,c as _,a as o}from"./index.9cf12eac.js";const s={},a={class:"about"},c=o("h1",null,"This is an about page",-1),n=[c];function r(i,u){return t(),_("div",a,n)}var l=e(s,[["render",r]]);export{l as default}; diff --git a/templates/static/AboutView.ab071ea6.css b/templates/static/AboutView.ab071ea6.css new file mode 100644 index 0000000..f067b5d --- /dev/null +++ b/templates/static/AboutView.ab071ea6.css @@ -0,0 +1 @@ +@media (min-width: 1024px){.about{min-height:100vh;display:flex;align-items:center}} diff --git a/templates/static/ItemView.0860556b.css b/templates/static/ItemView.0860556b.css new file mode 100644 index 0000000..e202e12 --- /dev/null +++ b/templates/static/ItemView.0860556b.css @@ -0,0 +1 @@ +.card[data-v-2750d908]{margin:15px 5px;padding:10px;box-shadow:0 4px 8px #0003;border:1px solid rgb(41,41,41);transition:.3s;border-radius:5px}.card[data-v-2750d908]:hover{box-shadow:0 8px 16px #0003;border:1px solid rgb(109,109,109)} diff --git a/templates/static/ItemView.b93ae7d5.js b/templates/static/ItemView.b93ae7d5.js new file mode 100644 index 0000000..80a1953 --- /dev/null +++ b/templates/static/ItemView.b93ae7d5.js @@ -0,0 +1 @@ +import{_ as l,r as d,o as i,c as r,a as u,w as m,t as o,b as a,d as t,e as p,f as h,p as c,g as _}from"./index.1f1b2f0d.js";const g=s=>(c("data-v-2750d908"),s=s(),_(),s),f=g(()=>t("button",null,"back",-1)),v={key:0,class:"loading"},y={key:1,class:"error"},k={key:2,class:"content"},I=p(" Link: "),b=["href"],S=["innerHTML"],w={data(){return{loading:!1,error:null,item:null}},created(){this.$watch(()=>this.$route.params,()=>{this.getItem()},{immediate:!0})},methods:{getItem(){this.error=this.item=null,this.loading=!0,h.get(`http://localhost:5000/item/${Number(this.$route.params.id)}`).then(s=>{this.loading=!1,this.item=JSON.parse(s.data.item)}).catch(s=>{this.loading=!1,this.error=s.toString()})}}},L=Object.assign(w,{props:{id:{type:String,required:!0}},setup(s){return(e,N)=>{const n=d("RouterLink");return i(),r("div",null,[u(n,{to:"/"},{default:m(()=>[f]),_:1}),e.loading?(i(),r("div",v," Loading Item "+o(this.$route.params.id)+"... ",1)):a("",!0),e.error?(i(),r("div",y,o(e.error),1)):a("",!0),e.item?(i(),r("div",k,[t("h2",null,o(e.item.title),1),t("p",null,"by: "+o(e.item.by),1),t("p",null,"time: "+o(e.item.time),1),t("p",null,"score: "+o(e.item.score),1),t("p",null,"type: "+o(e.item.type),1),t("p",null,[I,t("a",{href:e.item.url},o(e.item.url),9,b)]),t("p",{innerHTML:e.item.text},null,8,S)])):a("",!0)])}}});var $=l(L,[["__scopeId","data-v-2750d908"]]);export{$ as default}; diff --git a/templates/static/PingView.3d2f7997.css b/templates/static/PingView.3d2f7997.css new file mode 100644 index 0000000..15e9186 --- /dev/null +++ b/templates/static/PingView.3d2f7997.css @@ -0,0 +1 @@ +.message[data-v-00a5a1ee]{text-align:center} diff --git a/templates/static/PingView.f7a62302.js b/templates/static/PingView.f7a62302.js new file mode 100644 index 0000000..de34f29 --- /dev/null +++ b/templates/static/PingView.f7a62302.js @@ -0,0 +1 @@ +import{_ as c,f as l,o as t,c as o,b as r,t as i,d as n,p as _,g as d}from"./index.1f1b2f0d.js";const p={name:"Ping",data(){return{msg:null,loading:null,error:null}},methods:{getMessage(){this.error=this.item=null,this.loading=!0,l.get("http://localhost:5000/ping").then(e=>{this.loading=!1,this.msg=e.data}).catch(e=>{this.loading=!1,this.error=e.toString()})}},created(){this.getMessage()}},a=e=>(_("data-v-00a5a1ee"),e=e(),d(),e),g={class:"container"},h=a(()=>n("h2",null,"Ping-Pong Test",-1)),u=a(()=>n("p",null," This pages only purpose is showing a response from the server. ",-1)),m={key:0,class:"loading"},v={key:1,class:"error"},f={key:2,class:"message"},y=a(()=>n("p",null,"The servers responded ",-1)),b={type:"button",class:"btn btn-primary"};function k(e,x,P,S,s,w){return t(),o("div",g,[h,u,s.loading?(t(),o("div",m,"Loading...")):r("",!0),s.error?(t(),o("div",v,i(s.error),1)):r("",!0),s.msg?(t(),o("div",f,[y,n("button",b,i(s.msg),1)])):r("",!0)])}var V=c(p,[["render",k],["__scopeId","data-v-00a5a1ee"]]);export{V as default}; diff --git a/templates/static/index.038ca730.css b/templates/static/index.038ca730.css new file mode 100644 index 0000000..e5a7935 --- /dev/null +++ b/templates/static/index.038ca730.css @@ -0,0 +1 @@ +h1[data-v-9949253a]{font-weight:500;font-size:2.6rem;top:-10px}h3[data-v-9949253a]{font-size:1.2rem}.greetings h1[data-v-9949253a],.greetings h3[data-v-9949253a]{text-align:center}@media (min-width: 1024px){.greetings h1[data-v-9949253a],.greetings h3[data-v-9949253a]{text-align:left}}:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;position:relative;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{max-width:1280px;margin:0 auto;padding:2rem;font-weight:400}header{line-height:1.5;max-height:100vh}.logo{display:block;margin:0 auto 2rem}a,.green{text-decoration:none;color:#00bd7e;transition:.4s}@media (hover: hover){a:hover{background-color:#00bd7e33}}nav{width:100%;font-size:12px;text-align:center;margin-top:2rem}nav a.router-link-exact-active{color:var(--color-text)}nav a.router-link-exact-active:hover{background-color:transparent}nav a{display:inline-block;padding:0 1rem;border-left:1px solid var(--color-border)}nav a:first-of-type{border:0}@media (min-width: 1024px){body{display:flex;place-items:center}#app{display:grid;grid-template-columns:1fr 1fr;padding:0 2rem}header{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}header .wrapper{display:flex;place-items:flex-start;flex-wrap:wrap}.logo{margin:0 2rem 0 0}nav{text-align:left;margin-left:-1rem;font-size:1rem;padding:1rem 0;margin-top:1rem}}.item[data-v-977bb0b6]{margin-top:2rem;display:flex}.details[data-v-977bb0b6]{flex:1;margin-left:1rem}i[data-v-977bb0b6]{display:flex;place-items:center;place-content:center;width:32px;height:32px;color:var(--color-text)}h3[data-v-977bb0b6]{font-size:1.2rem;font-weight:500;margin-bottom:.4rem;color:var(--color-heading)}@media (min-width: 1024px){.item[data-v-977bb0b6]{margin-top:0;padding:.4rem 0 1rem calc(var(--section-gap) / 2)}i[data-v-977bb0b6]{top:calc(50% - 25px);left:-26px;position:absolute;border:1px solid var(--color-border);background:var(--color-background);border-radius:8px;width:50px;height:50px}.item[data-v-977bb0b6]:before{content:" ";border-left:1px solid var(--color-border);position:absolute;left:0;bottom:calc(50% + 25px);height:calc(50% - 25px)}.item[data-v-977bb0b6]:after{content:" ";border-left:1px solid var(--color-border);position:absolute;left:0;top:calc(50% + 25px);height:calc(50% - 25px)}.item[data-v-977bb0b6]:first-of-type:before{display:none}.item[data-v-977bb0b6]:last-of-type:after{display:none}} diff --git a/templates/static/index.1f1b2f0d.js b/templates/static/index.1f1b2f0d.js new file mode 100644 index 0000000..b2a48a2 --- /dev/null +++ b/templates/static/index.1f1b2f0d.js @@ -0,0 +1,6 @@ +const Di=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))r(s);new MutationObserver(s=>{for(const o of s)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&r(i)}).observe(document,{childList:!0,subtree:!0});function n(s){const o={};return s.integrity&&(o.integrity=s.integrity),s.referrerpolicy&&(o.referrerPolicy=s.referrerpolicy),s.crossorigin==="use-credentials"?o.credentials="include":s.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(s){if(s.ep)return;s.ep=!0;const o=n(s);fetch(s.href,o)}};Di();function Tr(e,t){const n=Object.create(null),r=e.split(",");for(let s=0;s!!n[s.toLowerCase()]:s=>!!n[s]}const qi="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Ki=Tr(qi);function po(e){return!!e||e===""}function Ir(e){if(L(e)){const t={};for(let n=0;n{if(n){const r=n.split(zi);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Nn(e){let t="";if(oe(e))t=e;else if(L(e))for(let n=0;n$n(n,t))}const _n=e=>oe(e)?e:e==null?"":L(e)||ne(e)&&(e.toString===yo||!U(e.toString))?JSON.stringify(e,mo,2):String(e),mo=(e,t)=>t&&t.__v_isRef?mo(e,t.value):Ot(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s])=>(n[`${r} =>`]=s,n),{})}:Ln(t)?{[`Set(${t.size})`]:[...t.values()]}:ne(t)&&!L(t)&&!vo(t)?String(t):t,X={},At=[],Pe=()=>{},Xi=()=>!1,Qi=/^on[^a-z]/,Mn=e=>Qi.test(e),Nr=e=>e.startsWith("onUpdate:"),ae=Object.assign,$r=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Zi=Object.prototype.hasOwnProperty,D=(e,t)=>Zi.call(e,t),L=Array.isArray,Ot=e=>Fn(e)==="[object Map]",Ln=e=>Fn(e)==="[object Set]",as=e=>e instanceof Date,U=e=>typeof e=="function",oe=e=>typeof e=="string",Mr=e=>typeof e=="symbol",ne=e=>e!==null&&typeof e=="object",go=e=>ne(e)&&U(e.then)&&U(e.catch),yo=Object.prototype.toString,Fn=e=>yo.call(e),Gi=e=>Fn(e).slice(8,-1),vo=e=>Fn(e)==="[object Object]",Lr=e=>oe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,fn=Tr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),jn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},el=/-(\w)/g,Le=jn(e=>e.replace(el,(t,n)=>n?n.toUpperCase():"")),tl=/\B([A-Z])/g,Mt=jn(e=>e.replace(tl,"-$1").toLowerCase()),kn=jn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Xn=jn(e=>e?`on${kn(e)}`:""),Jt=(e,t)=>!Object.is(e,t),dn=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},En=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let fs;const nl=()=>fs||(fs=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});let He;class rl{constructor(t=!1){this.active=!0,this.effects=[],this.cleanups=[],!t&&He&&(this.parent=He,this.index=(He.scopes||(He.scopes=[])).push(this)-1)}run(t){if(this.active)try{return He=this,t()}finally{He=this.parent}}on(){He=this}off(){He=this.parent}stop(t){if(this.active){let n,r;for(n=0,r=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},_o=e=>(e.w&nt)>0,bo=e=>(e.n&nt)>0,ol=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r{(f==="length"||f>=r)&&l.push(u)});else switch(n!==void 0&&l.push(i.get(n)),t){case"add":L(e)?Lr(n)&&l.push(i.get("length")):(l.push(i.get(at)),Ot(e)&&l.push(i.get(ar)));break;case"delete":L(e)||(l.push(i.get(at)),Ot(e)&&l.push(i.get(ar)));break;case"set":Ot(e)&&l.push(i.get(at));break}if(l.length===1)l[0]&&fr(l[0]);else{const u=[];for(const f of l)f&&u.push(...f);fr(Fr(u))}}function fr(e,t){for(const n of L(e)?e:[...e])(n!==Me||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}const ll=Tr("__proto__,__v_isRef,__isVue"),xo=new Set(Object.getOwnPropertyNames(Symbol).map(e=>Symbol[e]).filter(Mr)),ul=kr(),cl=kr(!1,!0),al=kr(!0),hs=fl();function fl(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=V(this);for(let o=0,i=this.length;o{e[t]=function(...n){Lt();const r=V(this)[t].apply(this,n);return Ft(),r}}),e}function kr(e=!1,t=!1){return function(r,s,o){if(s==="__v_isReactive")return!e;if(s==="__v_isReadonly")return e;if(s==="__v_isShallow")return t;if(s==="__v_raw"&&o===(e?t?Al:Oo:t?Ao:Po).get(r))return r;const i=L(r);if(!e&&i&&D(hs,s))return Reflect.get(hs,s,o);const l=Reflect.get(r,s,o);return(Mr(s)?xo.has(s):ll(s))||(e||be(r,"get",s),t)?l:ue(l)?!i||!Lr(s)?l.value:l:ne(l)?e?So(l):tn(l):l}}const dl=Ro(),hl=Ro(!0);function Ro(e=!1){return function(n,r,s,o){let i=n[r];if(Yt(i)&&ue(i)&&!ue(s))return!1;if(!e&&!Yt(s)&&(To(s)||(s=V(s),i=V(i)),!L(n)&&ue(i)&&!ue(s)))return i.value=s,!0;const l=L(n)&&Lr(r)?Number(r)e,Un=e=>Reflect.getPrototypeOf(e);function rn(e,t,n=!1,r=!1){e=e.__v_raw;const s=V(e),o=V(t);t!==o&&!n&&be(s,"get",t),!n&&be(s,"get",o);const{has:i}=Un(s),l=r?Ur:n?Dr:Xt;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function sn(e,t=!1){const n=this.__v_raw,r=V(n),s=V(e);return e!==s&&!t&&be(r,"has",e),!t&&be(r,"has",s),e===s?n.has(e):n.has(e)||n.has(s)}function on(e,t=!1){return e=e.__v_raw,!t&&be(V(e),"iterate",at),Reflect.get(e,"size",e)}function ps(e){e=V(e);const t=V(this);return Un(t).has.call(t,e)||(t.add(e),qe(t,"add",e,e)),this}function ms(e,t){t=V(t);const n=V(this),{has:r,get:s}=Un(n);let o=r.call(n,e);o||(e=V(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?Jt(t,i)&&qe(n,"set",e,t):qe(n,"add",e,t),this}function gs(e){const t=V(this),{has:n,get:r}=Un(t);let s=n.call(t,e);s||(e=V(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&qe(t,"delete",e,void 0),o}function ys(){const e=V(this),t=e.size!==0,n=e.clear();return t&&qe(e,"clear",void 0,void 0),n}function ln(e,t){return function(r,s){const o=this,i=o.__v_raw,l=V(i),u=t?Ur:e?Dr:Xt;return!e&&be(l,"iterate",at),i.forEach((f,c)=>r.call(s,u(f),u(c),o))}}function un(e,t,n){return function(...r){const s=this.__v_raw,o=V(s),i=Ot(o),l=e==="entries"||e===Symbol.iterator&&i,u=e==="keys"&&i,f=s[e](...r),c=n?Ur:t?Dr:Xt;return!t&&be(o,"iterate",u?ar:at),{next(){const{value:h,done:p}=f.next();return p?{value:h,done:p}:{value:l?[c(h[0]),c(h[1])]:c(h),done:p}},[Symbol.iterator](){return this}}}}function ze(e){return function(...t){return e==="delete"?!1:this}}function _l(){const e={get(o){return rn(this,o)},get size(){return on(this)},has:sn,add:ps,set:ms,delete:gs,clear:ys,forEach:ln(!1,!1)},t={get(o){return rn(this,o,!1,!0)},get size(){return on(this)},has:sn,add:ps,set:ms,delete:gs,clear:ys,forEach:ln(!1,!0)},n={get(o){return rn(this,o,!0)},get size(){return on(this,!0)},has(o){return sn.call(this,o,!0)},add:ze("add"),set:ze("set"),delete:ze("delete"),clear:ze("clear"),forEach:ln(!0,!1)},r={get(o){return rn(this,o,!0,!0)},get size(){return on(this,!0)},has(o){return sn.call(this,o,!0)},add:ze("add"),set:ze("set"),delete:ze("delete"),clear:ze("clear"),forEach:ln(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=un(o,!1,!1),n[o]=un(o,!0,!1),t[o]=un(o,!1,!0),r[o]=un(o,!0,!0)}),[e,n,t,r]}const[bl,El,wl,xl]=_l();function Br(e,t){const n=t?e?xl:wl:e?El:bl;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(D(n,s)&&s in r?n:r,s,o)}const Rl={get:Br(!1,!1)},Cl={get:Br(!1,!0)},Pl={get:Br(!0,!1)},Po=new WeakMap,Ao=new WeakMap,Oo=new WeakMap,Al=new WeakMap;function Ol(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Sl(e){return e.__v_skip||!Object.isExtensible(e)?0:Ol(Gi(e))}function tn(e){return Yt(e)?e:Hr(e,!1,Co,Rl,Po)}function Tl(e){return Hr(e,!1,vl,Cl,Ao)}function So(e){return Hr(e,!0,yl,Pl,Oo)}function Hr(e,t,n,r,s){if(!ne(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=Sl(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function St(e){return Yt(e)?St(e.__v_raw):!!(e&&e.__v_isReactive)}function Yt(e){return!!(e&&e.__v_isReadonly)}function To(e){return!!(e&&e.__v_isShallow)}function Io(e){return St(e)||Yt(e)}function V(e){const t=e&&e.__v_raw;return t?V(t):e}function No(e){return bn(e,"__v_skip",!0),e}const Xt=e=>ne(e)?tn(e):e,Dr=e=>ne(e)?So(e):e;function $o(e){Ze&&Me&&(e=V(e),wo(e.dep||(e.dep=Fr())))}function Mo(e,t){e=V(e),e.dep&&fr(e.dep)}function ue(e){return!!(e&&e.__v_isRef===!0)}function Il(e){return Lo(e,!1)}function Nl(e){return Lo(e,!0)}function Lo(e,t){return ue(e)?e:new $l(e,t)}class $l{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:V(t),this._value=n?t:Xt(t)}get value(){return $o(this),this._value}set value(t){t=this.__v_isShallow?t:V(t),Jt(t,this._rawValue)&&(this._rawValue=t,this._value=this.__v_isShallow?t:Xt(t),Mo(this))}}function Ge(e){return ue(e)?e.value:e}const Ml={get:(e,t,n)=>Ge(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return ue(s)&&!ue(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function Fo(e){return St(e)?e:new Proxy(e,Ml)}class Ll{constructor(t,n,r,s){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new jr(t,()=>{this._dirty||(this._dirty=!0,Mo(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=V(this);return $o(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}function Fl(e,t,n=!1){let r,s;const o=U(e);return o?(r=e,s=Pe):(r=e.get,s=e.set),new Ll(r,s,o||!s,n)}Promise.resolve();function et(e,t,n,r){let s;try{s=r?e(...r):e()}catch(o){Bn(o,t,n)}return s}function Ae(e,t,n,r){if(U(e)){const o=et(e,t,n,r);return o&&go(o)&&o.catch(i=>{Bn(i,t,n)}),o}const s=[];for(let o=0;o>>1;Qt(_e[r])De&&_e.splice(t,1)}function Ho(e,t,n,r){L(e)?n.push(...e):(!t||!t.includes(e,e.allowRecurse?r+1:r))&&n.push(e),Bo()}function Bl(e){Ho(e,Dt,qt,Rt)}function Hl(e){Ho(e,Ye,Kt,Ct)}function Kr(e,t=null){if(qt.length){for(hr=t,Dt=[...new Set(qt)],qt.length=0,Rt=0;RtQt(n)-Qt(r)),Ct=0;Cte.id==null?1/0:e.id;function qo(e){dr=!1,wn=!0,Kr(e),_e.sort((n,r)=>Qt(n)-Qt(r));const t=Pe;try{for(De=0;De<_e.length;De++){const n=_e[De];n&&n.active!==!1&&et(n,null,14)}}finally{De=0,_e.length=0,Do(),wn=!1,qr=null,(_e.length||qt.length||Kt.length)&&qo(e)}}function Dl(e,t,...n){const r=e.vnode.props||X;let s=n;const o=t.startsWith("update:"),i=o&&t.slice(7);if(i&&i in r){const c=`${i==="modelValue"?"model":i}Modifiers`,{number:h,trim:p}=r[c]||X;p?s=n.map(_=>_.trim()):h&&(s=n.map(En))}let l,u=r[l=Xn(t)]||r[l=Xn(Le(t))];!u&&o&&(u=r[l=Xn(Mt(t))]),u&&Ae(u,e,6,s);const f=r[l+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Ae(f,e,6,s)}}function Ko(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!U(e)){const u=f=>{const c=Ko(f,t,!0);c&&(l=!0,ae(i,c))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!o&&!l?(r.set(e,null),null):(L(o)?o.forEach(u=>i[u]=null):ae(i,o),r.set(e,i),i)}function Vr(e,t){return!e||!Mn(t)?!1:(t=t.slice(2).replace(/Once$/,""),D(e,t[0].toLowerCase()+t.slice(1))||D(e,Mt(t))||D(e,t))}let Ce=null,Hn=null;function xn(e){const t=Ce;return Ce=e,Hn=e&&e.type.__scopeId||null,t}function ql(e){Hn=e}function Kl(){Hn=null}function Rn(e,t=Ce,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&Os(-1);const o=xn(t),i=e(...s);return xn(o),r._d&&Os(1),i};return r._n=!0,r._c=!0,r._d=!0,r}function Qn(e){const{type:t,vnode:n,proxy:r,withProxy:s,props:o,propsOptions:[i],slots:l,attrs:u,emit:f,render:c,renderCache:h,data:p,setupState:_,ctx:A,inheritAttrs:j}=e;let P,O;const M=xn(e);try{if(n.shapeFlag&4){const q=s||r;P=Ne(c.call(q,q,h,o,_,p,A)),O=u}else{const q=t;P=Ne(q.length>1?q(o,{attrs:u,slots:l,emit:f}):q(o,null)),O=t.props?u:Vl(u)}}catch(q){Vt.length=0,Bn(q,e,1),P=se(ht)}let K=P;if(O&&j!==!1){const q=Object.keys(O),{shapeFlag:fe}=K;q.length&&fe&7&&(i&&q.some(Nr)&&(O=zl(O,i)),K=Zt(K,O))}return n.dirs&&(K.dirs=K.dirs?K.dirs.concat(n.dirs):n.dirs),n.transition&&(K.transition=n.transition),P=K,xn(M),P}const Vl=e=>{let t;for(const n in e)(n==="class"||n==="style"||Mn(n))&&((t||(t={}))[n]=e[n]);return t},zl=(e,t)=>{const n={};for(const r in e)(!Nr(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Wl(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:u}=t,f=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return r?vs(r,i,f):!!i;if(u&8){const c=t.dynamicProps;for(let h=0;he.__isSuspense;function Xl(e,t){t&&t.pendingBranch?L(e)?t.effects.push(...e):t.effects.push(e):Hl(e)}function hn(e,t){if(le){let n=le.provides;const r=le.parent&&le.parent.provides;r===n&&(n=le.provides=Object.create(r)),n[e]=t}}function tt(e,t,n=!1){const r=le||Ce;if(r){const s=r.parent==null?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides;if(s&&e in s)return s[e];if(arguments.length>1)return n&&U(t)?t.call(r.proxy):t}}const _s={};function pn(e,t,n){return Vo(e,t,n)}function Vo(e,t,{immediate:n,deep:r,flush:s,onTrack:o,onTrigger:i}=X){const l=le;let u,f=!1,c=!1;if(ue(e)?(u=()=>e.value,f=To(e)):St(e)?(u=()=>e,r=!0):L(e)?(c=!0,f=e.some(St),u=()=>e.map(O=>{if(ue(O))return O.value;if(St(O))return ct(O);if(U(O))return et(O,l,2)})):U(e)?t?u=()=>et(e,l,2):u=()=>{if(!(l&&l.isUnmounted))return h&&h(),Ae(e,l,3,[p])}:u=Pe,t&&r){const O=u;u=()=>ct(O())}let h,p=O=>{h=P.onStop=()=>{et(O,l,4)}};if(Gt)return p=Pe,t?n&&Ae(t,l,3,[u(),c?[]:void 0,p]):u(),Pe;let _=c?[]:_s;const A=()=>{if(!!P.active)if(t){const O=P.run();(r||f||(c?O.some((M,K)=>Jt(M,_[K])):Jt(O,_)))&&(h&&h(),Ae(t,l,3,[O,_===_s?void 0:_,p]),_=O)}else P.run()};A.allowRecurse=!!t;let j;s==="sync"?j=A:s==="post"?j=()=>de(A,l&&l.suspense):j=()=>{!l||l.isMounted?Bl(A):A()};const P=new jr(u,j);return t?n?A():_=P.run():s==="post"?de(P.run.bind(P),l&&l.suspense):P.run(),()=>{P.stop(),l&&l.scope&&$r(l.scope.effects,P)}}function Ql(e,t,n){const r=this.proxy,s=oe(e)?e.includes(".")?zo(r,e):()=>r[e]:e.bind(r,r);let o;U(t)?o=t:(o=t.handler,n=t);const i=le;Tt(this);const l=Vo(s,o.bind(r),n);return i?Tt(i):dt(),l}function zo(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s{ct(n,t)});else if(vo(e))for(const n in e)ct(e[n],t);return e}function Wo(e){return U(e)?{setup:e,name:e.name}:e}const pr=e=>!!e.type.__asyncLoader,Jo=e=>e.type.__isKeepAlive;function Zl(e,t){Yo(e,"a",t)}function Gl(e,t){Yo(e,"da",t)}function Yo(e,t,n=le){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Dn(t,r,n),n){let s=n.parent;for(;s&&s.parent;)Jo(s.parent.vnode)&&eu(r,t,n,s),s=s.parent}}function eu(e,t,n,r){const s=Dn(t,e,r,!0);Xo(()=>{$r(r[t],s)},n)}function Dn(e,t,n=le,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;Lt(),Tt(n);const l=Ae(t,n,e,i);return dt(),Ft(),l});return r?s.unshift(o):s.push(o),o}}const Ke=e=>(t,n=le)=>(!Gt||e==="sp")&&Dn(e,t,n),tu=Ke("bm"),nu=Ke("m"),ru=Ke("bu"),su=Ke("u"),ou=Ke("bum"),Xo=Ke("um"),iu=Ke("sp"),lu=Ke("rtg"),uu=Ke("rtc");function cu(e,t=le){Dn("ec",e,t)}let mr=!0;function au(e){const t=Zo(e),n=e.proxy,r=e.ctx;mr=!1,t.beforeCreate&&bs(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:u,inject:f,created:c,beforeMount:h,mounted:p,beforeUpdate:_,updated:A,activated:j,deactivated:P,beforeDestroy:O,beforeUnmount:M,destroyed:K,unmounted:q,render:fe,renderTracked:pe,renderTriggered:je,errorCaptured:mt,serverPrefetch:Oe,expose:Ve,inheritAttrs:ke,components:Ue,directives:gt,filters:yt}=t;if(f&&fu(f,r,null,e.appContext.config.unwrapInjectedRef),i)for(const Q in i){const z=i[Q];U(z)&&(r[Q]=z.bind(n))}if(s){const Q=s.call(n,n);ne(Q)&&(e.data=tn(Q))}if(mr=!0,o)for(const Q in o){const z=o[Q],me=U(z)?z.bind(n,n):U(z.get)?z.get.bind(n,n):Pe,_t=!U(z)&&U(z.set)?z.set.bind(n):Pe,Be=$e({get:me,set:_t});Object.defineProperty(r,Q,{enumerable:!0,configurable:!0,get:()=>Be.value,set:Se=>Be.value=Se})}if(l)for(const Q in l)Qo(l[Q],r,n,Q);if(u){const Q=U(u)?u.call(n):u;Reflect.ownKeys(Q).forEach(z=>{hn(z,Q[z])})}c&&bs(c,e,"c");function re(Q,z){L(z)?z.forEach(me=>Q(me.bind(n))):z&&Q(z.bind(n))}if(re(tu,h),re(nu,p),re(ru,_),re(su,A),re(Zl,j),re(Gl,P),re(cu,mt),re(uu,pe),re(lu,je),re(ou,M),re(Xo,q),re(iu,Oe),L(Ve))if(Ve.length){const Q=e.exposed||(e.exposed={});Ve.forEach(z=>{Object.defineProperty(Q,z,{get:()=>n[z],set:me=>n[z]=me})})}else e.exposed||(e.exposed={});fe&&e.render===Pe&&(e.render=fe),ke!=null&&(e.inheritAttrs=ke),Ue&&(e.components=Ue),gt&&(e.directives=gt)}function fu(e,t,n=Pe,r=!1){L(e)&&(e=gr(e));for(const s in e){const o=e[s];let i;ne(o)?"default"in o?i=tt(o.from||s,o.default,!0):i=tt(o.from||s):i=tt(o),ue(i)&&r?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:l=>i.value=l}):t[s]=i}}function bs(e,t,n){Ae(L(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Qo(e,t,n,r){const s=r.includes(".")?zo(n,r):()=>n[r];if(oe(e)){const o=t[e];U(o)&&pn(s,o)}else if(U(e))pn(s,e.bind(n));else if(ne(e))if(L(e))e.forEach(o=>Qo(o,t,n,r));else{const o=U(e.handler)?e.handler.bind(n):t[e.handler];U(o)&&pn(s,o,e)}}function Zo(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let u;return l?u=l:!s.length&&!n&&!r?u=t:(u={},s.length&&s.forEach(f=>Cn(u,f,i,!0)),Cn(u,t,i)),o.set(t,u),u}function Cn(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&Cn(e,o,n,!0),s&&s.forEach(i=>Cn(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=du[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const du={data:Es,props:it,emits:it,methods:it,computed:it,beforeCreate:ce,created:ce,beforeMount:ce,mounted:ce,beforeUpdate:ce,updated:ce,beforeDestroy:ce,beforeUnmount:ce,destroyed:ce,unmounted:ce,activated:ce,deactivated:ce,errorCaptured:ce,serverPrefetch:ce,components:it,directives:it,watch:pu,provide:Es,inject:hu};function Es(e,t){return t?e?function(){return ae(U(e)?e.call(this,this):e,U(t)?t.call(this,this):t)}:t:e}function hu(e,t){return it(gr(e),gr(t))}function gr(e){if(L(e)){const t={};for(let n=0;n0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let h=0;h{u=!0;const[p,_]=ei(h,t,!0);ae(i,p),_&&l.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!o&&!u)return r.set(e,At),At;if(L(o))for(let c=0;c-1,_[1]=j<0||A-1||D(_,"default"))&&l.push(h)}}}const f=[i,l];return r.set(e,f),f}function ws(e){return e[0]!=="$"}function xs(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function Rs(e,t){return xs(e)===xs(t)}function Cs(e,t){return L(t)?t.findIndex(n=>Rs(n,e)):U(t)&&Rs(t,e)?0:-1}const ti=e=>e[0]==="_"||e==="$stable",zr=e=>L(e)?e.map(Ne):[Ne(e)],yu=(e,t,n)=>{const r=Rn((...s)=>zr(t(...s)),n);return r._c=!1,r},ni=(e,t,n)=>{const r=e._ctx;for(const s in e){if(ti(s))continue;const o=e[s];if(U(o))t[s]=yu(s,o,r);else if(o!=null){const i=zr(o);t[s]=()=>i}}},ri=(e,t)=>{const n=zr(t);e.slots.default=()=>n},vu=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=V(t),bn(t,"_",n)):ni(t,e.slots={})}else e.slots={},t&&ri(e,t);bn(e.slots,qn,1)},_u=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=X;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(ae(s,t),!n&&l===1&&delete s._):(o=!t.$stable,ni(t,s)),i=t}else t&&(ri(e,t),i={default:1});if(o)for(const l in s)!ti(l)&&!(l in i)&&delete s[l]};function Ps(e,t){const n=Ce;if(n===null)return e;const r=n.proxy,s=e.dirs||(e.dirs=[]);for(let o=0;ovr(p,t&&(L(t)?t[_]:t),n,r,s));return}if(pr(r)&&!s)return;const o=r.shapeFlag&4?Yr(r.component)||r.component.proxy:r.el,i=s?null:o,{i:l,r:u}=e,f=t&&t.r,c=l.refs===X?l.refs={}:l.refs,h=l.setupState;if(f!=null&&f!==u&&(oe(f)?(c[f]=null,D(h,f)&&(h[f]=null)):ue(f)&&(f.value=null)),U(u))et(u,l,12,[i,c]);else{const p=oe(u),_=ue(u);if(p||_){const A=()=>{if(e.f){const j=p?c[u]:u.value;s?L(j)&&$r(j,o):L(j)?j.includes(o)||j.push(o):p?c[u]=[o]:(u.value=[o],e.k&&(c[e.k]=u.value))}else p?(c[u]=i,D(h,u)&&(h[u]=i)):ue(u)&&(u.value=i,e.k&&(c[e.k]=i))};i?(A.id=-1,de(A,n)):A()}}}const de=Xl;function wu(e){return xu(e)}function xu(e,t){const n=nl();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:u,setText:f,setElementText:c,parentNode:h,nextSibling:p,setScopeId:_=Pe,cloneNode:A,insertStaticContent:j}=e,P=(a,d,m,v=null,y=null,w=null,C=!1,E=null,x=!!d.dynamicChildren)=>{if(a===d)return;a&&!Ut(a,d)&&(v=I(a),Ee(a,y,w,!0),a=null),d.patchFlag===-2&&(x=!1,d.dynamicChildren=null);const{type:b,ref:N,shapeFlag:S}=d;switch(b){case Wr:O(a,d,m,v);break;case ht:M(a,d,m,v);break;case Zn:a==null&&K(d,m,v,C);break;case xe:gt(a,d,m,v,y,w,C,E,x);break;default:S&1?pe(a,d,m,v,y,w,C,E,x):S&6?yt(a,d,m,v,y,w,C,E,x):(S&64||S&128)&&b.process(a,d,m,v,y,w,C,E,x,Z)}N!=null&&y&&vr(N,a&&a.ref,w,d||a,!d)},O=(a,d,m,v)=>{if(a==null)r(d.el=l(d.children),m,v);else{const y=d.el=a.el;d.children!==a.children&&f(y,d.children)}},M=(a,d,m,v)=>{a==null?r(d.el=u(d.children||""),m,v):d.el=a.el},K=(a,d,m,v)=>{[a.el,a.anchor]=j(a.children,d,m,v,a.el,a.anchor)},q=({el:a,anchor:d},m,v)=>{let y;for(;a&&a!==d;)y=p(a),r(a,m,v),a=y;r(d,m,v)},fe=({el:a,anchor:d})=>{let m;for(;a&&a!==d;)m=p(a),s(a),a=m;s(d)},pe=(a,d,m,v,y,w,C,E,x)=>{C=C||d.type==="svg",a==null?je(d,m,v,y,w,C,E,x):Ve(a,d,y,w,C,E,x)},je=(a,d,m,v,y,w,C,E)=>{let x,b;const{type:N,props:S,shapeFlag:$,transition:F,patchFlag:H,dirs:ee}=a;if(a.el&&A!==void 0&&H===-1)x=a.el=A(a.el);else{if(x=a.el=i(a.type,w,S&&S.is,S),$&8?c(x,a.children):$&16&&Oe(a.children,x,null,v,y,w&&N!=="foreignObject",C,E),ee&&st(a,null,v,"created"),S){for(const G in S)G!=="value"&&!fn(G)&&o(x,G,null,S[G],w,a.children,v,y,R);"value"in S&&o(x,"value",null,S.value),(b=S.onVnodeBeforeMount)&&Ie(b,v,a)}mt(x,a,a.scopeId,C,v)}ee&&st(a,null,v,"beforeMount");const J=(!y||y&&!y.pendingBranch)&&F&&!F.persisted;J&&F.beforeEnter(x),r(x,d,m),((b=S&&S.onVnodeMounted)||J||ee)&&de(()=>{b&&Ie(b,v,a),J&&F.enter(x),ee&&st(a,null,v,"mounted")},y)},mt=(a,d,m,v,y)=>{if(m&&_(a,m),v)for(let w=0;w{for(let b=x;b{const E=d.el=a.el;let{patchFlag:x,dynamicChildren:b,dirs:N}=d;x|=a.patchFlag&16;const S=a.props||X,$=d.props||X;let F;m&&ot(m,!1),(F=$.onVnodeBeforeUpdate)&&Ie(F,m,d,a),N&&st(d,a,m,"beforeUpdate"),m&&ot(m,!0);const H=y&&d.type!=="foreignObject";if(b?ke(a.dynamicChildren,b,E,m,v,H,w):C||me(a,d,E,null,m,v,H,w,!1),x>0){if(x&16)Ue(E,d,S,$,m,v,y);else if(x&2&&S.class!==$.class&&o(E,"class",null,$.class,y),x&4&&o(E,"style",S.style,$.style,y),x&8){const ee=d.dynamicProps;for(let J=0;J{F&&Ie(F,m,d,a),N&&st(d,a,m,"updated")},v)},ke=(a,d,m,v,y,w,C)=>{for(let E=0;E{if(m!==v){for(const E in v){if(fn(E))continue;const x=v[E],b=m[E];x!==b&&E!=="value"&&o(a,E,b,x,C,d.children,y,w,R)}if(m!==X)for(const E in m)!fn(E)&&!(E in v)&&o(a,E,m[E],null,C,d.children,y,w,R);"value"in v&&o(a,"value",m.value,v.value)}},gt=(a,d,m,v,y,w,C,E,x)=>{const b=d.el=a?a.el:l(""),N=d.anchor=a?a.anchor:l("");let{patchFlag:S,dynamicChildren:$,slotScopeIds:F}=d;F&&(E=E?E.concat(F):F),a==null?(r(b,m,v),r(N,m,v),Oe(d.children,m,N,y,w,C,E,x)):S>0&&S&64&&$&&a.dynamicChildren?(ke(a.dynamicChildren,$,m,y,w,C,E),(d.key!=null||y&&d===y.subTree)&&oi(a,d,!0)):me(a,d,m,N,y,w,C,E,x)},yt=(a,d,m,v,y,w,C,E,x)=>{d.slotScopeIds=E,a==null?d.shapeFlag&512?y.ctx.activate(d,m,v,C,x):vt(d,m,v,y,w,C,x):re(a,d,x)},vt=(a,d,m,v,y,w,C)=>{const E=a.component=ju(a,v,y);if(Jo(a)&&(E.ctx.renderer=Z),ku(E),E.asyncDep){if(y&&y.registerDep(E,Q),!a.el){const x=E.subTree=se(ht);M(null,x,d,m)}return}Q(E,a,d,m,y,w,C)},re=(a,d,m)=>{const v=d.component=a.component;if(Wl(a,d,m))if(v.asyncDep&&!v.asyncResolved){z(v,d,m);return}else v.next=d,Ul(v.update),v.update();else d.component=a.component,d.el=a.el,v.vnode=d},Q=(a,d,m,v,y,w,C)=>{const E=()=>{if(a.isMounted){let{next:N,bu:S,u:$,parent:F,vnode:H}=a,ee=N,J;ot(a,!1),N?(N.el=H.el,z(a,N,C)):N=H,S&&dn(S),(J=N.props&&N.props.onVnodeBeforeUpdate)&&Ie(J,F,N,H),ot(a,!0);const G=Qn(a),Re=a.subTree;a.subTree=G,P(Re,G,h(Re.el),I(Re),a,y,w),N.el=G.el,ee===null&&Jl(a,G.el),$&&de($,y),(J=N.props&&N.props.onVnodeUpdated)&&de(()=>Ie(J,F,N,H),y)}else{let N;const{el:S,props:$}=d,{bm:F,m:H,parent:ee}=a,J=pr(d);if(ot(a,!1),F&&dn(F),!J&&(N=$&&$.onVnodeBeforeMount)&&Ie(N,ee,d),ot(a,!0),S&&k){const G=()=>{a.subTree=Qn(a),k(S,a.subTree,a,y,null)};J?d.type.__asyncLoader().then(()=>!a.isUnmounted&&G()):G()}else{const G=a.subTree=Qn(a);P(null,G,m,v,a,y,w),d.el=G.el}if(H&&de(H,y),!J&&(N=$&&$.onVnodeMounted)){const G=d;de(()=>Ie(N,ee,G),y)}d.shapeFlag&256&&a.a&&de(a.a,y),a.isMounted=!0,d=m=v=null}},x=a.effect=new jr(E,()=>Uo(a.update),a.scope),b=a.update=x.run.bind(x);b.id=a.uid,ot(a,!0),b()},z=(a,d,m)=>{d.component=a;const v=a.vnode.props;a.vnode=d,a.next=null,gu(a,d.props,v,m),_u(a,d.children,m),Lt(),Kr(void 0,a.update),Ft()},me=(a,d,m,v,y,w,C,E,x=!1)=>{const b=a&&a.children,N=a?a.shapeFlag:0,S=d.children,{patchFlag:$,shapeFlag:F}=d;if($>0){if($&128){Be(b,S,m,v,y,w,C,E,x);return}else if($&256){_t(b,S,m,v,y,w,C,E,x);return}}F&8?(N&16&&R(b,y,w),S!==b&&c(m,S)):N&16?F&16?Be(b,S,m,v,y,w,C,E,x):R(b,y,w,!0):(N&8&&c(m,""),F&16&&Oe(S,m,v,y,w,C,E,x))},_t=(a,d,m,v,y,w,C,E,x)=>{a=a||At,d=d||At;const b=a.length,N=d.length,S=Math.min(b,N);let $;for($=0;$N?R(a,y,w,!0,!1,S):Oe(d,m,v,y,w,C,E,x,S)},Be=(a,d,m,v,y,w,C,E,x)=>{let b=0;const N=d.length;let S=a.length-1,$=N-1;for(;b<=S&&b<=$;){const F=a[b],H=d[b]=x?Xe(d[b]):Ne(d[b]);if(Ut(F,H))P(F,H,m,null,y,w,C,E,x);else break;b++}for(;b<=S&&b<=$;){const F=a[S],H=d[$]=x?Xe(d[$]):Ne(d[$]);if(Ut(F,H))P(F,H,m,null,y,w,C,E,x);else break;S--,$--}if(b>S){if(b<=$){const F=$+1,H=F$)for(;b<=S;)Ee(a[b],y,w,!0),b++;else{const F=b,H=b,ee=new Map;for(b=H;b<=$;b++){const ge=d[b]=x?Xe(d[b]):Ne(d[b]);ge.key!=null&&ee.set(ge.key,b)}let J,G=0;const Re=$-H+1;let bt=!1,ls=0;const kt=new Array(Re);for(b=0;b=Re){Ee(ge,y,w,!0);continue}let Te;if(ge.key!=null)Te=ee.get(ge.key);else for(J=H;J<=$;J++)if(kt[J-H]===0&&Ut(ge,d[J])){Te=J;break}Te===void 0?Ee(ge,y,w,!0):(kt[Te-H]=b+1,Te>=ls?ls=Te:bt=!0,P(ge,d[Te],m,null,y,w,C,E,x),G++)}const us=bt?Ru(kt):At;for(J=us.length-1,b=Re-1;b>=0;b--){const ge=H+b,Te=d[ge],cs=ge+1{const{el:w,type:C,transition:E,children:x,shapeFlag:b}=a;if(b&6){Se(a.component.subTree,d,m,v);return}if(b&128){a.suspense.move(d,m,v);return}if(b&64){C.move(a,d,m,Z);return}if(C===xe){r(w,d,m);for(let S=0;SE.enter(w),y);else{const{leave:S,delayLeave:$,afterLeave:F}=E,H=()=>r(w,d,m),ee=()=>{S(w,()=>{H(),F&&F()})};$?$(w,H,ee):ee()}else r(w,d,m)},Ee=(a,d,m,v=!1,y=!1)=>{const{type:w,props:C,ref:E,children:x,dynamicChildren:b,shapeFlag:N,patchFlag:S,dirs:$}=a;if(E!=null&&vr(E,null,m,a,!0),N&256){d.ctx.deactivate(a);return}const F=N&1&&$,H=!pr(a);let ee;if(H&&(ee=C&&C.onVnodeBeforeUnmount)&&Ie(ee,d,a),N&6)T(a.component,m,v);else{if(N&128){a.suspense.unmount(m,v);return}F&&st(a,null,d,"beforeUnmount"),N&64?a.type.remove(a,d,m,y,Z,v):b&&(w!==xe||S>0&&S&64)?R(b,d,m,!1,!0):(w===xe&&S&384||!y&&N&16)&&R(x,d,m),v&&Yn(a)}(H&&(ee=C&&C.onVnodeUnmounted)||F)&&de(()=>{ee&&Ie(ee,d,a),F&&st(a,null,d,"unmounted")},m)},Yn=a=>{const{type:d,el:m,anchor:v,transition:y}=a;if(d===xe){g(m,v);return}if(d===Zn){fe(a);return}const w=()=>{s(m),y&&!y.persisted&&y.afterLeave&&y.afterLeave()};if(a.shapeFlag&1&&y&&!y.persisted){const{leave:C,delayLeave:E}=y,x=()=>C(m,w);E?E(a.el,w,x):x()}else w()},g=(a,d)=>{let m;for(;a!==d;)m=p(a),s(a),a=m;s(d)},T=(a,d,m)=>{const{bum:v,scope:y,update:w,subTree:C,um:E}=a;v&&dn(v),y.stop(),w&&(w.active=!1,Ee(C,a,d,m)),E&&de(E,d),de(()=>{a.isUnmounted=!0},d),d&&d.pendingBranch&&!d.isUnmounted&&a.asyncDep&&!a.asyncResolved&&a.suspenseId===d.pendingId&&(d.deps--,d.deps===0&&d.resolve())},R=(a,d,m,v=!1,y=!1,w=0)=>{for(let C=w;Ca.shapeFlag&6?I(a.component.subTree):a.shapeFlag&128?a.suspense.next():p(a.anchor||a.el),W=(a,d,m)=>{a==null?d._vnode&&Ee(d._vnode,null,null,!0):P(d._vnode||null,a,d,null,null,null,m),Do(),d._vnode=a},Z={p:P,um:Ee,m:Se,r:Yn,mt:vt,mc:Oe,pc:me,pbc:ke,n:I,o:e};let B,k;return t&&([B,k]=t(Z)),{render:W,hydrate:B,createApp:Eu(W,B)}}function ot({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function oi(e,t,n=!1){const r=e.children,s=t.children;if(L(r)&&L(s))for(let o=0;o>1,e[n[l]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}const Cu=e=>e.__isTeleport,ii="components";function Pu(e,t){return Ou(ii,e,!0,t)||e}const Au=Symbol();function Ou(e,t,n=!0,r=!1){const s=Ce||le;if(s){const o=s.type;if(e===ii){const l=Du(o);if(l&&(l===t||l===Le(t)||l===kn(Le(t))))return o}const i=As(s[e]||o[e],t)||As(s.appContext[e],t);return!i&&r?o:i}}function As(e,t){return e&&(e[t]||e[Le(t)]||e[kn(Le(t))])}const xe=Symbol(void 0),Wr=Symbol(void 0),ht=Symbol(void 0),Zn=Symbol(void 0),Vt=[];let ft=null;function ve(e=!1){Vt.push(ft=e?null:[])}function Su(){Vt.pop(),ft=Vt[Vt.length-1]||null}let Pn=1;function Os(e){Pn+=e}function li(e){return e.dynamicChildren=Pn>0?ft||At:null,Su(),Pn>0&&ft&&ft.push(e),e}function we(e,t,n,r,s,o){return li(te(e,t,n,r,s,o,!0))}function Tu(e,t,n,r,s){return li(se(e,t,n,r,s,!0))}function _r(e){return e?e.__v_isVNode===!0:!1}function Ut(e,t){return e.type===t.type&&e.key===t.key}const qn="__vInternal",ui=({key:e})=>e!=null?e:null,mn=({ref:e,ref_key:t,ref_for:n})=>e!=null?oe(e)||ue(e)||U(e)?{i:Ce,r:e,k:t,f:!!n}:e:null;function te(e,t=null,n=null,r=0,s=null,o=e===xe?0:1,i=!1,l=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ui(t),ref:t&&mn(t),scopeId:Hn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null};return l?(Jr(u,n),o&128&&e.normalize(u)):n&&(u.shapeFlag|=oe(n)?8:16),Pn>0&&!i&&ft&&(u.patchFlag>0||o&6)&&u.patchFlag!==32&&ft.push(u),u}const se=Iu;function Iu(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===Au)&&(e=ht),_r(e)){const l=Zt(e,t,!0);return n&&Jr(l,n),l}if(qu(e)&&(e=e.__vccOpts),t){t=Nu(t);let{class:l,style:u}=t;l&&!oe(l)&&(t.class=Nn(l)),ne(u)&&(Io(u)&&!L(u)&&(u=ae({},u)),t.style=Ir(u))}const i=oe(e)?1:Yl(e)?128:Cu(e)?64:ne(e)?4:U(e)?2:0;return te(e,t,n,r,s,i,o,!0)}function Nu(e){return e?Io(e)||qn in e?ae({},e):e:null}function Zt(e,t,n=!1){const{props:r,ref:s,patchFlag:o,children:i}=e,l=t?$u(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&ui(l),ref:t&&t.ref?n&&s?L(s)?s.concat(mn(t)):[s,mn(t)]:mn(t):s,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==xe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Zt(e.ssContent),ssFallback:e.ssFallback&&Zt(e.ssFallback),el:e.el,anchor:e.anchor}}function pt(e=" ",t=0){return se(Wr,null,e,t)}function Gn(e="",t=!1){return t?(ve(),Tu(ht,null,e)):se(ht,null,e)}function Ne(e){return e==null||typeof e=="boolean"?se(ht):L(e)?se(xe,null,e.slice()):typeof e=="object"?Xe(e):se(Wr,null,String(e))}function Xe(e){return e.el===null||e.memo?e:Zt(e)}function Jr(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(L(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Jr(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!(qn in t)?t._ctx=Ce:s===3&&Ce&&(Ce.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else U(t)?(t={default:t,_ctx:Ce},n=32):(t=String(t),r&64?(n=16,t=[pt(t)]):n=8);e.children=t,e.shapeFlag|=n}function $u(...e){const t={};for(let n=0;nt(i,l,void 0,o&&o[l]));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,u=i.length;le?ci(e)?Yr(e)||e.proxy:br(e.parent):null,An=ae(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>br(e.parent),$root:e=>br(e.root),$emit:e=>e.emit,$options:e=>Zo(e),$forceUpdate:e=>()=>Uo(e.update),$nextTick:e=>ko.bind(e.proxy),$watch:e=>Ql.bind(e)}),Mu={get({_:e},t){const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:u}=e;let f;if(t[0]!=="$"){const _=i[t];if(_!==void 0)switch(_){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(r!==X&&D(r,t))return i[t]=1,r[t];if(s!==X&&D(s,t))return i[t]=2,s[t];if((f=e.propsOptions[0])&&D(f,t))return i[t]=3,o[t];if(n!==X&&D(n,t))return i[t]=4,n[t];mr&&(i[t]=0)}}const c=An[t];let h,p;if(c)return t==="$attrs"&&be(e,"get",t),c(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==X&&D(n,t))return i[t]=4,n[t];if(p=u.config.globalProperties,D(p,t))return p[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return s!==X&&D(s,t)?(s[t]=n,!0):r!==X&&D(r,t)?(r[t]=n,!0):D(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let l;return!!n[i]||e!==X&&D(e,i)||t!==X&&D(t,i)||(l=o[0])&&D(l,i)||D(r,i)||D(An,i)||D(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?this.set(e,t,n.get(),null):n.value!=null&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},Lu=si();let Fu=0;function ju(e,t,n){const r=e.type,s=(t?t.appContext:e.appContext)||Lu,o={uid:Fu++,vnode:e,type:r,parent:t,appContext:s,root:null,next:null,subTree:null,effect:null,update:null,scope:new rl(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(s.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:ei(r,s),emitsOptions:Ko(r,s),emit:null,emitted:null,propsDefaults:X,inheritAttrs:r.inheritAttrs,ctx:X,data:X,props:X,attrs:X,slots:X,refs:X,setupState:X,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=Dl.bind(null,o),e.ce&&e.ce(o),o}let le=null;const Tt=e=>{le=e,e.scope.on()},dt=()=>{le&&le.scope.off(),le=null};function ci(e){return e.vnode.shapeFlag&4}let Gt=!1;function ku(e,t=!1){Gt=t;const{props:n,children:r}=e.vnode,s=ci(e);mu(e,n,s,t),vu(e,r);const o=s?Uu(e,t):void 0;return Gt=!1,o}function Uu(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=No(new Proxy(e.ctx,Mu));const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?Hu(e):null;Tt(e),Lt();const o=et(r,e,0,[e.props,s]);if(Ft(),dt(),go(o)){if(o.then(dt,dt),t)return o.then(i=>{Ts(e,i,t)}).catch(i=>{Bn(i,e,0)});e.asyncDep=o}else Ts(e,o,t)}else ai(e,t)}function Ts(e,t,n){U(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ne(t)&&(e.setupState=Fo(t)),ai(e,n)}let Is;function ai(e,t,n){const r=e.type;if(!e.render){if(!t&&Is&&!r.render){const s=r.template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:u}=r,f=ae(ae({isCustomElement:o,delimiters:l},i),u);r.render=Is(s,f)}}e.render=r.render||Pe}Tt(e),Lt(),au(e),Ft(),dt()}function Bu(e){return new Proxy(e.attrs,{get(t,n){return be(e,"get","$attrs"),t[n]}})}function Hu(e){const t=r=>{e.exposed=r||{}};let n;return{get attrs(){return n||(n=Bu(e))},slots:e.slots,emit:e.emit,expose:t}}function Yr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Fo(No(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in An)return An[n](e)}}))}function Du(e){return U(e)&&e.displayName||e.name}function qu(e){return U(e)&&"__vccOpts"in e}const $e=(e,t)=>Fl(e,t,Gt);function fi(e,t,n){const r=arguments.length;return r===2?ne(t)&&!L(t)?_r(t)?se(e,null,[t]):se(e,t):se(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&_r(n)&&(n=[n]),se(e,t,n))}const Ku="3.2.31",Vu="http://www.w3.org/2000/svg",lt=typeof document!="undefined"?document:null,Ns=lt&<.createElement("template"),zu={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t?lt.createElementNS(Vu,e):lt.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>lt.createTextNode(e),createComment:e=>lt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>lt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{Ns.innerHTML=r?`${e}`:e;const l=Ns.content;if(r){const u=l.firstChild;for(;u.firstChild;)l.appendChild(u.firstChild);l.removeChild(u)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function Wu(e,t,n){const r=e._vtc;r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function Ju(e,t,n){const r=e.style,s=oe(n);if(n&&!s){for(const o in n)Er(r,o,n[o]);if(t&&!oe(t))for(const o in t)n[o]==null&&Er(r,o,"")}else{const o=r.display;s?t!==n&&(r.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(r.display=o)}}const $s=/\s*!important$/;function Er(e,t,n){if(L(n))n.forEach(r=>Er(e,t,r));else if(t.startsWith("--"))e.setProperty(t,n);else{const r=Yu(e,t);$s.test(n)?e.setProperty(Mt(r),n.replace($s,""),"important"):e[r]=n}}const Ms=["Webkit","Moz","ms"],er={};function Yu(e,t){const n=er[t];if(n)return n;let r=Le(t);if(r!=="filter"&&r in e)return er[t]=r;r=kn(r);for(let s=0;sdocument.createEvent("Event").timeStamp&&(On=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);di=!!(e&&Number(e[1])<=53)}let wr=0;const Zu=Promise.resolve(),Gu=()=>{wr=0},ec=()=>wr||(Zu.then(Gu),wr=On());function ut(e,t,n,r){e.addEventListener(t,n,r)}function tc(e,t,n,r){e.removeEventListener(t,n,r)}function nc(e,t,n,r,s=null){const o=e._vei||(e._vei={}),i=o[t];if(r&&i)i.value=r;else{const[l,u]=rc(t);if(r){const f=o[t]=sc(r,s);ut(e,l,f,u)}else i&&(tc(e,l,i,u),o[t]=void 0)}}const Fs=/(?:Once|Passive|Capture)$/;function rc(e){let t;if(Fs.test(e)){t={};let n;for(;n=e.match(Fs);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[Mt(e.slice(2)),t]}function sc(e,t){const n=r=>{const s=r.timeStamp||On();(di||s>=n.attached-1)&&Ae(oc(r,n.value),t,5,[r])};return n.value=e,n.attached=ec(),n}function oc(e,t){if(L(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const js=/^on[a-z]/,ic=(e,t,n,r,s=!1,o,i,l,u)=>{t==="class"?Wu(e,r,s):t==="style"?Ju(e,n,r):Mn(t)?Nr(t)||nc(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):lc(e,t,r,s))?Qu(e,t,r,o,i,l,u):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Xu(e,t,r,s))};function lc(e,t,n,r){return r?!!(t==="innerHTML"||t==="textContent"||t in e&&js.test(t)&&U(n)):t==="spellcheck"||t==="draggable"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||js.test(t)&&oe(n)?!1:t in e}const Sn=e=>{const t=e.props["onUpdate:modelValue"];return L(t)?n=>dn(t,n):t};function uc(e){e.target.composing=!0}function ks(e){const t=e.target;t.composing&&(t.composing=!1,cc(t,"input"))}function cc(e,t){const n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}const ac={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e._assign=Sn(s);const o=r||s.props&&s.props.type==="number";ut(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n?l=l.trim():o&&(l=En(l)),e._assign(l)}),n&&ut(e,"change",()=>{e.value=e.value.trim()}),t||(ut(e,"compositionstart",uc),ut(e,"compositionend",ks),ut(e,"change",ks))},mounted(e,{value:t}){e.value=t==null?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:s}},o){if(e._assign=Sn(o),e.composing||document.activeElement===e&&(n||r&&e.value.trim()===t||(s||e.type==="number")&&En(e.value)===t))return;const i=t==null?"":t;e.value!==i&&(e.value=i)}},fc={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const s=Ln(t);ut(e,"change",()=>{const o=Array.prototype.filter.call(e.options,i=>i.selected).map(i=>n?En(Tn(i)):Tn(i));e._assign(e.multiple?s?new Set(o):o:o[0])}),e._assign=Sn(r)},mounted(e,{value:t}){Us(e,t)},beforeUpdate(e,t,n){e._assign=Sn(n)},updated(e,{value:t}){Us(e,t)}};function Us(e,t){const n=e.multiple;if(!(n&&!L(t)&&!Ln(t))){for(let r=0,s=e.options.length;r-1:o.selected=t.has(i);else if($n(Tn(o),t)){e.selectedIndex!==r&&(e.selectedIndex=r);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Tn(e){return"_value"in e?e._value:e.value}const dc=["ctrl","shift","alt","meta"],hc={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>dc.some(n=>e[`${n}Key`]&&!t.includes(n))},pc=(e,t)=>(n,...r)=>{for(let s=0;s{const t=gc().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=vc(r);if(!s)return;const o=t._component;!U(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,s instanceof SVGElement);return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t};function vc(e){return oe(e)?document.querySelector(e):e}/*! + * vue-router v4.0.14 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */const hi=typeof Symbol=="function"&&typeof Symbol.toStringTag=="symbol",jt=e=>hi?Symbol(e):"_vr_"+e,_c=jt("rvlm"),Hs=jt("rvd"),Xr=jt("r"),pi=jt("rl"),xr=jt("rvl"),Pt=typeof window!="undefined";function bc(e){return e.__esModule||hi&&e[Symbol.toStringTag]==="Module"}const Y=Object.assign;function tr(e,t){const n={};for(const r in t){const s=t[r];n[r]=Array.isArray(s)?s.map(e):e(s)}return n}const zt=()=>{},Ec=/\/$/,wc=e=>e.replace(Ec,"");function nr(e,t,n="/"){let r,s={},o="",i="";const l=t.indexOf("?"),u=t.indexOf("#",l>-1?l:0);return l>-1&&(r=t.slice(0,l),o=t.slice(l+1,u>-1?u:t.length),s=e(o)),u>-1&&(r=r||t.slice(0,u),i=t.slice(u,t.length)),r=Pc(r!=null?r:t,n),{fullPath:r+(o&&"?")+o+i,path:r,query:s,hash:i}}function xc(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ds(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Rc(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&It(t.matched[r],n.matched[s])&&mi(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function It(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function mi(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Cc(e[n],t[n]))return!1;return!0}function Cc(e,t){return Array.isArray(e)?qs(e,t):Array.isArray(t)?qs(t,e):e===t}function qs(e,t){return Array.isArray(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Pc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let s=n.length-1,o,i;for(o=0;o({left:window.pageXOffset,top:window.pageYOffset});function Ic(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=Tc(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Ks(e,t){return(history.state?history.state.position-t:-1)+e}const Rr=new Map;function Nc(e,t){Rr.set(e,t)}function $c(e){const t=Rr.get(e);return Rr.delete(e),t}let Mc=()=>location.protocol+"//"+location.host;function gi(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){let l=s.includes(e.slice(o))?e.slice(o).length:1,u=s.slice(l);return u[0]!=="/"&&(u="/"+u),Ds(u,"")}return Ds(n,e)+r+s}function Lc(e,t,n,r){let s=[],o=[],i=null;const l=({state:p})=>{const _=gi(e,location),A=n.value,j=t.value;let P=0;if(p){if(n.value=_,t.value=p,i&&i===A){i=null;return}P=j?p.position-j.position:0}else r(_);s.forEach(O=>{O(n.value,A,{delta:P,type:en.pop,direction:P?P>0?Wt.forward:Wt.back:Wt.unknown})})};function u(){i=n.value}function f(p){s.push(p);const _=()=>{const A=s.indexOf(p);A>-1&&s.splice(A,1)};return o.push(_),_}function c(){const{history:p}=window;!p.state||p.replaceState(Y({},p.state,{scroll:Kn()}),"")}function h(){for(const p of o)p();o=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",c)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",c),{pauseListeners:u,listen:f,destroy:h}}function Vs(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?Kn():null}}function Fc(e){const{history:t,location:n}=window,r={value:gi(e,n)},s={value:t.state};s.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(u,f,c){const h=e.indexOf("#"),p=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+u:Mc()+e+u;try{t[c?"replaceState":"pushState"](f,"",p),s.value=f}catch(_){console.error(_),n[c?"replace":"assign"](p)}}function i(u,f){const c=Y({},t.state,Vs(s.value.back,u,s.value.forward,!0),f,{position:s.value.position});o(u,c,!0),r.value=u}function l(u,f){const c=Y({},s.value,t.state,{forward:u,scroll:Kn()});o(c.current,c,!0);const h=Y({},Vs(r.value,u,null),{position:c.position+1},f);o(u,h,!1),r.value=u}return{location:r,state:s,push:l,replace:i}}function jc(e){e=Ac(e);const t=Fc(e),n=Lc(e,t.state,t.location,t.replace);function r(o,i=!0){i||n.pauseListeners(),history.go(o)}const s=Y({location:"",base:e,go:r,createHref:Sc.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function kc(e){return typeof e=="string"||e&&typeof e=="object"}function yi(e){return typeof e=="string"||typeof e=="symbol"}const We={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},vi=jt("nf");var zs;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(zs||(zs={}));function Nt(e,t){return Y(new Error,{type:e,[vi]:!0},t)}function Je(e,t){return e instanceof Error&&vi in e&&(t==null||!!(e.type&t))}const Ws="[^/]+?",Uc={sensitive:!1,strict:!1,start:!0,end:!0},Bc=/[.+*?^${}()[\]/\\]/g;function Hc(e,t){const n=Y({},Uc,t),r=[];let s=n.start?"^":"";const o=[];for(const f of e){const c=f.length?[]:[90];n.strict&&!f.length&&(s+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function qc(e,t){let n=0;const r=e.score,s=t.score;for(;n1&&(u==="*"||u==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:f,regexp:c,repeatable:u==="*"||u==="+",optional:u==="*"||u==="?"})):t("Invalid state to consume buffer"),f="")}function p(){f+=u}for(;l{i(M)}:zt}function i(c){if(yi(c)){const h=r.get(c);h&&(r.delete(c),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(c);h>-1&&(n.splice(h,1),c.record.name&&r.delete(c.record.name),c.children.forEach(i),c.alias.forEach(i))}}function l(){return n}function u(c){let h=0;for(;h=0&&(c.record.path!==n[h].record.path||!_i(c,n[h]));)h++;n.splice(h,0,c),c.record.name&&!Js(c)&&r.set(c.record.name,c)}function f(c,h){let p,_={},A,j;if("name"in c&&c.name){if(p=r.get(c.name),!p)throw Nt(1,{location:c});j=p.record.name,_=Y(Yc(h.params,p.keys.filter(M=>!M.optional).map(M=>M.name)),c.params),A=p.stringify(_)}else if("path"in c)A=c.path,p=n.find(M=>M.re.test(A)),p&&(_=p.parse(A),j=p.record.name);else{if(p=h.name?r.get(h.name):n.find(M=>M.re.test(h.path)),!p)throw Nt(1,{location:c,currentLocation:h});j=p.record.name,_=Y({},h.params,c.params),A=p.stringify(_)}const P=[];let O=p;for(;O;)P.unshift(O.record),O=O.parent;return{name:j,path:A,params:_,matched:P,meta:Zc(P)}}return e.forEach(c=>o(c)),{addRoute:o,resolve:f,removeRoute:i,getRoutes:l,getRecordMatcher:s}}function Yc(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Xc(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:Qc(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||{}:{default:e.component}}}function Qc(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Js(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Zc(e){return e.reduce((t,n)=>Y(t,n.meta),{})}function Ys(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function _i(e,t){return t.children.some(n=>n===e||_i(e,n))}const bi=/#/g,Gc=/&/g,ea=/\//g,ta=/=/g,na=/\?/g,Ei=/\+/g,ra=/%5B/g,sa=/%5D/g,wi=/%5E/g,oa=/%60/g,xi=/%7B/g,ia=/%7C/g,Ri=/%7D/g,la=/%20/g;function Qr(e){return encodeURI(""+e).replace(ia,"|").replace(ra,"[").replace(sa,"]")}function ua(e){return Qr(e).replace(xi,"{").replace(Ri,"}").replace(wi,"^")}function Cr(e){return Qr(e).replace(Ei,"%2B").replace(la,"+").replace(bi,"%23").replace(Gc,"%26").replace(oa,"`").replace(xi,"{").replace(Ri,"}").replace(wi,"^")}function ca(e){return Cr(e).replace(ta,"%3D")}function aa(e){return Qr(e).replace(bi,"%23").replace(na,"%3F")}function fa(e){return e==null?"":aa(e).replace(ea,"%2F")}function In(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function da(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;so&&Cr(o)):[r&&Cr(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function ha(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=Array.isArray(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}function Bt(){let e=[];function t(r){return e.push(r),()=>{const s=e.indexOf(r);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function Qe(e,t,n,r,s){const o=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((i,l)=>{const u=h=>{h===!1?l(Nt(4,{from:n,to:t})):h instanceof Error?l(h):kc(h)?l(Nt(2,{from:t,to:h})):(o&&r.enterCallbacks[s]===o&&typeof h=="function"&&o.push(h),i())},f=e.call(r&&r.instances[s],t,n,u);let c=Promise.resolve(f);e.length<3&&(c=c.then(u)),c.catch(h=>l(h))})}function rr(e,t,n,r){const s=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(pa(l)){const f=(l.__vccOpts||l)[t];f&&s.push(Qe(f,n,r,o,i))}else{let u=l();s.push(()=>u.then(f=>{if(!f)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${o.path}"`));const c=bc(f)?f.default:f;o.components[i]=c;const p=(c.__vccOpts||c)[t];return p&&Qe(p,n,r,o,i)()}))}}return s}function pa(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Qs(e){const t=tt(Xr),n=tt(pi),r=$e(()=>t.resolve(Ge(e.to))),s=$e(()=>{const{matched:u}=r.value,{length:f}=u,c=u[f-1],h=n.matched;if(!c||!h.length)return-1;const p=h.findIndex(It.bind(null,c));if(p>-1)return p;const _=Zs(u[f-2]);return f>1&&Zs(c)===_&&h[h.length-1].path!==_?h.findIndex(It.bind(null,u[f-2])):p}),o=$e(()=>s.value>-1&&ya(n.params,r.value.params)),i=$e(()=>s.value>-1&&s.value===n.matched.length-1&&mi(n.params,r.value.params));function l(u={}){return ga(u)?t[Ge(e.replace)?"replace":"push"](Ge(e.to)).catch(zt):Promise.resolve()}return{route:r,href:$e(()=>r.value.href),isActive:o,isExactActive:i,navigate:l}}const ma=Wo({name:"RouterLink",props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Qs,setup(e,{slots:t}){const n=tn(Qs(e)),{options:r}=tt(Xr),s=$e(()=>({[Gs(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[Gs(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:fi("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},o)}}}),Pr=ma;function ga(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function ya(e,t){for(const n in t){const r=t[n],s=e[n];if(typeof r=="string"){if(r!==s)return!1}else if(!Array.isArray(s)||s.length!==r.length||r.some((o,i)=>o!==s[i]))return!1}return!0}function Zs(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Gs=(e,t,n)=>e!=null?e:t!=null?t:n,va=Wo({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},setup(e,{attrs:t,slots:n}){const r=tt(xr),s=$e(()=>e.route||r.value),o=tt(Hs,0),i=$e(()=>s.value.matched[o]);hn(Hs,o+1),hn(_c,i),hn(xr,s);const l=Il();return pn(()=>[l.value,i.value,e.name],([u,f,c],[h,p,_])=>{f&&(f.instances[c]=u,p&&p!==f&&u&&u===h&&(f.leaveGuards.size||(f.leaveGuards=p.leaveGuards),f.updateGuards.size||(f.updateGuards=p.updateGuards))),u&&f&&(!p||!It(f,p)||!h)&&(f.enterCallbacks[c]||[]).forEach(A=>A(u))},{flush:"post"}),()=>{const u=s.value,f=i.value,c=f&&f.components[e.name],h=e.name;if(!c)return eo(n.default,{Component:c,route:u});const p=f.props[e.name],_=p?p===!0?u.params:typeof p=="function"?p(u):p:null,j=fi(c,Y({},_,t,{onVnodeUnmounted:P=>{P.component.isUnmounted&&(f.instances[h]=null)},ref:l}));return eo(n.default,{Component:j,route:u})||j}}});function eo(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Ci=va;function _a(e){const t=Jc(e.routes,e),n=e.parseQuery||da,r=e.stringifyQuery||Xs,s=e.history,o=Bt(),i=Bt(),l=Bt(),u=Nl(We);let f=We;Pt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=tr.bind(null,g=>""+g),h=tr.bind(null,fa),p=tr.bind(null,In);function _(g,T){let R,I;return yi(g)?(R=t.getRecordMatcher(g),I=T):I=g,t.addRoute(I,R)}function A(g){const T=t.getRecordMatcher(g);T&&t.removeRoute(T)}function j(){return t.getRoutes().map(g=>g.record)}function P(g){return!!t.getRecordMatcher(g)}function O(g,T){if(T=Y({},T||u.value),typeof g=="string"){const k=nr(n,g,T.path),a=t.resolve({path:k.path},T),d=s.createHref(k.fullPath);return Y(k,a,{params:p(a.params),hash:In(k.hash),redirectedFrom:void 0,href:d})}let R;if("path"in g)R=Y({},g,{path:nr(n,g.path,T.path).path});else{const k=Y({},g.params);for(const a in k)k[a]==null&&delete k[a];R=Y({},g,{params:h(g.params)}),T.params=h(T.params)}const I=t.resolve(R,T),W=g.hash||"";I.params=c(p(I.params));const Z=xc(r,Y({},g,{hash:ua(W),path:I.path})),B=s.createHref(Z);return Y({fullPath:Z,hash:W,query:r===Xs?ha(g.query):g.query||{}},I,{redirectedFrom:void 0,href:B})}function M(g){return typeof g=="string"?nr(n,g,u.value.path):Y({},g)}function K(g,T){if(f!==g)return Nt(8,{from:T,to:g})}function q(g){return je(g)}function fe(g){return q(Y(M(g),{replace:!0}))}function pe(g){const T=g.matched[g.matched.length-1];if(T&&T.redirect){const{redirect:R}=T;let I=typeof R=="function"?R(g):R;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=M(I):{path:I},I.params={}),Y({query:g.query,hash:g.hash,params:g.params},I)}}function je(g,T){const R=f=O(g),I=u.value,W=g.state,Z=g.force,B=g.replace===!0,k=pe(R);if(k)return je(Y(M(k),{state:W,force:Z,replace:B}),T||R);const a=R;a.redirectedFrom=T;let d;return!Z&&Rc(r,I,R)&&(d=Nt(16,{to:a,from:I}),_t(I,I,!0,!1)),(d?Promise.resolve(d):Oe(a,I)).catch(m=>Je(m)?Je(m,2)?m:me(m):Q(m,a,I)).then(m=>{if(m){if(Je(m,2))return je(Y(M(m.to),{state:W,force:Z,replace:B}),T||a)}else m=ke(a,I,!0,B,W);return Ve(a,I,m),m})}function mt(g,T){const R=K(g,T);return R?Promise.reject(R):Promise.resolve()}function Oe(g,T){let R;const[I,W,Z]=ba(g,T);R=rr(I.reverse(),"beforeRouteLeave",g,T);for(const k of I)k.leaveGuards.forEach(a=>{R.push(Qe(a,g,T))});const B=mt.bind(null,g,T);return R.push(B),Et(R).then(()=>{R=[];for(const k of o.list())R.push(Qe(k,g,T));return R.push(B),Et(R)}).then(()=>{R=rr(W,"beforeRouteUpdate",g,T);for(const k of W)k.updateGuards.forEach(a=>{R.push(Qe(a,g,T))});return R.push(B),Et(R)}).then(()=>{R=[];for(const k of g.matched)if(k.beforeEnter&&!T.matched.includes(k))if(Array.isArray(k.beforeEnter))for(const a of k.beforeEnter)R.push(Qe(a,g,T));else R.push(Qe(k.beforeEnter,g,T));return R.push(B),Et(R)}).then(()=>(g.matched.forEach(k=>k.enterCallbacks={}),R=rr(Z,"beforeRouteEnter",g,T),R.push(B),Et(R))).then(()=>{R=[];for(const k of i.list())R.push(Qe(k,g,T));return R.push(B),Et(R)}).catch(k=>Je(k,8)?k:Promise.reject(k))}function Ve(g,T,R){for(const I of l.list())I(g,T,R)}function ke(g,T,R,I,W){const Z=K(g,T);if(Z)return Z;const B=T===We,k=Pt?history.state:{};R&&(I||B?s.replace(g.fullPath,Y({scroll:B&&k&&k.scroll},W)):s.push(g.fullPath,W)),u.value=g,_t(g,T,R,B),me()}let Ue;function gt(){Ue=s.listen((g,T,R)=>{const I=O(g),W=pe(I);if(W){je(Y(W,{replace:!0}),I).catch(zt);return}f=I;const Z=u.value;Pt&&Nc(Ks(Z.fullPath,R.delta),Kn()),Oe(I,Z).catch(B=>Je(B,12)?B:Je(B,2)?(je(B.to,I).then(k=>{Je(k,20)&&!R.delta&&R.type===en.pop&&s.go(-1,!1)}).catch(zt),Promise.reject()):(R.delta&&s.go(-R.delta,!1),Q(B,I,Z))).then(B=>{B=B||ke(I,Z,!1),B&&(R.delta?s.go(-R.delta,!1):R.type===en.pop&&Je(B,20)&&s.go(-1,!1)),Ve(I,Z,B)}).catch(zt)})}let yt=Bt(),vt=Bt(),re;function Q(g,T,R){me(g);const I=vt.list();return I.length?I.forEach(W=>W(g,T,R)):console.error(g),Promise.reject(g)}function z(){return re&&u.value!==We?Promise.resolve():new Promise((g,T)=>{yt.add([g,T])})}function me(g){return re||(re=!g,gt(),yt.list().forEach(([T,R])=>g?R(g):T()),yt.reset()),g}function _t(g,T,R,I){const{scrollBehavior:W}=e;if(!Pt||!W)return Promise.resolve();const Z=!R&&$c(Ks(g.fullPath,0))||(I||!R)&&history.state&&history.state.scroll||null;return ko().then(()=>W(g,T,Z)).then(B=>B&&Ic(B)).catch(B=>Q(B,g,T))}const Be=g=>s.go(g);let Se;const Ee=new Set;return{currentRoute:u,addRoute:_,removeRoute:A,hasRoute:P,getRoutes:j,resolve:O,options:e,push:q,replace:fe,go:Be,back:()=>Be(-1),forward:()=>Be(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:vt.add,isReady:z,install(g){const T=this;g.component("RouterLink",Pr),g.component("RouterView",Ci),g.config.globalProperties.$router=T,Object.defineProperty(g.config.globalProperties,"$route",{enumerable:!0,get:()=>Ge(u)}),Pt&&!Se&&u.value===We&&(Se=!0,q(s.location).catch(W=>{}));const R={};for(const W in We)R[W]=$e(()=>u.value[W]);g.provide(Xr,T),g.provide(pi,tn(R)),g.provide(xr,u);const I=g.unmount;Ee.add(g),g.unmount=function(){Ee.delete(g),Ee.size<1&&(f=We,Ue&&Ue(),u.value=We,Se=!1,re=!1),I()}}}}function Et(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function ba(e,t){const n=[],r=[],s=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;iIt(f,l))?r.push(l):n.push(l));const u=e.matched[i];u&&(t.matched.find(f=>It(f,u))||s.push(u))}return[n,r,s]}var Pi=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n};const Ea={class:"wrapper"},wa={class:"greetings"},xa=te("h1",{class:"green"},"HackerNews Show",-1),Ra=te("h3",null," This page is only a showcase, to use the unofficial HackerNews API with Python and Vue. ",-1),Ca=te("p",null,[pt(" Look at the "),te("a",{target:"_blank",href:"https://github.com/HackerNews/API"}," HackerNews API"),pt(" used here. ")],-1),Pa=te("p",null,[pt(" Take a look at the "),te("a",{target:"_blank",href:"https://github.com/wieerwill/hackernewsfullstack"},"source code"),pt(" of this project. ")],-1),Aa=pt(" You don't get any news? Check the Ping tool, to verify you can connect to the python backend: "),Oa=pt("PingPong"),Sa=te("hr",{class:"headerseperator"},null,-1),Ta={setup(e){return(t,n)=>(ve(),we(xe,null,[te("header",null,[te("div",Ea,[te("div",wa,[se(Ge(Pr),{to:"/"},{default:Rn(()=>[xa]),_:1}),Ra,Ca,Pa,te("p",null,[Aa,se(Ge(Pr),{to:"ping"},{default:Rn(()=>[Oa]),_:1})])]),Sa])]),se(Ge(Ci))],64))}},Ia="modulepreload",to={},Na="/",no=function(t,n){return!n||n.length===0?t():Promise.all(n.map(r=>{if(r=`${Na}${r}`,r in to)return;to[r]=!0;const s=r.endsWith(".css"),o=s?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${r}"]${o}`))return;const i=document.createElement("link");if(i.rel=s?"stylesheet":Ia,s||(i.as="script",i.crossOrigin=""),i.href=r,document.head.appendChild(i),s)return new Promise((l,u)=>{i.addEventListener("load",l),i.addEventListener("error",()=>u(new Error(`Unable to preload CSS for ${r}`)))})})).then(()=>t())};var Zr={exports:{}},Ai=function(t,n){return function(){for(var s=new Array(arguments.length),o=0;o=0)return;r==="set-cookie"?n[r]=(n[r]?n[r]:[]).concat([s]):n[r]=n[r]?n[r]+", "+s:s}}),n},so=he,af=so.isStandardBrowserEnv()?function(){var t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a"),r;function s(o){var i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){var l=so.isString(i)?s(i):i;return l.protocol===r.protocol&&l.host===r.host}}():function(){return function(){return!0}}();function ts(e){this.message=e}ts.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")};ts.prototype.__CANCEL__=!0;var zn=ts,an=he,ff=ef,df=tf,hf=Ii,pf=lf,mf=cf,gf=af,or=Mi,yf=$i,vf=zn,oo=function(t){return new Promise(function(r,s){var o=t.data,i=t.headers,l=t.responseType,u;function f(){t.cancelToken&&t.cancelToken.unsubscribe(u),t.signal&&t.signal.removeEventListener("abort",u)}an.isFormData(o)&&delete i["Content-Type"];var c=new XMLHttpRequest;if(t.auth){var h=t.auth.username||"",p=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.Authorization="Basic "+btoa(h+":"+p)}var _=pf(t.baseURL,t.url);c.open(t.method.toUpperCase(),hf(_,t.params,t.paramsSerializer),!0),c.timeout=t.timeout;function A(){if(!!c){var P="getAllResponseHeaders"in c?mf(c.getAllResponseHeaders()):null,O=!l||l==="text"||l==="json"?c.responseText:c.response,M={data:O,status:c.status,statusText:c.statusText,headers:P,config:t,request:c};ff(function(q){r(q),f()},function(q){s(q),f()},M),c=null}}if("onloadend"in c?c.onloadend=A:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(A)},c.onabort=function(){!c||(s(or("Request aborted",t,"ECONNABORTED",c)),c=null)},c.onerror=function(){s(or("Network Error",t,null,c)),c=null},c.ontimeout=function(){var O=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",M=t.transitional||yf;t.timeoutErrorMessage&&(O=t.timeoutErrorMessage),s(or(O,t,M.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",c)),c=null},an.isStandardBrowserEnv()){var j=(t.withCredentials||gf(_))&&t.xsrfCookieName?df.read(t.xsrfCookieName):void 0;j&&(i[t.xsrfHeaderName]=j)}"setRequestHeader"in c&&an.forEach(i,function(O,M){typeof o=="undefined"&&M.toLowerCase()==="content-type"?delete i[M]:c.setRequestHeader(M,O)}),an.isUndefined(t.withCredentials)||(c.withCredentials=!!t.withCredentials),l&&l!=="json"&&(c.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&c.addEventListener("progress",t.onDownloadProgress),typeof t.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",t.onUploadProgress),(t.cancelToken||t.signal)&&(u=function(P){!c||(s(!P||P&&P.type?new vf("canceled"):P),c.abort(),c=null)},t.cancelToken&&t.cancelToken.subscribe(u),t.signal&&(t.signal.aborted?u():t.signal.addEventListener("abort",u))),o||(o=null),c.send(o)})},ie=he,io=Qa,_f=Ni,bf=$i,Ef={"Content-Type":"application/x-www-form-urlencoded"};function lo(e,t){!ie.isUndefined(e)&&ie.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}function wf(){var e;return(typeof XMLHttpRequest!="undefined"||typeof process!="undefined"&&Object.prototype.toString.call(process)==="[object process]")&&(e=oo),e}function xf(e,t,n){if(ie.isString(e))try{return(t||JSON.parse)(e),ie.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}var Wn={transitional:bf,adapter:wf(),transformRequest:[function(t,n){return io(n,"Accept"),io(n,"Content-Type"),ie.isFormData(t)||ie.isArrayBuffer(t)||ie.isBuffer(t)||ie.isStream(t)||ie.isFile(t)||ie.isBlob(t)?t:ie.isArrayBufferView(t)?t.buffer:ie.isURLSearchParams(t)?(lo(n,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):ie.isObject(t)||n&&n["Content-Type"]==="application/json"?(lo(n,"application/json"),xf(t)):t}],transformResponse:[function(t){var n=this.transitional||Wn.transitional,r=n&&n.silentJSONParsing,s=n&&n.forcedJSONParsing,o=!r&&this.responseType==="json";if(o||s&&ie.isString(t)&&t.length)try{return JSON.parse(t)}catch(i){if(o)throw i.name==="SyntaxError"?_f(i,this,"E_JSON_PARSE"):i}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};ie.forEach(["delete","get","head"],function(t){Wn.headers[t]={}});ie.forEach(["post","put","patch"],function(t){Wn.headers[t]=ie.merge(Ef)});var ns=Wn,Rf=he,Cf=ns,Pf=function(t,n,r){var s=this||Cf;return Rf.forEach(r,function(i){t=i.call(s,t,n)}),t},Li=function(t){return!!(t&&t.__CANCEL__)},uo=he,ir=Pf,Af=Li,Of=ns,Sf=zn;function lr(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Sf("canceled")}var Tf=function(t){lr(t),t.headers=t.headers||{},t.data=ir.call(t,t.data,t.headers,t.transformRequest),t.headers=uo.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),uo.forEach(["delete","get","head","post","put","patch","common"],function(s){delete t.headers[s]});var n=t.adapter||Of.adapter;return n(t).then(function(s){return lr(t),s.data=ir.call(t,s.data,s.headers,t.transformResponse),s},function(s){return Af(s)||(lr(t),s&&s.response&&(s.response.data=ir.call(t,s.response.data,s.response.headers,t.transformResponse))),Promise.reject(s)})},ye=he,Fi=function(t,n){n=n||{};var r={};function s(c,h){return ye.isPlainObject(c)&&ye.isPlainObject(h)?ye.merge(c,h):ye.isPlainObject(h)?ye.merge({},h):ye.isArray(h)?h.slice():h}function o(c){if(ye.isUndefined(n[c])){if(!ye.isUndefined(t[c]))return s(void 0,t[c])}else return s(t[c],n[c])}function i(c){if(!ye.isUndefined(n[c]))return s(void 0,n[c])}function l(c){if(ye.isUndefined(n[c])){if(!ye.isUndefined(t[c]))return s(void 0,t[c])}else return s(void 0,n[c])}function u(c){if(c in n)return s(t[c],n[c]);if(c in t)return s(void 0,t[c])}var f={url:i,method:i,data:i,baseURL:l,transformRequest:l,transformResponse:l,paramsSerializer:l,timeout:l,timeoutMessage:l,withCredentials:l,adapter:l,responseType:l,xsrfCookieName:l,xsrfHeaderName:l,onUploadProgress:l,onDownloadProgress:l,decompress:l,maxContentLength:l,maxBodyLength:l,transport:l,httpAgent:l,httpsAgent:l,cancelToken:l,socketPath:l,responseEncoding:l,validateStatus:u};return ye.forEach(Object.keys(t).concat(Object.keys(n)),function(h){var p=f[h]||o,_=p(h);ye.isUndefined(_)&&p!==u||(r[h]=_)}),r},ji={version:"0.26.1"},If=ji.version,rs={};["object","boolean","number","function","string","symbol"].forEach(function(e,t){rs[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});var co={};rs.transitional=function(t,n,r){function s(o,i){return"[Axios v"+If+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return function(o,i,l){if(t===!1)throw new Error(s(i," has been removed"+(n?" in "+n:"")));return n&&!co[i]&&(co[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,l):!0}};function Nf(e,t,n){if(typeof e!="object")throw new TypeError("options must be an object");for(var r=Object.keys(e),s=r.length;s-- >0;){var o=r[s],i=t[o];if(i){var l=e[o],u=l===void 0||i(l,o,e);if(u!==!0)throw new TypeError("option "+o+" must be "+u);continue}if(n!==!0)throw Error("Unknown option "+o)}}var $f={assertOptions:Nf,validators:rs},ki=he,Mf=Ii,ao=Ya,fo=Tf,Jn=Fi,Ui=$f,xt=Ui.validators;function nn(e){this.defaults=e,this.interceptors={request:new ao,response:new ao}}nn.prototype.request=function(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=Jn(this.defaults,n),n.method?n.method=n.method.toLowerCase():this.defaults.method?n.method=this.defaults.method.toLowerCase():n.method="get";var r=n.transitional;r!==void 0&&Ui.assertOptions(r,{silentJSONParsing:xt.transitional(xt.boolean),forcedJSONParsing:xt.transitional(xt.boolean),clarifyTimeoutError:xt.transitional(xt.boolean)},!1);var s=[],o=!0;this.interceptors.request.forEach(function(_){typeof _.runWhen=="function"&&_.runWhen(n)===!1||(o=o&&_.synchronous,s.unshift(_.fulfilled,_.rejected))});var i=[];this.interceptors.response.forEach(function(_){i.push(_.fulfilled,_.rejected)});var l;if(!o){var u=[fo,void 0];for(Array.prototype.unshift.apply(u,s),u=u.concat(i),l=Promise.resolve(n);u.length;)l=l.then(u.shift(),u.shift());return l}for(var f=n;s.length;){var c=s.shift(),h=s.shift();try{f=c(f)}catch(p){h(p);break}}try{l=fo(f)}catch(p){return Promise.reject(p)}for(;i.length;)l=l.then(i.shift(),i.shift());return l};nn.prototype.getUri=function(t){return t=Jn(this.defaults,t),Mf(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")};ki.forEach(["delete","get","head","options"],function(t){nn.prototype[t]=function(n,r){return this.request(Jn(r||{},{method:t,url:n,data:(r||{}).data}))}});ki.forEach(["post","put","patch"],function(t){nn.prototype[t]=function(n,r,s){return this.request(Jn(s||{},{method:t,url:n,data:r}))}});var Lf=nn,Ff=zn;function $t(e){if(typeof e!="function")throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(s){t=s});var n=this;this.promise.then(function(r){if(!!n._listeners){var s,o=n._listeners.length;for(s=0;s{const r=Pu("RouterLink");return ve(),we("div",{class:Nn(["card",t.parseditem.type])},[se(r,{to:{path:"/item/"+t.parseditem.id}},{default:Rn(()=>[t.parseditem.type=="comment"?(ve(),we("p",{key:0,innerHTML:t.parseditem.text.slice(0,150)},null,8,Kf)):(ve(),we("h3",Vf,_n(t.parseditem.title),1)),te("h4",null,"by "+_n(t.parseditem.by),1)]),_:1},8,["to"])],2)}}});var Jf=Pi(Wf,[["__scopeId","data-v-773f36a2"]]);const ss=e=>(ql("data-v-0771414d"),e=e(),Kl(),e),Yf=ss(()=>te("option",{disabled:"",value:""},"select category",-1)),Xf=["value"],Qf=ss(()=>te("button",{type:"submit",value:"submit"},"Update",-1)),Zf=ss(()=>te("hr",null,null,-1)),Gf={key:0,class:"loading"},ed={key:1,class:"error"},td={key:2},nd={name:"Items",data(){return{form:{category:null,count:null},categories:[{text:"Story",value:"story"},{text:"Commment",value:"comment"},{text:"Job",value:"job"},{text:"Poll",value:"poll"}],items:null,loading:null,error:null}},methods:{getItems(){this.error=this.item=null,this.loading=!0,Sr.get("http://localhost:5000/items").then(e=>{this.loading=!1,this.items=e.data.items}).catch(e=>{this.loading=!1,this.error=e.toString()})},submitForm(){this.error=this.item=null,this.loading=!0,Sr.post("http://localhost:5000/items",{count:this.form.count,category:this.form.category}).then(e=>{this.loading=!1,this.items=e.data.items}).catch(e=>{this.loading=!1,this.error=e.toString()})}},created(){this.getItems()}},rd=Object.assign(nd,{setup(e){return(t,n)=>(ve(),we("main",null,[te("div",null,[te("form",{onSubmit:n[2]||(n[2]=pc(r=>t.submitForm(),["prevent"]))},[Ps(te("select",{"onUpdate:modelValue":n[0]||(n[0]=r=>t.form.category=r)},[Yf,(ve(!0),we(xe,null,Ss(t.categories,r=>(ve(),we("option",{value:r.value,key:r.value},_n(r.text),9,Xf))),128))],512),[[fc,t.form.category]]),Ps(te("input",{"onUpdate:modelValue":n[1]||(n[1]=r=>t.form.count=r),type:"number",placeholder:"Item Amount"},null,512),[[ac,t.form.count]]),Qf],32),Zf,t.loading?(ve(),we("div",Gf,"Loading Items...")):Gn("",!0),t.error?(ve(),we("div",ed,_n(t.error),1)):Gn("",!0),t.items?(ve(),we("div",td,[(ve(!0),we(xe,null,Ss(t.items,(r,s)=>(ve(),we("div",{key:s},[se(Jf,{item:r},null,8,["item"])]))),128))])):Gn("",!0)])]))}});var sd=Pi(rd,[["__scopeId","data-v-0771414d"]]);const od=_a({history:jc("/"),routes:[{path:"/",name:"home",component:sd},{path:"/item/:id",name:"item",component:()=>no(()=>import("./ItemView.b93ae7d5.js"),["static/ItemView.b93ae7d5.js","static/ItemView.0860556b.css"]),props:!0},{path:"/item",redirect:"/"},{path:"/ping",name:"Ping",component:()=>no(()=>import("./PingView.f7a62302.js"),["static/PingView.f7a62302.js","static/PingView.3d2f7997.css"])}]});function os(e){return(os=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function vn(e,t){if(!e.vueAxiosInstalled){var n=Hi(t)?ud(t):t;if(cd(n)){var r=ad(e);if(r){var s=r<3?id:ld;Object.keys(n).forEach(function(o){s(e,o,n[o])}),e.vueAxiosInstalled=!0}else console.error("[vue-axios] unknown Vue version")}else console.error("[vue-axios] configuration is invalid, expected options are either or { : }")}}function id(e,t,n){Object.defineProperty(e.prototype,t,{get:function(){return n}}),e[t]=n}function ld(e,t,n){e.config.globalProperties[t]=n,e[t]=n}function Hi(e){return e&&typeof e.get=="function"&&typeof e.post=="function"}function ud(e){return{axios:e,$http:e}}function cd(e){return os(e)==="object"&&Object.keys(e).every(function(t){return Hi(e[t])})}function ad(e){return e&&e.version&&Number(e.version.split(".")[0])}(typeof exports=="undefined"?"undefined":os(exports))=="object"?module.exports=vn:typeof define=="function"&&define.amd?define([],function(){return vn}):window.Vue&&window.axios&&window.Vue.use&&Vue.use(vn,window.axios);const is=yc(Ta);is.use(vn,Sr);is.use(od);is.mount("#app");export{Pi as _,se as a,Gn as b,we as c,te as d,pt as e,Sr as f,Kl as g,ve as o,ql as p,Pu as r,_n as t,Rn as w}; diff --git a/templates/static/index.5ececa9d.css b/templates/static/index.5ececa9d.css new file mode 100644 index 0000000..c1e7af0 --- /dev/null +++ b/templates/static/index.5ececa9d.css @@ -0,0 +1 @@ +h1[data-v-3bc1e008]{font-weight:500;font-size:2.6rem;top:-10px}h3[data-v-3bc1e008]{font-size:1.2rem}.greetings h1[data-v-3bc1e008],.greetings h3[data-v-3bc1e008]{text-align:center}@media (min-width: 1024px){.greetings h1[data-v-3bc1e008],.greetings h3[data-v-3bc1e008]{text-align:left}}:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;position:relative;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{max-width:1280px;margin:0 auto;padding:2rem;font-weight:400}header{line-height:1.5;max-height:100vh}a,.green{text-decoration:none;color:#00bd7e;transition:.4s}h1{font-weight:500;font-size:2.6rem;top:-10px}h3{font-size:1.2rem}.greetings h1,.greetings h3{text-align:center}.headerseperator{display:block;margin:15px}@media (min-width: 1024px){.greetings h1,.greetings h3{text-align:left}.headerseperator{display:none}}@media (hover: hover){a:hover{background-color:#00bd7e33}}@media (min-width: 1024px){body{display:flex;place-items:center}#app{display:grid;grid-template-columns:1fr 1fr;padding:0 2rem}header{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}header .wrapper{display:flex;place-items:flex-start;flex-wrap:wrap}}.card[data-v-773f36a2]{margin:15px 5px;padding:10px;box-shadow:0 4px 8px #0003;border:1px solid rgb(41,41,41);transition:.3s;border-radius:5px}.card[data-v-773f36a2]:hover{box-shadow:0 8px 16px #0003;border:1px solid rgb(109,109,109)}.story[data-v-773f36a2]{border:1px solid rgb(95,0,0)}.story[data-v-773f36a2]:hover{border:1px solid rgb(201,0,0)}.comment[data-v-773f36a2]{border:1px solid rgb(0,106,106)}.comment[data-v-773f36a2]:hover{border:1px solid rgb(0,189,189)}.job[data-v-773f36a2]{border:1px solid rgb(106,0,106)}.job[data-v-773f36a2]:hover{border:1px solid rgb(211,0,211)}.poll[data-v-773f36a2]{border:1px solid rgb(106,106,0)}.poll[data-v-773f36a2]:hover{border:1px solid rgb(216,216,0)}form[data-v-0771414d]{width:100%;margin:10px;padding:5px}form select[data-v-0771414d]{width:40%}form input[data-v-0771414d]{width:30%}form button[data-v-0771414d]{width:20%}hr[data-v-0771414d]{margin:15px 0} diff --git a/templates/static/index.9cf12eac.js b/templates/static/index.9cf12eac.js new file mode 100644 index 0000000..c5e2003 --- /dev/null +++ b/templates/static/index.9cf12eac.js @@ -0,0 +1,5 @@ +const Po=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerpolicy&&(o.referrerPolicy=r.referrerpolicy),r.crossorigin==="use-credentials"?o.credentials="include":r.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function s(r){if(r.ep)return;r.ep=!0;const o=n(r);fetch(r.href,o)}};Po();function Zn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r!!n[r.toLowerCase()]:r=>!!n[r]}const Ao="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Mo=Zn(Ao);function fr(e){return!!e||e===""}function Gn(e){if(H(e)){const t={};for(let n=0;n{if(n){const s=n.split(zo);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function es(e){let t="";if(ce(e))t=e;else if(H(e))for(let n=0;nce(e)?e:e==null?"":H(e)||ie(e)&&(e.toString===pr||!L(e.toString))?JSON.stringify(e,ar,2):String(e),ar=(e,t)=>t&&t.__v_isRef?ar(e,t.value):yt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:dr(t)?{[`Set(${t.size})`]:[...t.values()]}:ie(t)&&!H(t)&&!mr(t)?String(t):t,te={},bt=[],Ee=()=>{},So=()=>!1,$o=/^on[^a-z]/,mn=e=>$o.test(e),ts=e=>e.startsWith("onUpdate:"),ae=Object.assign,ns=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Ho=Object.prototype.hasOwnProperty,K=(e,t)=>Ho.call(e,t),H=Array.isArray,yt=e=>gn(e)==="[object Map]",dr=e=>gn(e)==="[object Set]",L=e=>typeof e=="function",ce=e=>typeof e=="string",ss=e=>typeof e=="symbol",ie=e=>e!==null&&typeof e=="object",hr=e=>ie(e)&&L(e.then)&&L(e.catch),pr=Object.prototype.toString,gn=e=>pr.call(e),Fo=e=>gn(e).slice(8,-1),mr=e=>gn(e)==="[object Object]",rs=e=>ce(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,tn=Zn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),_n=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},No=/-(\w)/g,Et=_n(e=>e.replace(No,(t,n)=>n?n.toUpperCase():"")),jo=/\B([A-Z])/g,At=_n(e=>e.replace(jo,"-$1").toLowerCase()),gr=_n(e=>e.charAt(0).toUpperCase()+e.slice(1)),Rn=_n(e=>e?`on${gr(e)}`:""),Ut=(e,t)=>!Object.is(e,t),Pn=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Lo=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Cs;const ko=()=>Cs||(Cs=typeof globalThis!="undefined"?globalThis:typeof self!="undefined"?self:typeof window!="undefined"?window:typeof global!="undefined"?global:{});let je;class Bo{constructor(t=!1){this.active=!0,this.effects=[],this.cleanups=[],!t&&je&&(this.parent=je,this.index=(je.scopes||(je.scopes=[])).push(this)-1)}run(t){if(this.active)try{return je=this,t()}finally{je=this.parent}}on(){je=this}off(){je=this.parent}stop(t){if(this.active){let n,s;for(n=0,s=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},_r=e=>(e.w&Ge)>0,vr=e=>(e.n&Ge)>0,Do=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s{(a==="length"||a>=s)&&u.push(l)});else switch(n!==void 0&&u.push(i.get(n)),t){case"add":H(e)?rs(n)&&u.push(i.get("length")):(u.push(i.get(rt)),yt(e)&&u.push(i.get(Fn)));break;case"delete":H(e)||(u.push(i.get(rt)),yt(e)&&u.push(i.get(Fn)));break;case"set":yt(e)&&u.push(i.get(rt));break}if(u.length===1)u[0]&&Nn(u[0]);else{const l=[];for(const a of u)a&&l.push(...a);Nn(os(l))}}function Nn(e,t){for(const n of H(e)?e:[...e])(n!==Ie||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}const Vo=Zn("__proto__,__v_isRef,__isVue"),wr=new Set(Object.getOwnPropertyNames(Symbol).map(e=>Symbol[e]).filter(ss)),Wo=ls(),qo=ls(!1,!0),Yo=ls(!0),Ps=Qo();function Qo(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=V(this);for(let o=0,i=this.length;o{e[t]=function(...n){Mt();const s=V(this)[t].apply(this,n);return Ot(),s}}),e}function ls(e=!1,t=!1){return function(s,r,o){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&o===(e?t?ai:Pr:t?Rr:Cr).get(s))return s;const i=H(s);if(!e&&i&&K(Ps,r))return Reflect.get(Ps,r,o);const u=Reflect.get(s,r,o);return(ss(r)?wr.has(r):Vo(r))||(e||be(s,"get",r),t)?u:le(u)?!i||!rs(r)?u.value:u:ie(u)?e?Ar(u):Qt(u):u}}const Jo=Er(),Xo=Er(!0);function Er(e=!1){return function(n,s,r,o){let i=n[s];if(Dt(i)&&le(i)&&!le(r))return!1;if(!e&&!Dt(r)&&(Mr(r)||(r=V(r),i=V(i)),!H(n)&&le(i)&&!le(r)))return i.value=r,!0;const u=H(n)&&rs(s)?Number(s)e,vn=e=>Reflect.getPrototypeOf(e);function Jt(e,t,n=!1,s=!1){e=e.__v_raw;const r=V(e),o=V(t);t!==o&&!n&&be(r,"get",t),!n&&be(r,"get",o);const{has:i}=vn(r),u=s?cs:n?as:Kt;if(i.call(r,t))return u(e.get(t));if(i.call(r,o))return u(e.get(o));e!==r&&e.get(t)}function Xt(e,t=!1){const n=this.__v_raw,s=V(n),r=V(e);return e!==r&&!t&&be(s,"has",e),!t&&be(s,"has",r),e===r?n.has(e):n.has(e)||n.has(r)}function Zt(e,t=!1){return e=e.__v_raw,!t&&be(V(e),"iterate",rt),Reflect.get(e,"size",e)}function As(e){e=V(e);const t=V(this);return vn(t).has.call(t,e)||(t.add(e),ke(t,"add",e,e)),this}function Ms(e,t){t=V(t);const n=V(this),{has:s,get:r}=vn(n);let o=s.call(n,e);o||(e=V(e),o=s.call(n,e));const i=r.call(n,e);return n.set(e,t),o?Ut(t,i)&&ke(n,"set",e,t):ke(n,"add",e,t),this}function Os(e){const t=V(this),{has:n,get:s}=vn(t);let r=n.call(t,e);r||(e=V(e),r=n.call(t,e)),s&&s.call(t,e);const o=t.delete(e);return r&&ke(t,"delete",e,void 0),o}function zs(){const e=V(this),t=e.size!==0,n=e.clear();return t&&ke(e,"clear",void 0,void 0),n}function Gt(e,t){return function(s,r){const o=this,i=o.__v_raw,u=V(i),l=t?cs:e?as:Kt;return!e&&be(u,"iterate",rt),i.forEach((a,d)=>s.call(r,l(a),l(d),o))}}function en(e,t,n){return function(...s){const r=this.__v_raw,o=V(r),i=yt(o),u=e==="entries"||e===Symbol.iterator&&i,l=e==="keys"&&i,a=r[e](...s),d=n?cs:t?as:Kt;return!t&&be(o,"iterate",l?Fn:rt),{next(){const{value:h,done:p}=a.next();return p?{value:h,done:p}:{value:u?[d(h[0]),d(h[1])]:d(h),done:p}},[Symbol.iterator](){return this}}}}function De(e){return function(...t){return e==="delete"?!1:this}}function si(){const e={get(o){return Jt(this,o)},get size(){return Zt(this)},has:Xt,add:As,set:Ms,delete:Os,clear:zs,forEach:Gt(!1,!1)},t={get(o){return Jt(this,o,!1,!0)},get size(){return Zt(this)},has:Xt,add:As,set:Ms,delete:Os,clear:zs,forEach:Gt(!1,!0)},n={get(o){return Jt(this,o,!0)},get size(){return Zt(this,!0)},has(o){return Xt.call(this,o,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Gt(!0,!1)},s={get(o){return Jt(this,o,!0,!0)},get size(){return Zt(this,!0)},has(o){return Xt.call(this,o,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Gt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=en(o,!1,!1),n[o]=en(o,!0,!1),t[o]=en(o,!1,!0),s[o]=en(o,!0,!0)}),[e,n,t,s]}const[ri,oi,ii,li]=si();function us(e,t){const n=t?e?li:ii:e?oi:ri;return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(K(n,r)&&r in s?n:s,r,o)}const ci={get:us(!1,!1)},ui={get:us(!1,!0)},fi={get:us(!0,!1)},Cr=new WeakMap,Rr=new WeakMap,Pr=new WeakMap,ai=new WeakMap;function di(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function hi(e){return e.__v_skip||!Object.isExtensible(e)?0:di(Fo(e))}function Qt(e){return Dt(e)?e:fs(e,!1,xr,ci,Cr)}function pi(e){return fs(e,!1,ni,ui,Rr)}function Ar(e){return fs(e,!0,ti,fi,Pr)}function fs(e,t,n,s,r){if(!ie(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=hi(e);if(i===0)return e;const u=new Proxy(e,i===2?s:n);return r.set(e,u),u}function wt(e){return Dt(e)?wt(e.__v_raw):!!(e&&e.__v_isReactive)}function Dt(e){return!!(e&&e.__v_isReadonly)}function Mr(e){return!!(e&&e.__v_isShallow)}function Or(e){return wt(e)||Dt(e)}function V(e){const t=e&&e.__v_raw;return t?V(t):e}function zr(e){return on(e,"__v_skip",!0),e}const Kt=e=>ie(e)?Qt(e):e,as=e=>ie(e)?Ar(e):e;function Ir(e){Qe&&Ie&&(e=V(e),yr(e.dep||(e.dep=os())))}function Tr(e,t){e=V(e),e.dep&&Nn(e.dep)}function le(e){return!!(e&&e.__v_isRef===!0)}function mi(e){return Sr(e,!1)}function gi(e){return Sr(e,!0)}function Sr(e,t){return le(e)?e:new _i(e,t)}class _i{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:V(t),this._value=n?t:Kt(t)}get value(){return Ir(this),this._value}set value(t){t=this.__v_isShallow?t:V(t),Ut(t,this._rawValue)&&(this._rawValue=t,this._value=this.__v_isShallow?t:Kt(t),Tr(this))}}function Je(e){return le(e)?e.value:e}const vi={get:(e,t,n)=>Je(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function $r(e){return wt(e)?e:new Proxy(e,vi)}class bi{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new is(t,()=>{this._dirty||(this._dirty=!0,Tr(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=V(this);return Ir(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}function yi(e,t,n=!1){let s,r;const o=L(e);return o?(s=e,r=Ee):(s=e.get,r=e.set),new bi(s,r,o||!r,n)}Promise.resolve();function Xe(e,t,n,s){let r;try{r=s?e(...s):e()}catch(o){bn(o,t,n)}return r}function xe(e,t,n,s){if(L(e)){const o=Xe(e,t,n,s);return o&&hr(o)&&o.catch(i=>{bn(i,t,n)}),o}const r=[];for(let o=0;o>>1;Vt(ve[s])Le&&ve.splice(t,1)}function Lr(e,t,n,s){H(e)?n.push(...e):(!t||!t.includes(e,e.allowRecurse?s+1:s))&&n.push(e),jr()}function Ci(e){Lr(e,Ft,Nt,mt)}function Ri(e){Lr(e,We,jt,gt)}function hs(e,t=null){if(Nt.length){for(Ln=t,Ft=[...new Set(Nt)],Nt.length=0,mt=0;mtVt(n)-Vt(s)),gt=0;gte.id==null?1/0:e.id;function Br(e){jn=!1,ln=!0,hs(e),ve.sort((n,s)=>Vt(n)-Vt(s));const t=Ee;try{for(Le=0;Lew.trim()):h&&(r=n.map(Lo))}let u,l=s[u=Rn(t)]||s[u=Rn(Et(t))];!l&&o&&(l=s[u=Rn(At(t))]),l&&xe(l,e,6,r);const a=s[u+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[u])return;e.emitted[u]=!0,xe(a,e,6,r)}}function Ur(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},u=!1;if(!L(e)){const l=a=>{const d=Ur(a,t,!0);d&&(u=!0,ae(i,d))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!o&&!u?(s.set(e,null),null):(H(o)?o.forEach(l=>i[l]=null):ae(i,o),s.set(e,i),i)}function ps(e,t){return!e||!mn(t)?!1:(t=t.slice(2).replace(/Once$/,""),K(e,t[0].toLowerCase()+t.slice(1))||K(e,At(t))||K(e,t))}let Te=null,yn=null;function cn(e){const t=Te;return Te=e,yn=e&&e.type.__scopeId||null,t}function Ai(e){yn=e}function Mi(){yn=null}function oe(e,t=Te,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&Ls(-1);const o=cn(t),i=e(...r);return cn(o),s._d&&Ls(1),i};return s._n=!0,s._c=!0,s._d=!0,s}function An(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:o,propsOptions:[i],slots:u,attrs:l,emit:a,render:d,renderCache:h,data:p,setupState:w,ctx:P,inheritAttrs:F}=e;let O,z;const j=cn(e);try{if(n.shapeFlag&4){const Y=r||s;O=Oe(d.call(Y,Y,h,o,w,p,P)),z=l}else{const Y=t;O=Oe(Y.length>1?Y(o,{attrs:l,slots:u,emit:a}):Y(o,null)),z=t.props?l:Oi(l)}}catch(Y){Lt.length=0,bn(Y,e,1),O=q(xt)}let W=O;if(z&&F!==!1){const Y=Object.keys(z),{shapeFlag:de}=W;Y.length&&de&7&&(i&&Y.some(ts)&&(z=zi(z,i)),W=Wt(W,z))}return n.dirs&&(W.dirs=W.dirs?W.dirs.concat(n.dirs):n.dirs),n.transition&&(W.transition=n.transition),O=W,cn(j),O}const Oi=e=>{let t;for(const n in e)(n==="class"||n==="style"||mn(n))&&((t||(t={}))[n]=e[n]);return t},zi=(e,t)=>{const n={};for(const s in e)(!ts(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Ii(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:u,patchFlag:l}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&l>=0){if(l&1024)return!0;if(l&16)return s?Is(s,i,a):!!i;if(l&8){const d=t.dynamicProps;for(let h=0;he.__isSuspense;function $i(e,t){t&&t.pendingBranch?H(e)?t.effects.push(...e):t.effects.push(e):Ri(e)}function nn(e,t){if(ue){let n=ue.provides;const s=ue.parent&&ue.parent.provides;s===n&&(n=ue.provides=Object.create(s)),n[e]=t}}function Ze(e,t,n=!1){const s=ue||Te;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&L(t)?t.call(s.proxy):t}}const Ts={};function sn(e,t,n){return Dr(e,t,n)}function Dr(e,t,{immediate:n,deep:s,flush:r,onTrack:o,onTrigger:i}=te){const u=ue;let l,a=!1,d=!1;if(le(e)?(l=()=>e.value,a=Mr(e)):wt(e)?(l=()=>e,s=!0):H(e)?(d=!0,a=e.some(wt),l=()=>e.map(z=>{if(le(z))return z.value;if(wt(z))return vt(z);if(L(z))return Xe(z,u,2)})):L(e)?t?l=()=>Xe(e,u,2):l=()=>{if(!(u&&u.isUnmounted))return h&&h(),xe(e,u,3,[p])}:l=Ee,t&&s){const z=l;l=()=>vt(z())}let h,p=z=>{h=O.onStop=()=>{Xe(z,u,4)}};if(qt)return p=Ee,t?n&&xe(t,u,3,[l(),d?[]:void 0,p]):l(),Ee;let w=d?[]:Ts;const P=()=>{if(!!O.active)if(t){const z=O.run();(s||a||(d?z.some((j,W)=>Ut(j,w[W])):Ut(z,w)))&&(h&&h(),xe(t,u,3,[z,w===Ts?void 0:w,p]),w=z)}else O.run()};P.allowRecurse=!!t;let F;r==="sync"?F=P:r==="post"?F=()=>he(P,u&&u.suspense):F=()=>{!u||u.isMounted?Ci(P):P()};const O=new is(l,F);return t?n?P():w=O.run():r==="post"?he(O.run.bind(O),u&&u.suspense):O.run(),()=>{O.stop(),u&&u.scope&&ns(u.scope.effects,O)}}function Hi(e,t,n){const s=this.proxy,r=ce(e)?e.includes(".")?Kr(s,e):()=>s[e]:e.bind(s,s);let o;L(t)?o=t:(o=t.handler,n=t);const i=ue;Ct(this);const u=Dr(r,o.bind(s),n);return i?Ct(i):it(),u}function Kr(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r{vt(n,t)});else if(mr(e))for(const n in e)vt(e[n],t);return e}function Vr(e){return L(e)?{setup:e,name:e.name}:e}const kn=e=>!!e.type.__asyncLoader,Wr=e=>e.type.__isKeepAlive;function Fi(e,t){qr(e,"a",t)}function Ni(e,t){qr(e,"da",t)}function qr(e,t,n=ue){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(wn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Wr(r.parent.vnode)&&ji(s,t,n,r),r=r.parent}}function ji(e,t,n,s){const r=wn(t,e,s,!0);Yr(()=>{ns(s[t],r)},n)}function wn(e,t,n=ue,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;Mt(),Ct(n);const u=xe(t,n,e,i);return it(),Ot(),u});return s?r.unshift(o):r.push(o),o}}const Be=e=>(t,n=ue)=>(!qt||e==="sp")&&wn(e,t,n),Li=Be("bm"),ki=Be("m"),Bi=Be("bu"),Ui=Be("u"),Di=Be("bum"),Yr=Be("um"),Ki=Be("sp"),Vi=Be("rtg"),Wi=Be("rtc");function qi(e,t=ue){wn("ec",e,t)}let Bn=!0;function Yi(e){const t=Jr(e),n=e.proxy,s=e.ctx;Bn=!1,t.beforeCreate&&Ss(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:u,provide:l,inject:a,created:d,beforeMount:h,mounted:p,beforeUpdate:w,updated:P,activated:F,deactivated:O,beforeDestroy:z,beforeUnmount:j,destroyed:W,unmounted:Y,render:de,renderTracked:pe,renderTriggered:$e,errorCaptured:ct,serverPrefetch:Re,expose:Ue,inheritAttrs:He,components:Fe,directives:ut,filters:ft}=t;if(a&&Qi(a,s,null,e.appContext.config.unwrapInjectedRef),i)for(const G in i){const Q=i[G];L(Q)&&(s[G]=Q.bind(n))}if(r){const G=r.call(n,n);ie(G)&&(e.data=Qt(G))}if(Bn=!0,o)for(const G in o){const Q=o[G],me=L(Q)?Q.bind(n,n):L(Q.get)?Q.get.bind(n,n):Ee,dt=!L(Q)&&L(Q.set)?Q.set.bind(n):Ee,Ne=ze({get:me,set:dt});Object.defineProperty(s,G,{enumerable:!0,configurable:!0,get:()=>Ne.value,set:Pe=>Ne.value=Pe})}if(u)for(const G in u)Qr(u[G],s,n,G);if(l){const G=L(l)?l.call(n):l;Reflect.ownKeys(G).forEach(Q=>{nn(Q,G[Q])})}d&&Ss(d,e,"c");function re(G,Q){H(Q)?Q.forEach(me=>G(me.bind(n))):Q&&G(Q.bind(n))}if(re(Li,h),re(ki,p),re(Bi,w),re(Ui,P),re(Fi,F),re(Ni,O),re(qi,ct),re(Wi,pe),re(Vi,$e),re(Di,j),re(Yr,Y),re(Ki,Re),H(Ue))if(Ue.length){const G=e.exposed||(e.exposed={});Ue.forEach(Q=>{Object.defineProperty(G,Q,{get:()=>n[Q],set:me=>n[Q]=me})})}else e.exposed||(e.exposed={});de&&e.render===Ee&&(e.render=de),He!=null&&(e.inheritAttrs=He),Fe&&(e.components=Fe),ut&&(e.directives=ut)}function Qi(e,t,n=Ee,s=!1){H(e)&&(e=Un(e));for(const r in e){const o=e[r];let i;ie(o)?"default"in o?i=Ze(o.from||r,o.default,!0):i=Ze(o.from||r):i=Ze(o),le(i)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:u=>i.value=u}):t[r]=i}}function Ss(e,t,n){xe(H(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Qr(e,t,n,s){const r=s.includes(".")?Kr(n,s):()=>n[s];if(ce(e)){const o=t[e];L(o)&&sn(r,o)}else if(L(e))sn(r,e.bind(n));else if(ie(e))if(H(e))e.forEach(o=>Qr(o,t,n,s));else{const o=L(e.handler)?e.handler.bind(n):t[e.handler];L(o)&&sn(r,o,e)}}function Jr(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,u=o.get(t);let l;return u?l=u:!r.length&&!n&&!s?l=t:(l={},r.length&&r.forEach(a=>un(l,a,i,!0)),un(l,t,i)),o.set(t,l),l}function un(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&un(e,o,n,!0),r&&r.forEach(i=>un(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const u=Ji[i]||n&&n[i];e[i]=u?u(e[i],t[i]):t[i]}return e}const Ji={data:$s,props:nt,emits:nt,methods:nt,computed:nt,beforeCreate:fe,created:fe,beforeMount:fe,mounted:fe,beforeUpdate:fe,updated:fe,beforeDestroy:fe,beforeUnmount:fe,destroyed:fe,unmounted:fe,activated:fe,deactivated:fe,errorCaptured:fe,serverPrefetch:fe,components:nt,directives:nt,watch:Zi,provide:$s,inject:Xi};function $s(e,t){return t?e?function(){return ae(L(e)?e.call(this,this):e,L(t)?t.call(this,this):t)}:t:e}function Xi(e,t){return nt(Un(e),Un(t))}function Un(e){if(H(e)){const t={};for(let n=0;n0)&&!(i&16)){if(i&8){const d=e.vnode.dynamicProps;for(let h=0;h{l=!0;const[p,w]=Zr(h,t,!0);ae(i,p),w&&u.push(...w)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!o&&!l)return s.set(e,bt),bt;if(H(o))for(let d=0;d-1,w[1]=F<0||P-1||K(w,"default"))&&u.push(h)}}}const a=[i,u];return s.set(e,a),a}function Hs(e){return e[0]!=="$"}function Fs(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function Ns(e,t){return Fs(e)===Fs(t)}function js(e,t){return H(t)?t.findIndex(n=>Ns(n,e)):L(t)&&Ns(t,e)?0:-1}const Gr=e=>e[0]==="_"||e==="$stable",ms=e=>H(e)?e.map(Oe):[Oe(e)],tl=(e,t,n)=>{const s=oe((...r)=>ms(t(...r)),n);return s._c=!1,s},eo=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Gr(r))continue;const o=e[r];if(L(o))t[r]=tl(r,o,s);else if(o!=null){const i=ms(o);t[r]=()=>i}}},to=(e,t)=>{const n=ms(t);e.slots.default=()=>n},nl=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=V(t),on(t,"_",n)):eo(t,e.slots={})}else e.slots={},t&&to(e,t);on(e.slots,En,1)},sl=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=te;if(s.shapeFlag&32){const u=t._;u?n&&u===1?o=!1:(ae(r,t),!n&&u===1&&delete r._):(o=!t.$stable,eo(t,r)),i=t}else t&&(to(e,t),i={default:1});if(o)for(const u in r)!Gr(u)&&!(u in i)&&delete r[u]};function et(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;iKn(p,t&&(H(t)?t[w]:t),n,s,r));return}if(kn(s)&&!r)return;const o=s.shapeFlag&4?vs(s.component)||s.component.proxy:s.el,i=r?null:o,{i:u,r:l}=e,a=t&&t.r,d=u.refs===te?u.refs={}:u.refs,h=u.setupState;if(a!=null&&a!==l&&(ce(a)?(d[a]=null,K(h,a)&&(h[a]=null)):le(a)&&(a.value=null)),L(l))Xe(l,u,12,[i,d]);else{const p=ce(l),w=le(l);if(p||w){const P=()=>{if(e.f){const F=p?d[l]:l.value;r?H(F)&&ns(F,o):H(F)?F.includes(o)||F.push(o):p?d[l]=[o]:(l.value=[o],e.k&&(d[e.k]=l.value))}else p?(d[l]=i,K(h,l)&&(h[l]=i)):le(l)&&(l.value=i,e.k&&(d[e.k]=i))};i?(P.id=-1,he(P,n)):P()}}}const he=$i;function il(e){return ll(e)}function ll(e,t){const n=ko();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:u,createComment:l,setText:a,setElementText:d,parentNode:h,nextSibling:p,setScopeId:w=Ee,cloneNode:P,insertStaticContent:F}=e,O=(c,f,m,v=null,_=null,E=null,R=!1,y=null,x=!!f.dynamicChildren)=>{if(c===f)return;c&&!Tt(c,f)&&(v=I(c),ye(c,_,E,!0),c=null),f.patchFlag===-2&&(x=!1,f.dynamicChildren=null);const{type:b,ref:T,shapeFlag:A}=f;switch(b){case gs:z(c,f,m,v);break;case xt:j(c,f,m,v);break;case Mn:c==null&&W(f,m,v,R);break;case _e:ut(c,f,m,v,_,E,R,y,x);break;default:A&1?pe(c,f,m,v,_,E,R,y,x):A&6?ft(c,f,m,v,_,E,R,y,x):(A&64||A&128)&&b.process(c,f,m,v,_,E,R,y,x,ee)}T!=null&&_&&Kn(T,c&&c.ref,E,f||c,!f)},z=(c,f,m,v)=>{if(c==null)s(f.el=u(f.children),m,v);else{const _=f.el=c.el;f.children!==c.children&&a(_,f.children)}},j=(c,f,m,v)=>{c==null?s(f.el=l(f.children||""),m,v):f.el=c.el},W=(c,f,m,v)=>{[c.el,c.anchor]=F(c.children,f,m,v,c.el,c.anchor)},Y=({el:c,anchor:f},m,v)=>{let _;for(;c&&c!==f;)_=p(c),s(c,m,v),c=_;s(f,m,v)},de=({el:c,anchor:f})=>{let m;for(;c&&c!==f;)m=p(c),r(c),c=m;r(f)},pe=(c,f,m,v,_,E,R,y,x)=>{R=R||f.type==="svg",c==null?$e(f,m,v,_,E,R,y,x):Ue(c,f,_,E,R,y,x)},$e=(c,f,m,v,_,E,R,y)=>{let x,b;const{type:T,props:A,shapeFlag:S,transition:$,patchFlag:D,dirs:se}=c;if(c.el&&P!==void 0&&D===-1)x=c.el=P(c.el);else{if(x=c.el=i(c.type,E,A&&A.is,A),S&8?d(x,c.children):S&16&&Re(c.children,x,null,v,_,E&&T!=="foreignObject",R,y),se&&et(c,null,v,"created"),A){for(const ne in A)ne!=="value"&&!tn(ne)&&o(x,ne,null,A[ne],E,c.children,v,_,C);"value"in A&&o(x,"value",null,A.value),(b=A.onVnodeBeforeMount)&&Me(b,v,c)}ct(x,c,c.scopeId,R,v)}se&&et(c,null,v,"beforeMount");const X=(!_||_&&!_.pendingBranch)&&$&&!$.persisted;X&&$.beforeEnter(x),s(x,f,m),((b=A&&A.onVnodeMounted)||X||se)&&he(()=>{b&&Me(b,v,c),X&&$.enter(x),se&&et(c,null,v,"mounted")},_)},ct=(c,f,m,v,_)=>{if(m&&w(c,m),v)for(let E=0;E{for(let b=x;b{const y=f.el=c.el;let{patchFlag:x,dynamicChildren:b,dirs:T}=f;x|=c.patchFlag&16;const A=c.props||te,S=f.props||te;let $;m&&tt(m,!1),($=S.onVnodeBeforeUpdate)&&Me($,m,f,c),T&&et(f,c,m,"beforeUpdate"),m&&tt(m,!0);const D=_&&f.type!=="foreignObject";if(b?He(c.dynamicChildren,b,y,m,v,D,E):R||me(c,f,y,null,m,v,D,E,!1),x>0){if(x&16)Fe(y,f,A,S,m,v,_);else if(x&2&&A.class!==S.class&&o(y,"class",null,S.class,_),x&4&&o(y,"style",A.style,S.style,_),x&8){const se=f.dynamicProps;for(let X=0;X{$&&Me($,m,f,c),T&&et(f,c,m,"updated")},v)},He=(c,f,m,v,_,E,R)=>{for(let y=0;y{if(m!==v){for(const y in v){if(tn(y))continue;const x=v[y],b=m[y];x!==b&&y!=="value"&&o(c,y,b,x,R,f.children,_,E,C)}if(m!==te)for(const y in m)!tn(y)&&!(y in v)&&o(c,y,m[y],null,R,f.children,_,E,C);"value"in v&&o(c,"value",m.value,v.value)}},ut=(c,f,m,v,_,E,R,y,x)=>{const b=f.el=c?c.el:u(""),T=f.anchor=c?c.anchor:u("");let{patchFlag:A,dynamicChildren:S,slotScopeIds:$}=f;$&&(y=y?y.concat($):$),c==null?(s(b,m,v),s(T,m,v),Re(f.children,m,T,_,E,R,y,x)):A>0&&A&64&&S&&c.dynamicChildren?(He(c.dynamicChildren,S,m,_,E,R,y),(f.key!=null||_&&f===_.subTree)&&so(c,f,!0)):me(c,f,m,T,_,E,R,y,x)},ft=(c,f,m,v,_,E,R,y,x)=>{f.slotScopeIds=y,c==null?f.shapeFlag&512?_.ctx.activate(f,m,v,R,x):at(f,m,v,_,E,R,x):re(c,f,x)},at=(c,f,m,v,_,E,R)=>{const y=c.component=bl(c,v,_);if(Wr(c)&&(y.ctx.renderer=ee),yl(y),y.asyncDep){if(_&&_.registerDep(y,G),!c.el){const x=y.subTree=q(xt);j(null,x,f,m)}return}G(y,c,f,m,_,E,R)},re=(c,f,m)=>{const v=f.component=c.component;if(Ii(c,f,m))if(v.asyncDep&&!v.asyncResolved){Q(v,f,m);return}else v.next=f,xi(v.update),v.update();else f.component=c.component,f.el=c.el,v.vnode=f},G=(c,f,m,v,_,E,R)=>{const y=()=>{if(c.isMounted){let{next:T,bu:A,u:S,parent:$,vnode:D}=c,se=T,X;tt(c,!1),T?(T.el=D.el,Q(c,T,R)):T=D,A&&Pn(A),(X=T.props&&T.props.onVnodeBeforeUpdate)&&Me(X,$,T,D),tt(c,!0);const ne=An(c),we=c.subTree;c.subTree=ne,O(we,ne,h(we.el),I(we),c,_,E),T.el=ne.el,se===null&&Ti(c,ne.el),S&&he(S,_),(X=T.props&&T.props.onVnodeUpdated)&&he(()=>Me(X,$,T,D),_)}else{let T;const{el:A,props:S}=f,{bm:$,m:D,parent:se}=c,X=kn(f);if(tt(c,!1),$&&Pn($),!X&&(T=S&&S.onVnodeBeforeMount)&&Me(T,se,f),tt(c,!0),A&&N){const ne=()=>{c.subTree=An(c),N(A,c.subTree,c,_,null)};X?f.type.__asyncLoader().then(()=>!c.isUnmounted&&ne()):ne()}else{const ne=c.subTree=An(c);O(null,ne,m,v,c,_,E),f.el=ne.el}if(D&&he(D,_),!X&&(T=S&&S.onVnodeMounted)){const ne=f;he(()=>Me(T,se,ne),_)}f.shapeFlag&256&&c.a&&he(c.a,_),c.isMounted=!0,f=m=v=null}},x=c.effect=new is(y,()=>Nr(c.update),c.scope),b=c.update=x.run.bind(x);b.id=c.uid,tt(c,!0),b()},Q=(c,f,m)=>{f.component=c;const v=c.vnode.props;c.vnode=f,c.next=null,el(c,f.props,v,m),sl(c,f.children,m),Mt(),hs(void 0,c.update),Ot()},me=(c,f,m,v,_,E,R,y,x=!1)=>{const b=c&&c.children,T=c?c.shapeFlag:0,A=f.children,{patchFlag:S,shapeFlag:$}=f;if(S>0){if(S&128){Ne(b,A,m,v,_,E,R,y,x);return}else if(S&256){dt(b,A,m,v,_,E,R,y,x);return}}$&8?(T&16&&C(b,_,E),A!==b&&d(m,A)):T&16?$&16?Ne(b,A,m,v,_,E,R,y,x):C(b,_,E,!0):(T&8&&d(m,""),$&16&&Re(A,m,v,_,E,R,y,x))},dt=(c,f,m,v,_,E,R,y,x)=>{c=c||bt,f=f||bt;const b=c.length,T=f.length,A=Math.min(b,T);let S;for(S=0;ST?C(c,_,E,!0,!1,A):Re(f,m,v,_,E,R,y,x,A)},Ne=(c,f,m,v,_,E,R,y,x)=>{let b=0;const T=f.length;let A=c.length-1,S=T-1;for(;b<=A&&b<=S;){const $=c[b],D=f[b]=x?qe(f[b]):Oe(f[b]);if(Tt($,D))O($,D,m,null,_,E,R,y,x);else break;b++}for(;b<=A&&b<=S;){const $=c[A],D=f[S]=x?qe(f[S]):Oe(f[S]);if(Tt($,D))O($,D,m,null,_,E,R,y,x);else break;A--,S--}if(b>A){if(b<=S){const $=S+1,D=$S)for(;b<=A;)ye(c[b],_,E,!0),b++;else{const $=b,D=b,se=new Map;for(b=D;b<=S;b++){const ge=f[b]=x?qe(f[b]):Oe(f[b]);ge.key!=null&&se.set(ge.key,b)}let X,ne=0;const we=S-D+1;let ht=!1,ws=0;const It=new Array(we);for(b=0;b=we){ye(ge,_,E,!0);continue}let Ae;if(ge.key!=null)Ae=se.get(ge.key);else for(X=D;X<=S;X++)if(It[X-D]===0&&Tt(ge,f[X])){Ae=X;break}Ae===void 0?ye(ge,_,E,!0):(It[Ae-D]=b+1,Ae>=ws?ws=Ae:ht=!0,O(ge,f[Ae],m,null,_,E,R,y,x),ne++)}const Es=ht?cl(It):bt;for(X=Es.length-1,b=we-1;b>=0;b--){const ge=D+b,Ae=f[ge],xs=ge+1{const{el:E,type:R,transition:y,children:x,shapeFlag:b}=c;if(b&6){Pe(c.component.subTree,f,m,v);return}if(b&128){c.suspense.move(f,m,v);return}if(b&64){R.move(c,f,m,ee);return}if(R===_e){s(E,f,m);for(let A=0;Ay.enter(E),_);else{const{leave:A,delayLeave:S,afterLeave:$}=y,D=()=>s(E,f,m),se=()=>{A(E,()=>{D(),$&&$()})};S?S(E,D,se):se()}else s(E,f,m)},ye=(c,f,m,v=!1,_=!1)=>{const{type:E,props:R,ref:y,children:x,dynamicChildren:b,shapeFlag:T,patchFlag:A,dirs:S}=c;if(y!=null&&Kn(y,null,m,c,!0),T&256){f.ctx.deactivate(c);return}const $=T&1&&S,D=!kn(c);let se;if(D&&(se=R&&R.onVnodeBeforeUnmount)&&Me(se,f,c),T&6)M(c.component,m,v);else{if(T&128){c.suspense.unmount(m,v);return}$&&et(c,null,f,"beforeUnmount"),T&64?c.type.remove(c,f,m,_,ee,v):b&&(E!==_e||A>0&&A&64)?C(b,f,m,!1,!0):(E===_e&&A&384||!_&&T&16)&&C(x,f,m),v&&Cn(c)}(D&&(se=R&&R.onVnodeUnmounted)||$)&&he(()=>{se&&Me(se,f,c),$&&et(c,null,f,"unmounted")},m)},Cn=c=>{const{type:f,el:m,anchor:v,transition:_}=c;if(f===_e){g(m,v);return}if(f===Mn){de(c);return}const E=()=>{r(m),_&&!_.persisted&&_.afterLeave&&_.afterLeave()};if(c.shapeFlag&1&&_&&!_.persisted){const{leave:R,delayLeave:y}=_,x=()=>R(m,E);y?y(c.el,E,x):x()}else E()},g=(c,f)=>{let m;for(;c!==f;)m=p(c),r(c),c=m;r(f)},M=(c,f,m)=>{const{bum:v,scope:_,update:E,subTree:R,um:y}=c;v&&Pn(v),_.stop(),E&&(E.active=!1,ye(R,c,f,m)),y&&he(y,f),he(()=>{c.isUnmounted=!0},f),f&&f.pendingBranch&&!f.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===f.pendingId&&(f.deps--,f.deps===0&&f.resolve())},C=(c,f,m,v=!1,_=!1,E=0)=>{for(let R=E;Rc.shapeFlag&6?I(c.component.subTree):c.shapeFlag&128?c.suspense.next():p(c.anchor||c.el),J=(c,f,m)=>{c==null?f._vnode&&ye(f._vnode,null,null,!0):O(f._vnode||null,c,f,null,null,null,m),kr(),f._vnode=c},ee={p:O,um:ye,m:Pe,r:Cn,mt:at,mc:Re,pc:me,pbc:He,n:I,o:e};let k,N;return t&&([k,N]=t(ee)),{render:J,hydrate:k,createApp:ol(J,k)}}function tt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function so(e,t,n=!1){const s=e.children,r=t.children;if(H(s)&&H(r))for(let o=0;o>1,e[n[u]]0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}const ul=e=>e.__isTeleport,fl=Symbol(),_e=Symbol(void 0),gs=Symbol(void 0),xt=Symbol(void 0),Mn=Symbol(void 0),Lt=[];let ot=null;function Ce(e=!1){Lt.push(ot=e?null:[])}function al(){Lt.pop(),ot=Lt[Lt.length-1]||null}let fn=1;function Ls(e){fn+=e}function ro(e){return e.dynamicChildren=fn>0?ot||bt:null,al(),fn>0&&ot&&ot.push(e),e}function Se(e,t,n,s,r,o){return ro(B(e,t,n,s,r,o,!0))}function dl(e,t,n,s,r){return ro(q(e,t,n,s,r,!0))}function an(e){return e?e.__v_isVNode===!0:!1}function Tt(e,t){return e.type===t.type&&e.key===t.key}const En="__vInternal",oo=({key:e})=>e!=null?e:null,rn=({ref:e,ref_key:t,ref_for:n})=>e!=null?ce(e)||le(e)||L(e)?{i:Te,r:e,k:t,f:!!n}:e:null;function B(e,t=null,n=null,s=0,r=null,o=e===_e?0:1,i=!1,u=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&oo(t),ref:t&&rn(t),scopeId:yn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null};return u?(_s(l,n),o&128&&e.normalize(l)):n&&(l.shapeFlag|=ce(n)?8:16),fn>0&&!i&&ot&&(l.patchFlag>0||o&6)&&l.patchFlag!==32&&ot.push(l),l}const q=hl;function hl(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===fl)&&(e=xt),an(e)){const u=Wt(e,t,!0);return n&&_s(u,n),u}if(Cl(e)&&(e=e.__vccOpts),t){t=pl(t);let{class:u,style:l}=t;u&&!ce(u)&&(t.class=es(u)),ie(l)&&(Or(l)&&!H(l)&&(l=ae({},l)),t.style=Gn(l))}const i=ce(e)?1:Si(e)?128:ul(e)?64:ie(e)?4:L(e)?2:0;return B(e,t,n,s,r,i,o,!0)}function pl(e){return e?Or(e)||En in e?ae({},e):e:null}function Wt(e,t,n=!1){const{props:s,ref:r,patchFlag:o,children:i}=e,u=t?ml(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&oo(u),ref:t&&t.ref?n&&r?H(r)?r.concat(rn(t)):[r,rn(t)]:rn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==_e?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Wt(e.ssContent),ssFallback:e.ssFallback&&Wt(e.ssFallback),el:e.el,anchor:e.anchor}}function U(e=" ",t=0){return q(gs,null,e,t)}function Oe(e){return e==null||typeof e=="boolean"?q(xt):H(e)?q(_e,null,e.slice()):typeof e=="object"?qe(e):q(gs,null,String(e))}function qe(e){return e.el===null||e.memo?e:Wt(e)}function _s(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(H(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),_s(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(En in t)?t._ctx=Te:r===3&&Te&&(Te.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else L(t)?(t={default:t,_ctx:Te},n=32):(t=String(t),s&64?(n=16,t=[U(t)]):n=8);e.children=t,e.shapeFlag|=n}function ml(...e){const t={};for(let n=0;nan(t)?!(t.type===xt||t.type===_e&&!io(t.children)):!0)?e:null}const Vn=e=>e?lo(e)?vs(e)||e.proxy:Vn(e.parent):null,dn=ae(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Vn(e.parent),$root:e=>Vn(e.root),$emit:e=>e.emit,$options:e=>Jr(e),$forceUpdate:e=>()=>Nr(e.update),$nextTick:e=>Fr.bind(e.proxy),$watch:e=>Hi.bind(e)}),gl={get({_:e},t){const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:u,appContext:l}=e;let a;if(t[0]!=="$"){const w=i[t];if(w!==void 0)switch(w){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(s!==te&&K(s,t))return i[t]=1,s[t];if(r!==te&&K(r,t))return i[t]=2,r[t];if((a=e.propsOptions[0])&&K(a,t))return i[t]=3,o[t];if(n!==te&&K(n,t))return i[t]=4,n[t];Bn&&(i[t]=0)}}const d=dn[t];let h,p;if(d)return t==="$attrs"&&be(e,"get",t),d(e);if((h=u.__cssModules)&&(h=h[t]))return h;if(n!==te&&K(n,t))return i[t]=4,n[t];if(p=l.config.globalProperties,K(p,t))return p[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return r!==te&&K(r,t)?(r[t]=n,!0):s!==te&&K(s,t)?(s[t]=n,!0):K(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let u;return!!n[i]||e!==te&&K(e,i)||t!==te&&K(t,i)||(u=o[0])&&K(u,i)||K(s,i)||K(dn,i)||K(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?this.set(e,t,n.get(),null):n.value!=null&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},_l=no();let vl=0;function bl(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||_l,o={uid:vl++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Bo(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Zr(s,r),emitsOptions:Ur(s,r),emit:null,emitted:null,propsDefaults:te,inheritAttrs:s.inheritAttrs,ctx:te,data:te,props:te,attrs:te,slots:te,refs:te,setupState:te,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=Pi.bind(null,o),e.ce&&e.ce(o),o}let ue=null;const Ct=e=>{ue=e,e.scope.on()},it=()=>{ue&&ue.scope.off(),ue=null};function lo(e){return e.vnode.shapeFlag&4}let qt=!1;function yl(e,t=!1){qt=t;const{props:n,children:s}=e.vnode,r=lo(e);Gi(e,n,r,t),nl(e,s);const o=r?wl(e,t):void 0;return qt=!1,o}function wl(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=zr(new Proxy(e.ctx,gl));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?xl(e):null;Ct(e),Mt();const o=Xe(s,e,0,[e.props,r]);if(Ot(),it(),hr(o)){if(o.then(it,it),t)return o.then(i=>{ks(e,i,t)}).catch(i=>{bn(i,e,0)});e.asyncDep=o}else ks(e,o,t)}else co(e,t)}function ks(e,t,n){L(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ie(t)&&(e.setupState=$r(t)),co(e,n)}let Bs;function co(e,t,n){const s=e.type;if(!e.render){if(!t&&Bs&&!s.render){const r=s.template;if(r){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:u,compilerOptions:l}=s,a=ae(ae({isCustomElement:o,delimiters:u},i),l);s.render=Bs(r,a)}}e.render=s.render||Ee}Ct(e),Mt(),Yi(e),Ot(),it()}function El(e){return new Proxy(e.attrs,{get(t,n){return be(e,"get","$attrs"),t[n]}})}function xl(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=El(e))},slots:e.slots,emit:e.emit,expose:t}}function vs(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy($r(zr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in dn)return dn[n](e)}}))}function Cl(e){return L(e)&&"__vccOpts"in e}const ze=(e,t)=>yi(e,t,qt);function uo(e,t,n){const s=arguments.length;return s===2?ie(t)&&!H(t)?an(t)?q(e,null,[t]):q(e,t):q(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&an(n)&&(n=[n]),q(e,t,n))}const Rl="3.2.31",Pl="http://www.w3.org/2000/svg",st=typeof document!="undefined"?document:null,Us=st&&st.createElement("template"),Al={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?st.createElementNS(Pl,e):st.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>st.createTextNode(e),createComment:e=>st.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>st.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{Us.innerHTML=s?`${e}`:e;const u=Us.content;if(s){const l=u.firstChild;for(;l.firstChild;)u.appendChild(l.firstChild);u.removeChild(l)}t.insertBefore(u,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function Ml(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function Ol(e,t,n){const s=e.style,r=ce(n);if(n&&!r){for(const o in n)Wn(s,o,n[o]);if(t&&!ce(t))for(const o in t)n[o]==null&&Wn(s,o,"")}else{const o=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=o)}}const Ds=/\s*!important$/;function Wn(e,t,n){if(H(n))n.forEach(s=>Wn(e,t,s));else if(t.startsWith("--"))e.setProperty(t,n);else{const s=zl(e,t);Ds.test(n)?e.setProperty(At(s),n.replace(Ds,""),"important"):e[s]=n}}const Ks=["Webkit","Moz","ms"],zn={};function zl(e,t){const n=zn[t];if(n)return n;let s=Et(t);if(s!=="filter"&&s in e)return zn[t]=s;s=gr(s);for(let r=0;rdocument.createEvent("Event").timeStamp&&(hn=()=>performance.now());const e=navigator.userAgent.match(/firefox\/(\d+)/i);fo=!!(e&&Number(e[1])<=53)}let qn=0;const Sl=Promise.resolve(),$l=()=>{qn=0},Hl=()=>qn||(Sl.then($l),qn=hn());function Fl(e,t,n,s){e.addEventListener(t,n,s)}function Nl(e,t,n,s){e.removeEventListener(t,n,s)}function jl(e,t,n,s,r=null){const o=e._vei||(e._vei={}),i=o[t];if(s&&i)i.value=s;else{const[u,l]=Ll(t);if(s){const a=o[t]=kl(s,r);Fl(e,u,a,l)}else i&&(Nl(e,u,i,l),o[t]=void 0)}}const Ws=/(?:Once|Passive|Capture)$/;function Ll(e){let t;if(Ws.test(e)){t={};let n;for(;n=e.match(Ws);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[At(e.slice(2)),t]}function kl(e,t){const n=s=>{const r=s.timeStamp||hn();(fo||r>=n.attached-1)&&xe(Bl(s,n.value),t,5,[s])};return n.value=e,n.attached=Hl(),n}function Bl(e,t){if(H(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const qs=/^on[a-z]/,Ul=(e,t,n,s,r=!1,o,i,u,l)=>{t==="class"?Ml(e,s,r):t==="style"?Ol(e,n,s):mn(t)?ts(t)||jl(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Dl(e,t,s,r))?Tl(e,t,s,o,i,u,l):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Il(e,t,s,r))};function Dl(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&qs.test(t)&&L(n)):t==="spellcheck"||t==="draggable"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||qs.test(t)&&ce(n)?!1:t in e}const Kl=ae({patchProp:Ul},Al);let Ys;function Vl(){return Ys||(Ys=il(Kl))}const Wl=(...e)=>{const t=Vl().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=ql(s);if(!r)return;const o=t._component;!L(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function ql(e){return ce(e)?document.querySelector(e):e}var Yl="/static/logo.da9b9095.svg";/*! + * vue-router v4.0.14 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */const ao=typeof Symbol=="function"&&typeof Symbol.toStringTag=="symbol",zt=e=>ao?Symbol(e):"_vr_"+e,Ql=zt("rvlm"),Qs=zt("rvd"),bs=zt("r"),ho=zt("rl"),Yn=zt("rvl"),_t=typeof window!="undefined";function Jl(e){return e.__esModule||ao&&e[Symbol.toStringTag]==="Module"}const Z=Object.assign;function In(e,t){const n={};for(const s in t){const r=t[s];n[s]=Array.isArray(r)?r.map(e):e(r)}return n}const kt=()=>{},Xl=/\/$/,Zl=e=>e.replace(Xl,"");function Tn(e,t,n="/"){let s,r={},o="",i="";const u=t.indexOf("?"),l=t.indexOf("#",u>-1?u:0);return u>-1&&(s=t.slice(0,u),o=t.slice(u+1,l>-1?l:t.length),r=e(o)),l>-1&&(s=s||t.slice(0,l),i=t.slice(l,t.length)),s=nc(s!=null?s:t,n),{fullPath:s+(o&&"?")+o+i,path:s,query:r,hash:i}}function Gl(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Js(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function ec(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Rt(t.matched[s],n.matched[r])&&po(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Rt(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function po(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!tc(e[n],t[n]))return!1;return!0}function tc(e,t){return Array.isArray(e)?Xs(e,t):Array.isArray(t)?Xs(t,e):e===t}function Xs(e,t){return Array.isArray(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function nc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/");let r=n.length-1,o,i;for(o=0;o({left:window.pageXOffset,top:window.pageYOffset});function lc(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=ic(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Zs(e,t){return(history.state?history.state.position-t:-1)+e}const Qn=new Map;function cc(e,t){Qn.set(e,t)}function uc(e){const t=Qn.get(e);return Qn.delete(e),t}let fc=()=>location.protocol+"//"+location.host;function mo(e,t){const{pathname:n,search:s,hash:r}=t,o=e.indexOf("#");if(o>-1){let u=r.includes(e.slice(o))?e.slice(o).length:1,l=r.slice(u);return l[0]!=="/"&&(l="/"+l),Js(l,"")}return Js(n,e)+s+r}function ac(e,t,n,s){let r=[],o=[],i=null;const u=({state:p})=>{const w=mo(e,location),P=n.value,F=t.value;let O=0;if(p){if(n.value=w,t.value=p,i&&i===P){i=null;return}O=F?p.position-F.position:0}else s(w);r.forEach(z=>{z(n.value,P,{delta:O,type:Yt.pop,direction:O?O>0?Bt.forward:Bt.back:Bt.unknown})})};function l(){i=n.value}function a(p){r.push(p);const w=()=>{const P=r.indexOf(p);P>-1&&r.splice(P,1)};return o.push(w),w}function d(){const{history:p}=window;!p.state||p.replaceState(Z({},p.state,{scroll:xn()}),"")}function h(){for(const p of o)p();o=[],window.removeEventListener("popstate",u),window.removeEventListener("beforeunload",d)}return window.addEventListener("popstate",u),window.addEventListener("beforeunload",d),{pauseListeners:l,listen:a,destroy:h}}function Gs(e,t,n,s=!1,r=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:r?xn():null}}function dc(e){const{history:t,location:n}=window,s={value:mo(e,n)},r={value:t.state};r.value||o(s.value,{back:null,current:s.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(l,a,d){const h=e.indexOf("#"),p=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+l:fc()+e+l;try{t[d?"replaceState":"pushState"](a,"",p),r.value=a}catch(w){console.error(w),n[d?"replace":"assign"](p)}}function i(l,a){const d=Z({},t.state,Gs(r.value.back,l,r.value.forward,!0),a,{position:r.value.position});o(l,d,!0),s.value=l}function u(l,a){const d=Z({},r.value,t.state,{forward:l,scroll:xn()});o(d.current,d,!0);const h=Z({},Gs(s.value,l,null),{position:d.position+1},a);o(l,h,!1),s.value=l}return{location:s,state:r,push:u,replace:i}}function hc(e){e=sc(e);const t=dc(e),n=ac(e,t.state,t.location,t.replace);function s(o,i=!0){i||n.pauseListeners(),history.go(o)}const r=Z({location:"",base:e,go:s,createHref:oc.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function pc(e){return typeof e=="string"||e&&typeof e=="object"}function go(e){return typeof e=="string"||typeof e=="symbol"}const Ke={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},_o=zt("nf");var er;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(er||(er={}));function Pt(e,t){return Z(new Error,{type:e,[_o]:!0},t)}function Ve(e,t){return e instanceof Error&&_o in e&&(t==null||!!(e.type&t))}const tr="[^/]+?",mc={sensitive:!1,strict:!1,start:!0,end:!0},gc=/[.+*?^${}()[\]/\\]/g;function _c(e,t){const n=Z({},mc,t),s=[];let r=n.start?"^":"";const o=[];for(const a of e){const d=a.length?[]:[90];n.strict&&!a.length&&(r+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function bc(e,t){let n=0;const s=e.score,r=t.score;for(;n1&&(l==="*"||l==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:a,regexp:d,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),a="")}function p(){a+=l}for(;u{i(j)}:kt}function i(d){if(go(d)){const h=s.get(d);h&&(s.delete(d),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(d);h>-1&&(n.splice(h,1),d.record.name&&s.delete(d.record.name),d.children.forEach(i),d.alias.forEach(i))}}function u(){return n}function l(d){let h=0;for(;h=0&&(d.record.path!==n[h].record.path||!vo(d,n[h]));)h++;n.splice(h,0,d),d.record.name&&!nr(d)&&s.set(d.record.name,d)}function a(d,h){let p,w={},P,F;if("name"in d&&d.name){if(p=s.get(d.name),!p)throw Pt(1,{location:d});F=p.record.name,w=Z(Rc(h.params,p.keys.filter(j=>!j.optional).map(j=>j.name)),d.params),P=p.stringify(w)}else if("path"in d)P=d.path,p=n.find(j=>j.re.test(P)),p&&(w=p.parse(P),F=p.record.name);else{if(p=h.name?s.get(h.name):n.find(j=>j.re.test(h.path)),!p)throw Pt(1,{location:d,currentLocation:h});F=p.record.name,w=Z({},h.params,d.params),P=p.stringify(w)}const O=[];let z=p;for(;z;)O.unshift(z.record),z=z.parent;return{name:F,path:P,params:w,matched:O,meta:Mc(O)}}return e.forEach(d=>o(d)),{addRoute:o,resolve:a,removeRoute:i,getRoutes:u,getRecordMatcher:r}}function Rc(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function Pc(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:Ac(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||{}:{default:e.component}}}function Ac(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="boolean"?n:n[s];return t}function nr(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Mc(e){return e.reduce((t,n)=>Z(t,n.meta),{})}function sr(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function vo(e,t){return t.children.some(n=>n===e||vo(e,n))}const bo=/#/g,Oc=/&/g,zc=/\//g,Ic=/=/g,Tc=/\?/g,yo=/\+/g,Sc=/%5B/g,$c=/%5D/g,wo=/%5E/g,Hc=/%60/g,Eo=/%7B/g,Fc=/%7C/g,xo=/%7D/g,Nc=/%20/g;function ys(e){return encodeURI(""+e).replace(Fc,"|").replace(Sc,"[").replace($c,"]")}function jc(e){return ys(e).replace(Eo,"{").replace(xo,"}").replace(wo,"^")}function Jn(e){return ys(e).replace(yo,"%2B").replace(Nc,"+").replace(bo,"%23").replace(Oc,"%26").replace(Hc,"`").replace(Eo,"{").replace(xo,"}").replace(wo,"^")}function Lc(e){return Jn(e).replace(Ic,"%3D")}function kc(e){return ys(e).replace(bo,"%23").replace(Tc,"%3F")}function Bc(e){return e==null?"":kc(e).replace(zc,"%2F")}function pn(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function Uc(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;ro&&Jn(o)):[s&&Jn(s)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function Dc(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Array.isArray(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}function St(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function Ye(e,t,n,s,r){const o=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((i,u)=>{const l=h=>{h===!1?u(Pt(4,{from:n,to:t})):h instanceof Error?u(h):pc(h)?u(Pt(2,{from:t,to:h})):(o&&s.enterCallbacks[r]===o&&typeof h=="function"&&o.push(h),i())},a=e.call(s&&s.instances[r],t,n,l);let d=Promise.resolve(a);e.length<3&&(d=d.then(l)),d.catch(h=>u(h))})}function Sn(e,t,n,s){const r=[];for(const o of e)for(const i in o.components){let u=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(Kc(u)){const a=(u.__vccOpts||u)[t];a&&r.push(Ye(a,n,s,o,i))}else{let l=u();r.push(()=>l.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${o.path}"`));const d=Jl(a)?a.default:a;o.components[i]=d;const p=(d.__vccOpts||d)[t];return p&&Ye(p,n,s,o,i)()}))}}return r}function Kc(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function or(e){const t=Ze(bs),n=Ze(ho),s=ze(()=>t.resolve(Je(e.to))),r=ze(()=>{const{matched:l}=s.value,{length:a}=l,d=l[a-1],h=n.matched;if(!d||!h.length)return-1;const p=h.findIndex(Rt.bind(null,d));if(p>-1)return p;const w=ir(l[a-2]);return a>1&&ir(d)===w&&h[h.length-1].path!==w?h.findIndex(Rt.bind(null,l[a-2])):p}),o=ze(()=>r.value>-1&&qc(n.params,s.value.params)),i=ze(()=>r.value>-1&&r.value===n.matched.length-1&&po(n.params,s.value.params));function u(l={}){return Wc(l)?t[Je(e.replace)?"replace":"push"](Je(e.to)).catch(kt):Promise.resolve()}return{route:s,href:ze(()=>s.value.href),isActive:o,isExactActive:i,navigate:u}}const Vc=Vr({name:"RouterLink",props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:or,setup(e,{slots:t}){const n=Qt(or(e)),{options:s}=Ze(bs),r=ze(()=>({[lr(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[lr(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:uo("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},o)}}}),Xn=Vc;function Wc(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function qc(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Array.isArray(r)||r.length!==s.length||s.some((o,i)=>o!==r[i]))return!1}return!0}function ir(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const lr=(e,t,n)=>e!=null?e:t!=null?t:n,Yc=Vr({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},setup(e,{attrs:t,slots:n}){const s=Ze(Yn),r=ze(()=>e.route||s.value),o=Ze(Qs,0),i=ze(()=>r.value.matched[o]);nn(Qs,o+1),nn(Ql,i),nn(Yn,r);const u=mi();return sn(()=>[u.value,i.value,e.name],([l,a,d],[h,p,w])=>{a&&(a.instances[d]=l,p&&p!==a&&l&&l===h&&(a.leaveGuards.size||(a.leaveGuards=p.leaveGuards),a.updateGuards.size||(a.updateGuards=p.updateGuards))),l&&a&&(!p||!Rt(a,p)||!h)&&(a.enterCallbacks[d]||[]).forEach(P=>P(l))},{flush:"post"}),()=>{const l=r.value,a=i.value,d=a&&a.components[e.name],h=e.name;if(!d)return cr(n.default,{Component:d,route:l});const p=a.props[e.name],w=p?p===!0?l.params:typeof p=="function"?p(l):p:null,F=uo(d,Z({},w,t,{onVnodeUnmounted:O=>{O.component.isUnmounted&&(a.instances[h]=null)},ref:u}));return cr(n.default,{Component:F,route:l})||F}}});function cr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Co=Yc;function Qc(e){const t=Cc(e.routes,e),n=e.parseQuery||Uc,s=e.stringifyQuery||rr,r=e.history,o=St(),i=St(),u=St(),l=gi(Ke);let a=Ke;_t&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const d=In.bind(null,g=>""+g),h=In.bind(null,Bc),p=In.bind(null,pn);function w(g,M){let C,I;return go(g)?(C=t.getRecordMatcher(g),I=M):I=g,t.addRoute(I,C)}function P(g){const M=t.getRecordMatcher(g);M&&t.removeRoute(M)}function F(){return t.getRoutes().map(g=>g.record)}function O(g){return!!t.getRecordMatcher(g)}function z(g,M){if(M=Z({},M||l.value),typeof g=="string"){const N=Tn(n,g,M.path),c=t.resolve({path:N.path},M),f=r.createHref(N.fullPath);return Z(N,c,{params:p(c.params),hash:pn(N.hash),redirectedFrom:void 0,href:f})}let C;if("path"in g)C=Z({},g,{path:Tn(n,g.path,M.path).path});else{const N=Z({},g.params);for(const c in N)N[c]==null&&delete N[c];C=Z({},g,{params:h(g.params)}),M.params=h(M.params)}const I=t.resolve(C,M),J=g.hash||"";I.params=d(p(I.params));const ee=Gl(s,Z({},g,{hash:jc(J),path:I.path})),k=r.createHref(ee);return Z({fullPath:ee,hash:J,query:s===rr?Dc(g.query):g.query||{}},I,{redirectedFrom:void 0,href:k})}function j(g){return typeof g=="string"?Tn(n,g,l.value.path):Z({},g)}function W(g,M){if(a!==g)return Pt(8,{from:M,to:g})}function Y(g){return $e(g)}function de(g){return Y(Z(j(g),{replace:!0}))}function pe(g){const M=g.matched[g.matched.length-1];if(M&&M.redirect){const{redirect:C}=M;let I=typeof C=="function"?C(g):C;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=j(I):{path:I},I.params={}),Z({query:g.query,hash:g.hash,params:g.params},I)}}function $e(g,M){const C=a=z(g),I=l.value,J=g.state,ee=g.force,k=g.replace===!0,N=pe(C);if(N)return $e(Z(j(N),{state:J,force:ee,replace:k}),M||C);const c=C;c.redirectedFrom=M;let f;return!ee&&ec(s,I,C)&&(f=Pt(16,{to:c,from:I}),dt(I,I,!0,!1)),(f?Promise.resolve(f):Re(c,I)).catch(m=>Ve(m)?Ve(m,2)?m:me(m):G(m,c,I)).then(m=>{if(m){if(Ve(m,2))return $e(Z(j(m.to),{state:J,force:ee,replace:k}),M||c)}else m=He(c,I,!0,k,J);return Ue(c,I,m),m})}function ct(g,M){const C=W(g,M);return C?Promise.reject(C):Promise.resolve()}function Re(g,M){let C;const[I,J,ee]=Jc(g,M);C=Sn(I.reverse(),"beforeRouteLeave",g,M);for(const N of I)N.leaveGuards.forEach(c=>{C.push(Ye(c,g,M))});const k=ct.bind(null,g,M);return C.push(k),pt(C).then(()=>{C=[];for(const N of o.list())C.push(Ye(N,g,M));return C.push(k),pt(C)}).then(()=>{C=Sn(J,"beforeRouteUpdate",g,M);for(const N of J)N.updateGuards.forEach(c=>{C.push(Ye(c,g,M))});return C.push(k),pt(C)}).then(()=>{C=[];for(const N of g.matched)if(N.beforeEnter&&!M.matched.includes(N))if(Array.isArray(N.beforeEnter))for(const c of N.beforeEnter)C.push(Ye(c,g,M));else C.push(Ye(N.beforeEnter,g,M));return C.push(k),pt(C)}).then(()=>(g.matched.forEach(N=>N.enterCallbacks={}),C=Sn(ee,"beforeRouteEnter",g,M),C.push(k),pt(C))).then(()=>{C=[];for(const N of i.list())C.push(Ye(N,g,M));return C.push(k),pt(C)}).catch(N=>Ve(N,8)?N:Promise.reject(N))}function Ue(g,M,C){for(const I of u.list())I(g,M,C)}function He(g,M,C,I,J){const ee=W(g,M);if(ee)return ee;const k=M===Ke,N=_t?history.state:{};C&&(I||k?r.replace(g.fullPath,Z({scroll:k&&N&&N.scroll},J)):r.push(g.fullPath,J)),l.value=g,dt(g,M,C,k),me()}let Fe;function ut(){Fe=r.listen((g,M,C)=>{const I=z(g),J=pe(I);if(J){$e(Z(J,{replace:!0}),I).catch(kt);return}a=I;const ee=l.value;_t&&cc(Zs(ee.fullPath,C.delta),xn()),Re(I,ee).catch(k=>Ve(k,12)?k:Ve(k,2)?($e(k.to,I).then(N=>{Ve(N,20)&&!C.delta&&C.type===Yt.pop&&r.go(-1,!1)}).catch(kt),Promise.reject()):(C.delta&&r.go(-C.delta,!1),G(k,I,ee))).then(k=>{k=k||He(I,ee,!1),k&&(C.delta?r.go(-C.delta,!1):C.type===Yt.pop&&Ve(k,20)&&r.go(-1,!1)),Ue(I,ee,k)}).catch(kt)})}let ft=St(),at=St(),re;function G(g,M,C){me(g);const I=at.list();return I.length?I.forEach(J=>J(g,M,C)):console.error(g),Promise.reject(g)}function Q(){return re&&l.value!==Ke?Promise.resolve():new Promise((g,M)=>{ft.add([g,M])})}function me(g){return re||(re=!g,ut(),ft.list().forEach(([M,C])=>g?C(g):M()),ft.reset()),g}function dt(g,M,C,I){const{scrollBehavior:J}=e;if(!_t||!J)return Promise.resolve();const ee=!C&&uc(Zs(g.fullPath,0))||(I||!C)&&history.state&&history.state.scroll||null;return Fr().then(()=>J(g,M,ee)).then(k=>k&&lc(k)).catch(k=>G(k,g,M))}const Ne=g=>r.go(g);let Pe;const ye=new Set;return{currentRoute:l,addRoute:w,removeRoute:P,hasRoute:O,getRoutes:F,resolve:z,options:e,push:Y,replace:de,go:Ne,back:()=>Ne(-1),forward:()=>Ne(1),beforeEach:o.add,beforeResolve:i.add,afterEach:u.add,onError:at.add,isReady:Q,install(g){const M=this;g.component("RouterLink",Xn),g.component("RouterView",Co),g.config.globalProperties.$router=M,Object.defineProperty(g.config.globalProperties,"$route",{enumerable:!0,get:()=>Je(l)}),_t&&!Pe&&l.value===Ke&&(Pe=!0,Y(r.location).catch(J=>{}));const C={};for(const J in Ke)C[J]=ze(()=>l.value[J]);g.provide(bs,M),g.provide(ho,Qt(C)),g.provide(Yn,l);const I=g.unmount;ye.add(g),g.unmount=function(){ye.delete(g),ye.size<1&&(a=Ke,Fe&&Fe(),l.value=Ke,Pe=!1,re=!1),I()}}}}function pt(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function Jc(e,t){const n=[],s=[],r=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;iRt(a,u))?s.push(u):n.push(u));const l=e.matched[i];l&&(t.matched.find(a=>Rt(a,l))||r.push(l))}return[n,s,r]}var lt=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n};const Xc=e=>(Ai("data-v-9949253a"),e=e(),Mi(),e),Zc={class:"greetings"},Gc={class:"green"},eu=Xc(()=>B("h3",null,[U(" You\u2019ve successfully created a project with "),B("a",{target:"_blank",href:"https://vitejs.dev/"},"Vite"),U(" + "),B("a",{target:"_blank",href:"https://vuejs.org/"},"Vue 3"),U(". ")],-1)),tu={props:{msg:{type:String,required:!0}},setup(e){return(t,n)=>(Ce(),Se("div",Zc,[B("h1",Gc,To(e.msg),1),eu]))}};var nu=lt(tu,[["__scopeId","data-v-9949253a"]]);const su=B("img",{alt:"Vue logo",class:"logo",src:Yl,width:"125",height:"125"},null,-1),ru={class:"wrapper"},ou=U("Home"),iu=U("About"),lu={setup(e){return(t,n)=>(Ce(),Se(_e,null,[B("header",null,[su,B("div",ru,[q(nu,{msg:"You did it!"}),B("nav",null,[q(Je(Xn),{to:"/"},{default:oe(()=>[ou]),_:1}),q(Je(Xn),{to:"/about"},{default:oe(()=>[iu]),_:1})])])]),q(Je(Co))],64))}},cu="modulepreload",ur={},uu="/",fu=function(t,n){return!n||n.length===0?t():Promise.all(n.map(s=>{if(s=`${uu}${s}`,s in ur)return;ur[s]=!0;const r=s.endsWith(".css"),o=r?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${s}"]${o}`))return;const i=document.createElement("link");if(i.rel=r?"stylesheet":cu,r||(i.as="script",i.crossOrigin=""),i.href=s,document.head.appendChild(i),r)return new Promise((u,l)=>{i.addEventListener("load",u),i.addEventListener("error",()=>l(new Error(`Unable to preload CSS for ${s}`)))})})).then(()=>t())};const au={},du={class:"item"},hu={class:"details"};function pu(e,t){return Ce(),Se("div",du,[B("i",null,[On(e.$slots,"icon",{},void 0,!0)]),B("div",hu,[B("h3",null,[On(e.$slots,"heading",{},void 0,!0)]),On(e.$slots,"default",{},void 0,!0)])])}var $t=lt(au,[["render",pu],["__scopeId","data-v-977bb0b6"]]);const mu={},gu={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"17",fill:"currentColor"},_u=B("path",{d:"M11 2.253a1 1 0 1 0-2 0h2zm-2 13a1 1 0 1 0 2 0H9zm.447-12.167a1 1 0 1 0 1.107-1.666L9.447 3.086zM1 2.253L.447 1.42A1 1 0 0 0 0 2.253h1zm0 13H0a1 1 0 0 0 1.553.833L1 15.253zm8.447.833a1 1 0 1 0 1.107-1.666l-1.107 1.666zm0-14.666a1 1 0 1 0 1.107 1.666L9.447 1.42zM19 2.253h1a1 1 0 0 0-.447-.833L19 2.253zm0 13l-.553.833A1 1 0 0 0 20 15.253h-1zm-9.553-.833a1 1 0 1 0 1.107 1.666L9.447 14.42zM9 2.253v13h2v-13H9zm1.553-.833C9.203.523 7.42 0 5.5 0v2c1.572 0 2.961.431 3.947 1.086l1.107-1.666zM5.5 0C3.58 0 1.797.523.447 1.42l1.107 1.666C2.539 2.431 3.928 2 5.5 2V0zM0 2.253v13h2v-13H0zm1.553 13.833C2.539 15.431 3.928 15 5.5 15v-2c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM5.5 15c1.572 0 2.961.431 3.947 1.086l1.107-1.666C9.203 13.523 7.42 13 5.5 13v2zm5.053-11.914C11.539 2.431 12.928 2 14.5 2V0c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM14.5 2c1.573 0 2.961.431 3.947 1.086l1.107-1.666C18.203.523 16.421 0 14.5 0v2zm3.5.253v13h2v-13h-2zm1.553 12.167C18.203 13.523 16.421 13 14.5 13v2c1.573 0 2.961.431 3.947 1.086l1.107-1.666zM14.5 13c-1.92 0-3.703.523-5.053 1.42l1.107 1.666C11.539 15.431 12.928 15 14.5 15v-2z"},null,-1),vu=[_u];function bu(e,t){return Ce(),Se("svg",gu,vu)}var yu=lt(mu,[["render",bu]]);const wu={},Eu={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":"true",role:"img",class:"iconify iconify--mdi",width:"24",height:"24",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24"},xu=B("path",{d:"M20 18v-4h-3v1h-2v-1H9v1H7v-1H4v4h16M6.33 8l-1.74 4H7v-1h2v1h6v-1h2v1h2.41l-1.74-4H6.33M9 5v1h6V5H9m12.84 7.61c.1.22.16.48.16.8V18c0 .53-.21 1-.6 1.41c-.4.4-.85.59-1.4.59H4c-.55 0-1-.19-1.4-.59C2.21 19 2 18.53 2 18v-4.59c0-.32.06-.58.16-.8L4.5 7.22C4.84 6.41 5.45 6 6.33 6H7V5c0-.55.18-1 .57-1.41C7.96 3.2 8.44 3 9 3h6c.56 0 1.04.2 1.43.59c.39.41.57.86.57 1.41v1h.67c.88 0 1.49.41 1.83 1.22l2.34 5.39z",fill:"currentColor"},null,-1),Cu=[xu];function Ru(e,t){return Ce(),Se("svg",Eu,Cu)}var Pu=lt(wu,[["render",Ru]]);const Au={},Mu={xmlns:"http://www.w3.org/2000/svg",width:"18",height:"20",fill:"currentColor"},Ou=B("path",{d:"M11.447 8.894a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm0 1.789a1 1 0 1 0 .894-1.789l-.894 1.789zM7.447 7.106a1 1 0 1 0-.894 1.789l.894-1.789zM10 9a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0H8zm9.447-5.606a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm2 .789a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zM18 5a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0h-2zm-5.447-4.606a1 1 0 1 0 .894-1.789l-.894 1.789zM9 1l.447-.894a1 1 0 0 0-.894 0L9 1zm-2.447.106a1 1 0 1 0 .894 1.789l-.894-1.789zm-6 3a1 1 0 1 0 .894 1.789L.553 4.106zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zm-2-.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 2.789a1 1 0 1 0 .894-1.789l-.894 1.789zM2 5a1 1 0 1 0-2 0h2zM0 7.5a1 1 0 1 0 2 0H0zm8.553 12.394a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 1a1 1 0 1 0 .894 1.789l-.894-1.789zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zM8 19a1 1 0 1 0 2 0H8zm2-2.5a1 1 0 1 0-2 0h2zm-7.447.394a1 1 0 1 0 .894-1.789l-.894 1.789zM1 15H0a1 1 0 0 0 .553.894L1 15zm1-2.5a1 1 0 1 0-2 0h2zm12.553 2.606a1 1 0 1 0 .894 1.789l-.894-1.789zM17 15l.447.894A1 1 0 0 0 18 15h-1zm1-2.5a1 1 0 1 0-2 0h2zm-7.447-5.394l-2 1 .894 1.789 2-1-.894-1.789zm-1.106 1l-2-1-.894 1.789 2 1 .894-1.789zM8 9v2.5h2V9H8zm8.553-4.894l-2 1 .894 1.789 2-1-.894-1.789zm.894 0l-2-1-.894 1.789 2 1 .894-1.789zM16 5v2.5h2V5h-2zm-4.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zm-2.894-1l-2 1 .894 1.789 2-1L8.553.106zM1.447 5.894l2-1-.894-1.789-2 1 .894 1.789zm-.894 0l2 1 .894-1.789-2-1-.894 1.789zM0 5v2.5h2V5H0zm9.447 13.106l-2-1-.894 1.789 2 1 .894-1.789zm0 1.789l2-1-.894-1.789-2 1 .894 1.789zM10 19v-2.5H8V19h2zm-6.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zM2 15v-2.5H0V15h2zm13.447 1.894l2-1-.894-1.789-2 1 .894 1.789zM18 15v-2.5h-2V15h2z"},null,-1),zu=[Ou];function Iu(e,t){return Ce(),Se("svg",Mu,zu)}var Tu=lt(Au,[["render",Iu]]);const Su={},$u={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"currentColor"},Hu=B("path",{d:"M15 4a1 1 0 1 0 0 2V4zm0 11v-1a1 1 0 0 0-1 1h1zm0 4l-.707.707A1 1 0 0 0 16 19h-1zm-4-4l.707-.707A1 1 0 0 0 11 14v1zm-4.707-1.293a1 1 0 0 0-1.414 1.414l1.414-1.414zm-.707.707l-.707-.707.707.707zM9 11v-1a1 1 0 0 0-.707.293L9 11zm-4 0h1a1 1 0 0 0-1-1v1zm0 4H4a1 1 0 0 0 1.707.707L5 15zm10-9h2V4h-2v2zm2 0a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2zm1 1v6h2V7h-2zm0 6a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2zm-1 1h-2v2h2v-2zm-3 1v4h2v-4h-2zm1.707 3.293l-4-4-1.414 1.414 4 4 1.414-1.414zM11 14H7v2h4v-2zm-4 0c-.276 0-.525-.111-.707-.293l-1.414 1.414C5.42 15.663 6.172 16 7 16v-2zm-.707 1.121l3.414-3.414-1.414-1.414-3.414 3.414 1.414 1.414zM9 12h4v-2H9v2zm4 0a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2zm3-3V3h-2v6h2zm0-6a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2zm-3-3H3v2h10V0zM3 0a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V0zM0 3v6h2V3H0zm0 6a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H0zm3 3h2v-2H3v2zm1-1v4h2v-4H4zm1.707 4.707l.586-.586-1.414-1.414-.586.586 1.414 1.414z"},null,-1),Fu=[Hu];function Nu(e,t){return Ce(),Se("svg",$u,Fu)}var ju=lt(Su,[["render",Nu]]);const Lu={},ku={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"currentColor"},Bu=B("path",{d:"M10 3.22l-.61-.6a5.5 5.5 0 0 0-7.666.105 5.5 5.5 0 0 0-.114 7.665L10 18.78l8.39-8.4a5.5 5.5 0 0 0-.114-7.665 5.5 5.5 0 0 0-7.666-.105l-.61.61z"},null,-1),Uu=[Bu];function Du(e,t){return Ce(),Se("svg",ku,Uu)}var Ku=lt(Lu,[["render",Du]]);const Vu=U("Documentation"),Wu=U(" Vue\u2019s "),qu=B("a",{target:"_blank",href:"https://vuejs.org/"},"official documentation",-1),Yu=U(" provides you with all information you need to get started. "),Qu=U("Tooling"),Ju=U(" This project is served and bundled with "),Xu=B("a",{href:"https://vitejs.dev/guide/features.html",target:"_blank"},"Vite",-1),Zu=U(". The recommended IDE setup is "),Gu=B("a",{href:"https://code.visualstudio.com/",target:"_blank"},"VSCode",-1),ef=U(" + "),tf=B("a",{href:"https://github.com/johnsoncodehk/volar",target:"_blank"},"Volar",-1),nf=U(". If you need to test your components and web pages, check out "),sf=B("a",{href:"https://www.cypress.io/",target:"_blank"},"Cypress",-1),rf=U(" and "),of=B("a",{href:"https://docs.cypress.io/guides/component-testing/introduction",target:"_blank"},"Cypress Component Testing",-1),lf=U(". "),cf=B("br",null,null,-1),uf=U(" More instructions are available in "),ff=B("code",null,"README.md",-1),af=U(". "),df=U("Ecosystem"),hf=U(" Get official tools and libraries for your project: "),pf=B("a",{target:"_blank",href:"https://pinia.vuejs.org/"},"Pinia",-1),mf=U(", "),gf=B("a",{target:"_blank",href:"https://router.vuejs.org/"},"Vue Router",-1),_f=U(", "),vf=B("a",{target:"_blank",href:"https://test-utils.vuejs.org/"},"Vue Test Utils",-1),bf=U(", and "),yf=B("a",{target:"_blank",href:"https://github.com/vuejs/devtools"},"Vue Dev Tools",-1),wf=U(". If you need more resources, we suggest paying "),Ef=B("a",{target:"_blank",href:"https://github.com/vuejs/awesome-vue"},"Awesome Vue",-1),xf=U(" a visit. "),Cf=U("Community"),Rf=U(" Got stuck? Ask your question on "),Pf=B("a",{target:"_blank",href:"https://chat.vuejs.org"},"Vue Land",-1),Af=U(", our official Discord server, or "),Mf=B("a",{target:"_blank",href:"https://stackoverflow.com/questions/tagged/vue.js"},"StackOverflow",-1),Of=U(". You should also subscribe to "),zf=B("a",{target:"_blank",href:"https://news.vuejs.org"},"our mailing list",-1),If=U(" and follow the official "),Tf=B("a",{target:"_blank",href:"https://twitter.com/vuejs"},"@vuejs",-1),Sf=U(" twitter account for latest news in the Vue world. "),$f=U("Support Vue"),Hf=U(" As an independent project, Vue relies on community backing for its sustainability. You can help us by "),Ff=B("a",{target:"_blank",href:"https://vuejs.org/sponsor/"},"becoming a sponsor",-1),Nf=U(". "),jf={setup(e){return(t,n)=>(Ce(),Se(_e,null,[q($t,null,{icon:oe(()=>[q(yu)]),heading:oe(()=>[Vu]),default:oe(()=>[Wu,qu,Yu]),_:1}),q($t,null,{icon:oe(()=>[q(Pu)]),heading:oe(()=>[Qu]),default:oe(()=>[Ju,Xu,Zu,Gu,ef,tf,nf,sf,rf,of,lf,cf,uf,ff,af]),_:1}),q($t,null,{icon:oe(()=>[q(Tu)]),heading:oe(()=>[df]),default:oe(()=>[hf,pf,mf,gf,_f,vf,bf,yf,wf,Ef,xf]),_:1}),q($t,null,{icon:oe(()=>[q(ju)]),heading:oe(()=>[Cf]),default:oe(()=>[Rf,Pf,Af,Mf,Of,zf,If,Tf,Sf]),_:1}),q($t,null,{icon:oe(()=>[q(Ku)]),heading:oe(()=>[$f]),default:oe(()=>[Hf,Ff,Nf]),_:1})],64))}},Lf={setup(e){return(t,n)=>(Ce(),Se("main",null,[q(jf)]))}},kf=Qc({history:hc("/"),routes:[{path:"/",name:"home",component:Lf},{path:"/about",name:"about",component:()=>fu(()=>import("./AboutView.2868233e.js"),["static/AboutView.2868233e.js","static/AboutView.ab071ea6.css"])}]}),Ro=Wl(lu);Ro.use(kf);Ro.mount("#app");export{lt as _,B as a,Se as c,Ce as o}; diff --git a/templates/static/logo.da9b9095.svg b/templates/static/logo.da9b9095.svg new file mode 100644 index 0000000..bc826fe --- /dev/null +++ b/templates/static/logo.da9b9095.svg @@ -0,0 +1 @@ + \ No newline at end of file